.change-photo,
.form-check-input-custom {
    vertical-align: top;
    cursor: pointer;
}
.navbar-dashboard,
body {
    background: var(--bg-main);
}
.parent-line:before,
.sidebar-icon::after,
.sidebar-icon::before {
    position: absolute;
    left: 0;
    z-index: 1;
}
@font-face {
    font-family: Kursk105;
    src:
        url(../fonts/Kursk105-Light.woff2) format("woff2"),
        url(../fonts/Kursk105-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
:root {
    --bg-main: #cde1ff;
}
body {
    overflow: auto;
}
svg {
    width: 16px;
    height: 16px;
}
.navbar-dashboard {
    height: 86px;
    position: sticky;
    top: 0;
    z-index: 1030;
    padding-left: 14px;
    padding-right: 20px;
}
.navbar-dashboard .admin-logo {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 3px;
}
.navbar-dashboard .admin-logo .logo-text {
    font-family: Kursk105;
    text-transform: uppercase;
    color: #fff;
}
.navbar-dashboard .admin-logo .logo-img {
    max-width: 48px;
}
.navbar-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo-section {
    order: 1;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}
.search-container {
    order: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user-section {
    order: 3;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-top-right-radius: 0;
    padding: 0.75rem;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
}
.content,
.content-center,
.content-left,
.content-right,
.editor-loading-container,
.password_field,
.search-container,
.submenu-item,
.submenu-link,
input[data-auto="true"] {
    position: relative;
}
.content {
    background: #fff0;
    display: flex;
    height: calc(100vh - 88px);
    width: 100%;
    overflow: hidden;
    margin-left: 0 !important;
    padding: 0 0 0 12px !important;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.content-left {
    background: #fff;
    width: 56px;
    transition: width;
    overflow: visible;
    padding: 0;
}
.content-left:hover {
    width: 280px;
    transition: width 0.3s;
}
.content-left:hover .menu-item-link .sidebar-item {
    gap: 12px;
    justify-content: start;
}
.content-left:hover .menu-item-link .sidebar-text,
.content-left:hover .menu-item.has-submenu .arrow-icon,
.content-left:hover .sidebar-text {
    opacity: 1;
    visibility: visible;
    width: auto;
}
.content-left:hover .arrow-icon {
    opacity: 1;
    visibility: visible;
}
.content-right {
    flex: 1;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: var(--bg-main);
}
.content-right::-webkit-scrollbar {
    width: 3px;
}
.content-right::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 2px;
}
.content-right::-webkit-scrollbar-track {
    margin-top: 8px;
    background-color: var(--bg-main);
}
.content-right footer {
    margin-top: auto;
}
.content-center {
    padding: 1.5rem;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 6px;
}
.sidebar-menu {
    padding: 0.5rem;
}
.sidebar-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
}
.menu-item,
.menu-item-link {
    width: 100%;
    position: relative;
}
.sidebar-icon i {
    font-size: 20px;
    color: var(--text-form);
    transition: color 0.3s;
}
.sidebar-icon svg {
    width: 20px;
    height: 20px;
}
ul.menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.menu-item {
    border-radius: 4px;
}
ul.menu .menu-item:not(:last-child) {
    margin-bottom: 2px;
}
.form-switch-customize .form-check-input,
ul.menu ul.menu {
    margin-top: 0;
}
.menu-item-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    border-radius: 10px;
    gap: 0;
    transition: 0.3s;
    white-space: nowrap;
}
.menu-item-link .sidebar-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex: 1;
    height: auto;
    min-height: 40px;
}
.menu-item-link .sidebar-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-form);
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
    transition: 0.3s;
    white-space: nowrap;
}
.menu-item-link .count {
    color: var(--text-form);
    font-weight: 650;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #ddd;
    padding: 1px 10px;
    font-size: 12px;
}
.menu-item-link:hover,
.menu-item.active > .menu-item-link {
    background: linear-gradient(135deg, #3b82f6 0, #2563eb 100%);
}
.menu-item-link:hover .sidebar-icon,
.menu-item.active > .menu-item-link .sidebar-icon {
    background: rgb(255 255 255 / 0.2);
}
.menu-item-link.active .sidebar-icon i,
.menu-item-link.active .sidebar-text,
.menu-item-link:hover .sidebar-icon i,
.menu-item-link:hover .sidebar-text,
.menu-item.active > .menu-item-link .sidebar-icon i,
.menu-item.active > .menu-item-link .sidebar-text {
    color: var(--text-blue-title) !important;
}
.breadcrumb-item + .breadcrumb-item::before,
.menu-item-link.active .arrow-icon i,
.menu-item-link:hover .arrow-icon i,
.search-button-text {
    color: var(--text-blue-title);
}
.menu-item:not(:last-child) {
    margin-bottom: 4px;
}
.multi-level {
    margin-bottom: 10px;
}
.multi-level .sidebar-icon svg,
.photoUpload-zone .photoUpload-file input {
    display: none;
}
.multi-level .menu-item:not(.active) .sidebar-text {
    font-weight: 450;
}
.sidebar-icon::before {
    content: url("data:image/svg+xml,%3Csvg%20width%3D'21'%20height%3D'28'%20viewBox%3D'0%200%2021%2028'%20fill%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M19%2014.25H19.75V15.75H19V14.25ZM10.077%2013.362L10.7452%2013.0215V13.0215L10.077%2013.362ZM11.388%2014.673L11.7285%2014.0048H11.7285L11.388%2014.673ZM10.5%200V10.2H9V0H10.5ZM14.55%2014.25H19V15.75H14.55V14.25ZM10.5%2010.2C10.5%2011.0525%2010.5006%2011.6467%2010.5384%2012.1093C10.5755%2012.5632%2010.6446%2012.824%2010.7452%2013.0215L9.40873%2013.7025C9.18239%2013.2582%209.08803%2012.7781%209.04336%2012.2315C8.99942%2011.6936%209%2011.0277%209%2010.2H10.5ZM14.55%2015.75C13.7223%2015.75%2013.0564%2015.7506%2012.5185%2015.7066C11.9719%2015.662%2011.4918%2015.5676%2011.0475%2015.3413L11.7285%2014.0048C11.926%2014.1054%2012.1868%2014.1745%2012.6407%2014.2116C13.1033%2014.2494%2013.6975%2014.25%2014.55%2014.25V15.75ZM10.7452%2013.0215C10.9609%2013.4448%2011.3052%2013.7891%2011.7285%2014.0048L11.0475%2015.3413C10.3419%2014.9817%209.76825%2014.4081%209.40873%2013.7025L10.7452%2013.0215Z'%20fill%3D'%23B5B5B5'/%3E%3Cpath%20d%3D'M17%2012L20%2015L17%2018'%20stroke%3D'%23B5B5B5'%20stroke-width%3D'1.5'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'/%3E%3C/svg%3E%0A");
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.sidebar-icon::after {
    content: url(data:image/svg+xml,%3Csvg%20width%3D%2221%22%20height%3D%2228%22%20viewBox%3D%220%200%2021%2028%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Crect%20x%3D%229%22%20width%3D%221.5%22%20height%3D%2228%22%20fill%3D%22%23B5B5B5%22%2F%3E%3C%2Fsvg%3E);
    top: -4px;
    width: 100%;
    height: 28px;
    opacity: 0;
}
.content-left:hover .submenu-link.active::before,
.multi-level .menu-item.active .sidebar-icon::before,
.multi-level .menu-item.line .sidebar-icon::after,
.multi-level .menu-item:hover .sidebar-icon::before,
.product-info:hover .product-view {
    opacity: 1;
}
.parent-line:before {
    content: url(data:image/svg+xml,%3Csvg%20width%3D%2221%22%20height%3D%2228%22%20viewBox%3D%220%200%2021%2028%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M9%2024.75C9%2024.3358%209.33579%2024%209.75%2024V24C10.1642%2024%2010.5%2024.3358%2010.5%2024.75V28H9V24.75Z%22%20fill%3D%22%23B5B5B5%22%2F%3E%0A%3C%2Fsvg%3E);
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}
.menu-item {
    margin-bottom: 0 !important;
}
.search-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 640px;
    height: 48px;
    border: none;
    border-radius: 30px;
    background: #fff;
    padding: 12px;
    transition: 0.3s;
}
.search-button:hover {
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.15);
}
.search-button-label {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 8px;
    gap: 10px;
}
.search-button-label svg {
    width: 16px;
    height: 16px;
    fill: #b5b5b5;
}
.search-button-text {
    font-size: 13px;
    font-weight: 400;
    padding-left: 10px;
    position: relative;
}
.search-button-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5px;
    height: 16px;
    background-color: var(--text-auth);
    opacity: 0.5;
}
.config-card:hover,
.control-item:hover {
    transform: translateY(-2px);
}
.search-button-shortcut {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 3px;
}
.search-button-shortcut kbd {
    background: var(--bg-main);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-blue-main);
    height: 20px;
    line-height: 1;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#btn-add-more-option {
    display: flex;
    justify-items: start;
    align-items: center;
    gap: 3px;
    background: #fff0;
    cursor: pointer;
    border: none;
    font-size: 13px;
    padding: 10px;
    border-top: 1px solid #e5e7eb;
    width: 100%;
}
.option-item {
    border-top: 1px solid #e5e7eb;
    padding: 10px;
}
.btn-remove-option,
.btn-remove-option-value,
.drag-handle {
    border: none;
    background: #fff0;
    display: flex;
    cursor: pointer;
}
.option-item:first-child {
    border-top: none;
}
.wrap-option-values {
    margin-top: 10px;
}
.btn-remove-option-value,
.drag-handle {
    height: 34px;
    width: auto;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
}
.option_name_label,
.option_value_label {
    margin-left: 28px;
    font-size: 13px;
    font-weight: 500;
}
.btn-remove-option-value {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
}
.btn-remove-option {
    width: 34px;
    height: auto;
    justify-content: center;
    align-items: center;
}
.btn-add-value {
    margin-left: 30px;
    font-size: 12px;
}
#bulk-apply {
    margin-top: 28px;
    width: 100%;
}
.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}
.table-responsive::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.table-responsive::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.table-responsive::-webkit-scrollbar-track {
    margin-top: 8px;
}
.table-responsive::-webkit-scrollbar:horizontal {
    margin-top: 10px;
}
.form-check-custom {
    display: block;
    min-height: 1.5rem;
}
.form-check-input-custom {
    margin-top: 0.25em;
    border: 1px solid #cbced4;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border-radius: 4px;
}
.form-check-input-custom:checked {
    background-color: var(--text-blue-title);
    border-color: transparent !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.change-photo.text-center,
.product-info,
.search-dialog.show {
    display: block;
}
.product-info .product-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.product-info .product-image img {
    max-width: 100%;
}
.product-info .product-name a {
    text-decoration: none;
    font-weight: 500;
}
.product-info .product-name a:hover {
    text-decoration: underline;
}
.product-info .product-view {
    transition: 0.3s;
    opacity: 0;
}
#btn-add-option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.fw-600 {
    font-weight: 600;
}
.fs-13 {
    font-size: 13px !important;
}
.basic-addon-group i,
.stat-label,
.submenu-link {
    font-size: 13px;
}
.btn-check:focus + .btn,
.btn:focus,
.form-control:focus,
.not-focus:focus {
    outline: 0;
    box-shadow: none;
}
.menu-item.has-submenu .submenu {
    display: none;
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-left: 52px;
    opacity: 0;
    max-height: 0;
    transition: 0.3s;
}
.content-left:hover .menu-item.has-submenu.open .submenu {
    display: block;
    opacity: 1;
    max-height: fit-content;
    margin-left: 42px;
}
.menu-item.has-submenu .dropdown-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-item.has-submenu .arrow-icon {
    transition:
        transform 0.3s,
        opacity 0.3s,
        visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-item.has-submenu.open .arrow-icon {
    transform: rotate(90deg);
}
.menu-item .arrow-icon i {
    font-size: 12px;
    color: #9ca3af;
}
.submenu-item {
    margin: 4px 0;
    transition: 0.3s;
}
.submenu-item.active,
.submenu-item:hover {
    background-color: var(--bg-main);
    border-radius: 4px;
}
.submenu-link {
    display: block;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    color: #6b7280;
    transition: 0.3s;
}
.submenu-link:hover {
    background: rgb(59 130 246 / 0.08);
    color: #3b82f6;
}
.submenu-link.active {
    background: linear-gradient(135deg, #3b82f6 0, #2563eb 100%);
    color: #fff !important;
    font-weight: 600;
}
.submenu-item.active .submenu-link {
    font-weight: 700;
    position: relative;
}
.submenu-link.active::before {
    content: ">";
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 700;
    color: #3b82f6;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
    pointer-events: none;
}
.mw-100 {
    max-width: 100% !important;
}
.editor-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}
.change-file,
.change-file p,
.change-file strong,
.change-photo {
    display: inline-block;
}
.editor-loading .spinner {
    width: 40px;
    height: 40px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: 2s linear infinite spin;
}
.form-check-input,
.form-check-input-custom {
    width: 18px;
    height: 18px;
}
.avatar {
    width: 36px;
    height: 36px;
}
.sort-input {
    width: 50px;
    padding: 0.25rem;
    text-align: center;
    line-height: normal;
    font-size: 0.9rem;
    height: calc(2.5rem + 2px);
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    box-shadow: none;
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
.sort-input::-webkit-inner-spin-button,
.sort-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.sort-input-2 {
    width: 60px;
}
.form-check-input[type="checkbox"]:checked {
    background-color: #0046b5 !important;
    border-color: #0046b5 !important;
}
.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0.25);
}
.slug-updated {
    border-color: #198754 !important;
    box-shadow: 0 0 0 0.25rem rgb(25 135 84 / 0.25) !important;
    transition: 0.3s;
}
.slug-auto-generated {
    border-color: #0dcaf0 !important;
    box-shadow: 0 0 0 0.25rem rgb(13 202 240 / 0.25) !important;
    transition: 0.3s;
}
input[data-auto="true"]::after {
    content: "🔗";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0.5;
}
.form-switch .form-check-label {
    padding-left: 0;
    margin-left: 0.5rem;
}
.form-switch .form-check-input:checked + .form-check-label {
    color: #198754;
    font-weight: 500;
}
.form-switch .form-check-input {
    transition: 0.2s ease-in-out;
}
.form-switch:hover .form-check-input {
    transform: scale(1.05);
}
.bg-auth {
    background: #f5f7fb !important;
}
.img-upload {
    max-width: 250px;
}
.img-preview {
    max-width: 70px;
    max-height: 55px;
}
.photoUpload-zone .photoUpload-detail {
    text-align: center;
    display: block;
    margin-bottom: 1.5rem;
}
.photoUpload-zone .photoUpload-detail img {
    max-width: 100%;
    max-height: 250px;
}
.photoUpload-zone .photoUpload-file {
    width: 100%;
    cursor: pointer;
    min-width: 300px;
    background-color: #fff;
    outline: 1px dashed var(--color-border);
    outline-offset: 0;
    padding: 2rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    font-weight: 400 !important;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition:
        outline-offset 0.15s ease-in-out,
        background-color 0.15s linear;
}
.photoUpload-zone .photoUpload-file.drag-over {
    outline-offset: -10px;
    background-color: #fff9f9;
}
.config-card:hover,
.photoUpload-zone .photoUpload-file i:hover {
    opacity: 0.9;
}
.photoUpload-zone .photoUpload-file i {
    color: #6c7d8f;
    font-size: 55px;
    margin-bottom: 0.75rem;
}
.photoUpload-zone .photoUpload-file p {
    margin: 0;
    color: #767978;
    font-size: 16px;
}
.change-photo p,
.photoUpload-zone .photoUpload-file .photoUpload-drop {
    margin-bottom: 0.5rem;
}
.photoUpload-zone .photoUpload-file .photoUpload-or {
    font-size: 14px;
    margin-bottom: 0.75rem;
}
.photoUpload-zone .photoUpload-file .photoUpload-choose {
    color: #fff;
}
.photoUpload-zone .photoUpload-dimension {
    font-weight: 400;
    font-size: 13px;
    color: var(--text-blue-title);
    text-align: center;
}
.change-file,
.change-file p,
.change-file strong {
    vertical-align: middle;
}
.change-photo div.rounded strong {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.change-photo div.rounded strong b {
    margin: 0.25rem 0;
    text-align: center;
}
.change-photo div.rounded strong b.text-split {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.photoUpload-file {
    width: 400px;
    height: 250px;
}
.photoUpload-file .icon {
    width: 55px;
    height: 55px;
    position: relative;
    margin-bottom: 16px;
}
.photoUpload-file .icon svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    fill: #6c7d8f;
}
.change-file {
    cursor: pointer;
}
.change-file p {
    margin-bottom: 0;
}
.change-file strong div {
    display: inline-block;
    vertical-align: middle;
    max-width: 200px;
}
.change-file strong div b.text-split {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}
.bg-gradient-success {
    background: #1f2937;
    font-size: 14px !important;
    font-weight: 400 !important;
}
.form-switch-customize {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    padding-left: 0 !important;
}
.config-grid,
.control-grid {
    margin-bottom: 40px;
    gap: 20px;
}
.form-switch-customize .form-check-label {
    margin-bottom: 0;
    white-space: nowrap;
    margin-left: 0;
}
.basic-addon-group {
    width: 38px;
    display: flex;
    justify-content: center;
}
.sidebar-menu .nav-link.active,
.sidebar-menu .nav-link.bg-gradient-primary {
    background: var(--bg-main) !important;
    color: var(--text-blue-title) !important;
    border-radius: 4px;
}
.sidebar-menu .nav-link {
    transition:
        background 0.2s,
        color 0.2s;
    border-radius: 4px;
}
.sidebar-menu .nav-link:hover:not(.active) {
    background: var(--bg-main);
    color: var(--text-blue-title) !important;
}
.sidebar-menu .nav-link i {
    width: 22px;
    text-align: center;
}
.sidebar-menu hr {
    border-top: 1px solid #495057;
    margin: 0.7rem 0;
}
.sidebar-menu .collapse .nav-link {
    border-radius: 0.25rem;
}
.sidebar-menu .border-left {
    border-color: #0d6efd !important;
}
#scroll-thumb::-webkit-scrollbar {
    display: none;
    width: 3px;
    background-color: var(--bg-main);
}
#scroll-thumb::-webkit-scrollbar-thumb {
    background-color: #3b83f6db;
    border-radius: 3px;
}
.gallery {
    --spacing: 1.25rem;
    --border-radius: 0.5rem;
}
.gallery-container {
    display: flex;
    gap: var(--spacing);
    flex-wrap: wrap;
}
.gallery-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.gallery-item {
    position: relative;
    width: 150px;
}
.gallery-image {
    width: 100%;
    height: 155px;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.gallery-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    line-height: 1;
    padding: 5px;
    background: #fff;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.gallery-remove:hover {
    background: #b91c1c;
    color: #fff;
}
.gallery-info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}
.upload-button {
    width: 150px;
    height: 150px;
    border: 2px dashed #d1d5db;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
}
.config-card,
.control-item {
    transition: 0.3s;
    cursor: pointer;
}
.upload-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #6b7280;
}
.gallery-preview {
    width: 100%;
    height: 150px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: var(--border-radius);
}
.bulk-delete-modal i,
.delete-modal i {
    font-size: 48px;
    color: #e11d48;
}
.group-button-submit {
    z-index: 100;
}
.dashboard-container {
    padding: 20px 0;
    width: 100%;
}
.config-section h2,
.control-panel h2,
.stats-section h2 {
    color: var(--text-blue-title);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}
.control-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.control-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
}
.control-item:hover {
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
}
.btn-check:active + .btn,
.btn-check:active + .btn:focus,
.btn-check:checked + .btn,
.btn-check:checked + .btn:focus,
.btn.active,
.btn.active:focus,
.btn:active,
.btn:active:focus,
.form-control,
.input-group-text {
    box-shadow: none;
}
.control-icon {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-right: 15px;
}
.config-card,
.stat-card {
    padding: 20px;
    align-items: center;
}
.control-icon i {
    font-size: 1.5rem;
    color: #6c757d;
}
.control-content h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}
.control-content p {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
}
.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.config-card {
    border-radius: 8px;
    color: #fff;
    display: flex;
}
.config-card.mobile,
.config-card.popup,
.stat-item .stat-icon.desktop {
    background: #6c757d;
}
.config-card.network,
.stat-item .stat-icon.mobile {
    background: #28a745;
}
.config-card-icon i {
    font-size: 2rem;
    margin-right: 15px;
}
.config-card-content h3 {
    margin: 0;
    font-size: 1.1rem;
}
.config-card-content p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.8;
}
.stats-header h2 {
    font-weight: 600;
    margin-bottom: 0;
}
.chart-header,
.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.stats-date {
    color: var(--text-blue-title);
    font-size: 13px;
    font-weight: 700;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    display: flex;
}
.chart-controls,
.stat-item {
    align-items: center;
}
.stat-icon {
    padding: 15px;
    border-radius: 8px;
    margin-right: 15px;
}
.stat-label,
.stat-number {
    margin: 0;
    color: var(--text-gray);
}
.stat-card:first-child .stat-icon,
.stat-card:nth-child(3) .stat-icon {
    background: #f8f9fa;
}
.stat-card:nth-child(2) .stat-icon {
    background: #cff4fc;
}
.stat-card:nth-child(4) .stat-icon {
    background: #d1ecf1;
}
.stat-icon i {
    font-size: 1.25rem;
    color: #6c757d;
}
.chart-controls button,
.chart-controls select {
    padding: 12px 24px;
    font-size: 13px;
    vertical-align: middle;
}
.stat-card:nth-child(2) .stat-icon i {
    color: #0dcaf0;
}
.stat-card:nth-child(4) .stat-icon i {
    color: #28a745;
}
.stat-number {
    font-size: 14px;
    font-weight: 500;
}
.chart-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}
.chart-controls {
    display: flex;
    gap: 10px;
}
.chart-controls select {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-weight: 400;
    color: var(--text-form);
}
.chart-controls button {
    position: relative;
    background: var(--bg-button);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
}
.chart-controls button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 24px;
    height: 100%;
    background: rgb(252 252 252 / 0.3);
    transition: left 0.5s;
    z-index: 1;
    transform: skewX(-20deg);
}
.chart-controls button:hover {
    background: var(--bg-button);
}
.chart-controls button:hover::before {
    left: 110%;
}
.chart-canvas-container {
    position: relative;
    height: 300px;
}
.chart-canvas {
    width: 100%;
    height: 100%;
}
.additional-stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.browser-stats,
.device-stats,
.ip-stats {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}
.ip-item,
.stat-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}
.browser-stats h2,
.device-stats h2,
.ip-stats h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.date-today {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 400;
}
.ip-address,
.stat-name {
    font-size: 0.875rem;
    color: #333;
}
.ip-count,
.stat-value {
    font-size: 0.875rem;
    font-weight: 700;
}
.ip-list,
.stat-list {
    max-height: 400px;
    overflow-y: auto;
}
.ip-item:last-child,
.stat-item:last-child {
    border-bottom: none;
}
.stat-item .stat-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}
.stat-item .stat-icon.chrome {
    background: #4285f4;
}
.stat-item .stat-icon.firefox {
    background: #ff9500;
}
.stat-item .stat-icon.edge {
    background: #0078d4;
}
.stat-item .stat-icon.safari {
    background: #00d4ff;
}
.stat-item .stat-icon i {
    color: #fff;
    font-size: 0.75rem;
}
.stat-item .stat-icon.tablet {
    background: #ffc107;
}
.stat-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.progress-bar-container {
    width: 80px;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin: 0 10px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background: #007bff;
    border-radius: 2px;
    transition: width 1s;
}
.stat-value {
    color: #333;
    min-width: 50px;
    text-align: right;
}
.ip-item {
    justify-content: space-between;
    align-items: center;
}
.ip-address {
    font-family: "Courier New", monospace;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.nav-link,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-poppin);
}
.ip-count {
    color: #007bff;
}
@media (max-width: 768px) {
    .stats-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .chart-controls {
        width: 100%;
        justify-content: flex-start;
    }
    .additional-stats-section {
        grid-template-columns: 1fr;
    }
}
.copy-record-btn {
    border: none;
    background: #fff0;
    border-radius: 3px;
}
.navbar .navbar-nav .dropdown .dropdown-menu {
    right: 0;
    left: auto;
}
.border-right-radius {
    border-top-right-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}
.permission-group {
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
}
.permission-header {
    background: linear-gradient(90deg, #f8f9fa 0, #e9ecef 100%);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}
.permission-header h5 {
    color: #495057;
    font-weight: 600;
}
.type-badge {
    display: inline-block;
    background: #6c757d;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.5rem;
}
.permission-body {
    padding: 1.5rem;
}
.permission-sub-title {
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}
.select-all,
.select-all:checked {
    border-color: #6c757d !important;
}
.permission-item {
    margin-bottom: 0.75rem;
}
.permission-item .form-check {
    padding: 0 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.15s ease-in-out;
}
.permission-item .form-check:hover {
    background-color: #f8f9fa;
}
.permission-item .form-check-input:checked + .form-check-label {
    color: #0d6efd;
    font-weight: 500;
}
.permission-item .form-check .form-check-input {
    margin-left: 0 !important;
    margin-top: 0 !important;
}
.permission-header .form-check-label {
    color: #6c757d;
    font-size: 0.875rem;
}
.select-all:checked {
    background-color: #6c757d !important;
}
.text-red {
    color: red !important;
}
.breadcrumb-item {
    font-weight: 500;
    font-size: 1rem;
}
.nav-link,
.table td {
    font-size: 13px;
    font-weight: 400;
}
.input-group-text {
    border-radius: 0;
}
input {
    outline: 0;
    border: none;
}
.table > :not(:first-child) {
    border-top: 0;
}
.table > thead {
    background-color: #fafafa;
}
.table > thead th {
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 500;
    text-transform: initial;
    color: var(--text-gray);
}
.table td {
    color: #4b4b4b;
}
.table strong {
    color: var(--text-blue-main);
    font-weight: 400;
}
.content-center-custom {
    background-color: #fff0;
    padding: 0;
    margin-top: 1.5rem;
}
.form-control {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--text-form);
}
.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--border-blue);
    background-color: #fff0;
    color: var(--text-blue-title) !important;
}
textarea,
textarea.form-control {
    height: auto !important;
}
textarea.cke_source {
    height: 100% !important;
}
.toggle_password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #000;
    font-size: 14px;
    z-index: 10;
    transition: color 0.3s;
}
#searchModal {
    padding: 0 !important;
}
.search-dialog {
    width: 100%;
    max-width: 640px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 0.1);
    display: none;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}
html[style*="--welcome-hidden"] .auth-lang-toggle i {
    transform: translateY(0);
}
.pagination {
    gap: 6px;
}
.page-link {
    padding: 6px 16px !important;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 400;
}
.page-item.active .page-link {
    box-sizing: border-box;
    display: inline-block;
    background: var(--text-blue-title);
}
.page-link:hover {
    background-color: var(--color-border);
}
.text-muted {
    color: var(--text-placeholder) !important;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-poppin);
}
.form-control:focus {
    border: 1px solid var(--text-blue-title);
}
.cke_bottom,
.cke_chrome,
.cke_inner {
    border: 1px solid var(--color-border);
    border-radius: 6px;
}
.cke_top {
    border-radius: 6px;
}
#searchResults {
    padding: 0;
}
.control-panel {
    width: 100%;
}
.form-check-label {
    margin: 0;
    font-weight: 400;
}
.admin_name {
    max-width: 99px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.input-group-search {
    flex-wrap: nowrap !important;
}
.input-group-search input {
    width: 100% !important;
}
.auth-language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}
.auth-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: 0.3s;
}
.auth-lang-toggle:focus,
.auth-lang-toggle:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
}
.auth-language-switcher .flag-icon {
    width: 25px;
    height: 15px;
    object-fit: cover;
}
.auth-language-switcher .dropdown-item.active {
    background-color: #06c;
    color: #fff;
}
.main-auth {
    position: relative;
    z-index: 1049;
}
.footer-auth {
    z-index: 1050;
}
div:where(.swal2-container) {
    z-index: 99999 !important;
}
