:root {
    --primary-200: #3034ff;
    --primary-100: #9cbeff;
    --secondary-200: #0e0b3d;
    --secondary-100: #1463FFFF;
    --accent-200: #21ddff;
    --accent-100: #bcf3fd;
    --warm-200: #ffd338;
    --warm-100: #fff7e4;
    --gray-300: #a3a3a3;
    --gray-200: #e4e4e4;
    --gray-100: #eef2f6;
    --dark-100: #131318;
    --light-100: #fff;
    --success-200: #329b57;
    --success-100: #bff4e6;
    --info-200: #4270c3;
    --info-100: #c9d9fa;
    --warning-200: #cd7014;
    --warning-100: #f9e3cb;
    --danger-200: #dc7274;
    --danger-100: #f9c9cb;
    --border-radius: 5px;
}

/* All Page Global */
body{
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: var(--dark-100);
}
a {
    color: var(--dark-100);
    text-decoration: none;
    display: inline-block;
}
a:hover {
    text-decoration: none;
}
.section-py {
    padding: 50px 0;
}
.section-px {
    padding: 0 50px;
}
img {
    width: 100%;
}
.form-group {
    position: relative;
}
.border-shadow {
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.07);
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.border-shadow:hover {
    border-color: var(--primary-200);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.border-shadow-hover {
    -webkit-transition: all .3s;
    transition: all .3s;
}
.border-shadow-hover:hover {
    -webkit-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.07);
    border-color: var(--primary-200) !important;
}
.radius-10 {
    border-radius: 10px;
}
.hover-scale {
    transition: all .3s;
    -webkit-transition: all .3s;
}
.hover-scale:hover {
    transform: scale(1.03);
    transition: all .3s;
    -webkit-transition: all .3s;
}
.hover-up {
    transform: translateY(0);
    transition: all .3s;
    -webkit-transition: all .3s;
}
.hover-up:hover {
    transform: translateY(-10px);
    transition: all .3s;
    -webkit-transition: all .3s;
}
.hover-down {
    transform: translateY(0);
    transition: all .3s;
    -webkit-transition: all .3s;
}
.hover-down:hover {
    transform: translateY(20px);
    transition: all .3s;
    -webkit-transition: all .3s;
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius) !important;
    outline: none;
    transition: all .3s;
    padding: 0 15px;
    height: 45px;
    line-height: 1;
    box-shadow: none !important;
}
.form-control::placeholder {
    color: var(--gray-200);
}
.form-control:hover,
.form-control:focus {
    border-color: var(--primary-200);
    transition: all .3s;
}
.form-group .input-group-text {
    width: 40px;
    height: 50px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: var(--border-radius);
    position: absolute;
    left: 3px;
    top: 0;
    line-height: 40px;
}
.form-group .input-group-text:after {
    content: "";
    width: 1px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 10px;
    background: var(--gray-200);
}
.input-group .form-control:focus {
    z-index: 0;
    box-shadow: none;
}
.form-check .form-check-input {
    box-shadow: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gray-200);
    position: relative;
    top: -3px;
    margin-right: 10px;
}
.form-check .form-check-input:checked {
    border-color: var(--primary-200);
    background-color: var(--primary-200);
}


/* Component */
.primary-btn {
    padding: 12px 40px;
    background-color: var(--primary-200);
    color: var(--light-100);
    border: 1px solid var(--primary-200);
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .95px;
    line-height: 1;
}
.primary-btn.hidden-icon i {
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    width: 0;
}
.primary-btn.active,
.primary-btn:hover {
    background-color: var(--light-100);
    color: var(--primary-200);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.primary-btn.hidden-icon.active i,
.primary-btn.hidden-icon:hover i {
    opacity: 1;
    visibility: visible;
    margin-left: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
    /* width: auto; */
}
.core-btn {
    padding: 8px 20px;
    line-height: 1;
    background-color: transparent;
    color: var(--dark-100);
    border: 1px solid var(--dark-100);
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .95px;
}
.core-btn i {
    color: var(--dark-100);
    padding: 0;
    background-color: transparent;
}
.core-btn.hidden-icon i {
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    width: 0;
}
.core-btn.active,
.core-btn:hover {
    background-color: var(--light-100);
    color: var(--dark-100);
    -webkit-transition: all .3s;
    transition: all .3s;
}
.core-btn.hidden-icon.active i,
.core-btn.hidden-icon:hover i {
    opacity: 1;
    visibility: visible;
    margin-left: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
    /* width: auto; */
}
.success-bg {
    border-color: var(--success-100);
    background-color: var(--success-100);
    color: var(--success-200);
    transition: all .3s;
}
.success-bg i {
    color: var(--success-200);
}
.success-bg:hover {
    border-color: var(--success-200);
    background-color: var(--success-100);
    color: var(--success-200);
    transition: all .3s;
}
.link-btn {
    padding: 0px 40px;
    background-color: transparent;
    color: var(--secondary-200);
    border: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .95px;
}
.link-btn.hidden-icon i {
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    width: 0;
}
.link-btn.active,
.link-btn:hover {
    text-decoration: underline;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.link-btn.hidden-icon.active i,
.link-btn.hidden-icon:hover i {
    opacity: 1;
    visibility: visible;
    margin-left: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
    /* width: auto; */
}
.status {
    font-size: 14px;
    border: 1px solid var(--gray-100);
    padding: 6px 15px;
    border-radius: var(--border-radius);
    display: inline-block;
    text-align: center;
    line-height: 1;
}
.status.waiting-for-approval {
    background: rgba(222,101,172,.1);
    color: #de65ac;
    border-color: #de65ac
}
.status.approved {
    background: rgba(140,180,71,.1);
    color: #8cb447;
    border-color: #8cb447
}
.status.fulfilled {
    background: rgba(0,117,201,.1);
    color: #0075c9;
    border-color: #0075c9
}
.status.cancelled {
    background: rgba(201,84,0,.1);
    color: #c95400;
    border-color: #c95400
}
.status.delivered {
    background: rgba(17,147,133,.1);
    color: #119385;
    border-color: #119385
}
.status.on-accumulation {
    background: rgba(152,102,222,.1);
    color: #9866de;
    border-color: #9866de
}
.status.being-prepared {
    background: rgba(74,157,216,.1);
    color: #4a9dd8;
    border-color: #4a9dd8
}
.status.waiting-for-payment {
    background: rgba(222,101,172,.1);
    color: #de65ac;
    border-color: #de65ac
}
.status.refunded {
    background: rgba(222,101,172,.1);
    color: #de65ac;
    border-color: #de65ac
}
.status.deleted {
    background: rgba(242,0,0,.1);
    color: #f20000;
    border-color: #f20000
}
.status.failed {
    background: rgba(251,0,0,.1);
    color: #fb0000;
    border-color: #fb0000
}
.status.in-transaction {
    background: rgba(187,187,81,.1);
    color: #bbbb51;
    border-color: #bbbb51
}
.theme-dropdown {
    position: relative;
}
.theme-dropdown.list .dropdown-link {
    border: 1px solid var(--gray-200);
    background-color: var(--light-100);
    border-radius: var(--border-radius);
    line-height: 1;
    font-size: 15px;
    padding: 8px 12px;
    transition: all .3s;
}
.theme-dropdown.list .dropdown-link:hover {
    background-color: var(--gray-100);
    transition: all .3s;
    color: var(--primary-200);
}
.theme-dropdown.list .dropdown-link i {
    font-size: 12px;
    position: relative;
    top: -1px;
    margin-left: 5px;
    color: var(--primary-200);
}
.theme-dropdown.list .dropdown-box {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100px;
    z-index: 2;
    background-color: var(--light-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    margin-top: 5px;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}
.theme-dropdown.list .dropdown-box .link {
    padding: 8px 12px;
    font-size: 14px;
}
.theme-dropdown.list .dropdown-box .link:first-child {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.theme-dropdown.list .dropdown-box .link:last-child {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}
.theme-dropdown.list .dropdown-box .link:hover,
.theme-dropdown.list .dropdown-box .link.selected {
    background-color: var(--gray-100);
    transition: all .3s;
    color: var(--primary-200);
    display: block;
    width: 100%;
}
.theme-dropdown.mega .dropdown-short {
    position: relative;
}
.theme-dropdown.mega .dropdown-box {
    position: absolute;
    top: 110%;
    left: calc(50% - -5px);
    width: 300px;
    transform: translateX(-50%);
    border: 1px solid var(--gray-100);
    background-color: var(--light-100);
    border-radius: var(--border-radius);
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    padding: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    gap: 15px;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}
.theme-dropdown.mega .dropdown-box .dropdown-item {
    flex-basis: 47%;
    padding: 10px;
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all .3s;
}
.theme-dropdown.mega .dropdown-box .dropdown-item:hover {
    border-color: var(--primary-200);
    background-color: var(--primary-100);
    box-shadow: 0 0 20px rgba(106,100,217,.15);
    color: var(--primary-200);
    transition: all .3s;
}
.theme-dropdown .dropdown-box.active {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all .3s;
}
.theme-dropdown .dropdown-box:hover {
    border-color: var(--primary-200);
    box-shadow: 0 0 20px rgba(106,100,217,.15);
    transition: all .3s;
}
.avatar {
    border: 1px solid var(--gray-200);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    border-radius: 50%;
    font-weight: 600;
}
.avatar img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.link-group {
    position: relative;
    background-color: var(--gray-100);
    padding: 5px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.link-group .item {
    border: 1px solid var(--gray-100);
    background-color: var(--gray-100);
    line-height: 1;
    padding: 5px 10px;
    transition: all .3s;
    font-size: 15px;
}
.link-group .item:first-child {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}
.link-group .item:last-child {
    border-top-rigt-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}
.link-group .item:hover,
.link-group .item.selected {
    border: 1px solid var(--light-100);
    background-color: var(--light-100);
    transition: all .3s;
    box-shadow: 0 0 20px rgba(0,0,0,.05);
}

/* Login */
.login {
    position: relative;
}
.login .form-control {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius) !important;
    outline: none;
    transition: all .3s;
    padding: 15px 15px 0 15px;
    height: 55px;
    line-height: 1;
    box-shadow: none !important;
}
.login .form-control::placeholder {
    color: var(--gray-200);
}
.login .form-control:hover,
.login .form-control:focus {
    border-color: var(--primary-200);
    transition: all .3s;
}
.login .form-group label {
    top: 0;
    position: absolute;
    line-height: 1;
    left: 15px;
    transform: translateY(20px);
    font-size: 16px;
    background-color: var(--light-100);
    transition: all .3s;
}
.login .form-control:focus ~ label,
.login .form-control.filled ~ label {
    font-size: 13px;
    transform: translateY(8px);
    transition: all .3s;
}
.login .show-password {
    position: absolute;
    top: 12px;
    right: 10px;
    height: 30px;
    line-height: 30px;
    background: var(--gray-100);
    border-radius: var(--border-radius) !important;
    padding: 0 5px;
    color: var(--gray-200);
    transition: all .3s;
    cursor: pointer;
}
.login .show-password:hover {
    background-color: var(--primary-100);
    color: var(--primary-200);
    transition: all .3s;
}
.login .show-password .false {
    display: none;
}
.login .show-password-fix {
    position: relative;
}
.login .show-password-fix .form-control {
    padding-right: 45px;
}
.login .box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100vh;
}
.login .box .form-box {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}
.login .box .form-box .login-content {
    width: 70%;
}
.login .form-box .logo {
    height: 60px;
    object-fit: contain;
    margin-bottom: 30px;
    width: auto;
}
.login .form-box .card {
    border: none;
}
.login .form-box .card .card-header {
    background: none;
    border: none;
    padding: 0;
}
.login .form-box .card .card-body {
    background: none;
    border: none;
    padding: 0;
}
.login .form-box .card .card-header .title {
    font-size: 22px;
    color: var(--dark-100);
    margin-bottom: 15px;
    line-height: 1;
}
.login .form-box .card .card-header .desc {
    font-size: 14px;
    color: var(--dark-100);
    margin-bottom: 30px;
    line-height: 1;
}
.login .form-box .card .card-footer {
    padding: 0;
    background: none;
    text-align: left;
    margin-top: 30px;
    border: none;
}
.login .box .slider-box {
    flex: 1;
    padding: 15px;
}
.login .box .slider-box a {
    display: block;
}
.login .box .slider-box a img {
    width: 100%;
    object-fit: cover;
    height: calc(100vh - 30px);
    border-radius: var(--border-radius);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-left: 300px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    padding: 15px 30px;
    height: 76px;
    background-color: var(--light-100);
    z-index: 5;
}
header:before {
    content: "";
    background: url(../img/background/bg-pattern-2.png), linear-gradient(transparent, var(--light-100));
    background-size: 100% 76px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: -1;
    opacity: .2;
}
header .welcome {
    position: relative;
    margin-right: 30px;
}
header .welcome .small {
    font-size: 13px;
    font-weight: 300;
}
header .welcome .name {
    font-size: 17px;
}
header .search {
    flex: 1;
    max-width: 50%;
}
header .search form {
    position: relative;
}
header .search form input {
    border: 1px solid var(--gray-200);
    background-color: rgba(255,255,255,.5);
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    border-radius: var(
            --border-radius);
    height: 40px;
    padding: 0 10px 0 35px;
    width: 100%;
    outline: none;
    transition: all .3s;
    font-size: 15px;
}
header .search form input:hover,
header .search form input:focus {
    border-color: var(--primary-200);
    box-shadow: 0 0 20px rgba(106,100,217,.15);
    transition: all .3s;
}
header .search form label {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    line-height: 40px;
    width: 35px;
    text-align: center;
}
header .link {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
}
header .link .item {
    width: 40px;
    height: 40px;
    line-height: 39px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid var(--gray-100);
    background-color: var(
            --light-100);
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    position: relative;
    display: block;
    font-size: 17px;
    transition: all .3s;
}
header .link .item:hover {
    border-color: var(--primary-200);
    color: var(--primary-200);
    box-shadow: 0 0 20px rgba(106,100,217,.15);
    transition: all .3s;
}
header .link .item .count {
    position: absolute;
    top: -5px;
    left: -10px;
    background-color: var(--warning-100);
    color: var(--warning-200);
    border-radius: var(--border-radius);
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
}

/* Sidebar */
.sidebar {
    width: 300px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}
.sidebar:before {
    content: "";
    background: url("../img/background/bg-pattern-3.png");
    background-size: 300px 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .4;
}
.sidebar .logo {
    padding: 15px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}
.sidebar .logo img {
    height: 30px;
    object-fit: contain;
    width: auto;
}
.sidebar .logo .action {
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--primary-100);
    border-radius: var(--border-radius);
    color: var(--primary-200);
}
.sidebar .menu {
    padding: 15px 30px;
    flex: 1;
    height: 100%;
    overflow-y: scroll;
}
.sidebar .menu::-webkit-scrollbar {
    width: 5px;
}
.sidebar .menu::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar .menu::-webkit-scrollbar-thumb {
    background: var(--gray-100);
    border-radius: var(--border-radius);
}
.sidebar .menu::-webkit-scrollbar-thumb:hover {
    background: var(--gray-200);
}
.sidebar .menu .menu-group {
    margin-bottom: 20px;
}
.sidebar .menu .menu-group .title {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
    padding-left: 10px;
    opacity: .7;
}
.sidebar .menu .menu-group .list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 5px;
}
.sidebar .menu .menu-group .list .item,
.sidebar .menu .menu-group .sidebar-dropdown-menu li a {
    display: flex;
    font-size: 15px;
    line-height: 1;
    padding: 7px 10px;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: all .3s;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
}
.sidebar .menu .menu-group .list .item:hover,
.sidebar .menu .menu-group .list .item.active,
.sidebar .menu .menu-group .sidebar-dropdown-menu li a:hover,
.sidebar .menu .menu-group .sidebar-dropdown-menu li a.active {
    background-color: rgba(0,0,0,.05);
    transition: all .3s;
    color: var(--primary-200);
}
.sidebar .menu .menu-group .list .item i {
    width: 25px;
}
.sidebar .menu .menu-group .sidebar-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
}
.sidebar .menu .menu-group .sidebar-dropdown-menu {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    line-height: 1;
    gap: 5px;
    margin: 5px 0 0 0;
    height: 0;
    overflow: hidden;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}
.sidebar .menu .menu-group .sidebar-dropdown-menu.active {
    height: auto;
    overflow: scroll;
    visibility: visible;
    opacity: 1;
    margin-bottom: 5px;
    transition: all .3s;
}
.sidebar .menu .menu-group .sidebar-dropdown-menu li a i {
    width: 25px;
    font-size: 6px;
    text-align: center;
    padding: 4px 12px 0 0;
    opacity: 0;
    transition: all .3s;
}
.sidebar .menu .menu-group .sidebar-dropdown-menu li a:hover i,
.sidebar .menu .menu-group .sidebar-dropdown-menu li a.active i {
    opacity: 1;
    transition: all .3s;
}
.sidebar .account {
    padding: 15px 30px;
}
.sidebar .account a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    background: var(--light-100);
    padding: 7px 10px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    transition: all .3s;
    box-shadow: 0 0 10px rgba(0,0,0,.05);
}
.sidebar .account a:hover {
    border-color: var(--primary-200);
    color: var(--primary-200);
    box-shadow: 0 0 20px rgba(106,100,217,.15);
    transition: all .3s;
}
.sidebar .account a .avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    line-height: 40px;
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-right: 10px;
    transition: all .3s;
}
.sidebar .account a:hover .avatar {
    border-color: var(--primary-200);
    background-color: var(--primary-100);
    transition: all .3s;
}
.sidebar .account a .info {
    flex: 1;
}
.sidebar .account a .info .name {
    font-size: 17px;
    line-height: 1;
}
.sidebar .account a .info .email {
    font-size: 12px;
    font-weight: 300;
}

/* Section */
.section-title {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}
.section-title .title {
    font-size: 20px;
    margin: 0;
    line-height: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.section-title .title .tag {
    background-color: var(--gray-100);
    line-height: 1;
    margin-left: 10px;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: var(--border-radius);
}

/* Content */
.content {
    margin: 76px 0 0 300px;
    position: relative;
    z-index: 0;
    background-color: rgb(238 242 246 / 20%);
}
.content-container {
    padding: 15px 30px;
}
.content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    background-color: var(--light-100);
    margin: 15px 0 30px 0;
}
.content-header .content-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.content-header .content-title i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--primary-100);
    border-radius: var(--border-radius);
    text-align: center;
    margin-right: 15px;
    color: var(--dark-100);
}
.content-header .content-title .title {
    font-size: 22px;
    margin: 0;
}
.content-header .content-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
}
.content-header .content-actions .main-link {
    border: 1px solid var(--primary-200);
    background-color: var(--primary-200);
    color: var(--light-100);
    line-height: 1;
    padding: 5px 10px;
    transition: all .3s;
    font-size: 15px;
    border-radius: var(--border-radius);
}

/* Widget */
.widget-item {
    position: relative;
}
.widget {
    background-color: var(--light-100);
    padding: 20px;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    /* box-shadow: 0 0 10px rgba(0,0,0,.05); */
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: all .3s;
    margin-bottom: 30px;
}
.widget:hover {
    border-color: var(--primary-200) !important;
    box-shadow: 0 0 20px rgba(106,100,217,.1);
    transition: all .3s;
}
.widget.no-border:hover {
    border-color: var(--gray-200) !important;
    transition: all .3s;
}
.widget .inner {
    flex: 1;
    margin-right: 15px;
}
.widget .inner .title {
    font-size: 17px;
    margin: 0 0 10px 0;
    font-weight: 400;
}
.widget .inner .title .small {
    font-size: 12px;
    color: var(--gray-300);
}
.widget .inner .value {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}
.widget .inner .statistic {
    margin-top: 15px;
    font-size: 14px;
}
.widget .inner .statistic .up {
    color: var(--success-200);
    line-height: 1;
}
.widget .inner .statistic .fixed {
    color: var(--info-200);
    line-height: 1;
}
.widget .inner .statistic .down {
    color: var(--danger-200);
    line-height: 1;
}
.widget .inner .statistic .small {
    color: var(--gray-300);
}
.widget .icon {
    font-size: 2rem;
    line-height: 1;
}
.widget-area .group-widget {
    position: relative;
}
.widget-area .group-widget .row {
    margin: 0;
}
.widget-area .group-widget .column {
    padding: 0;
}
.widget-area .group-widget .column .widget {
    border-radius: 0;
    border-left-color: transparent;
    margin-top: 0;
}
.widget-area .group-widget .column:first-child .widget {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-left: 1px solid var(--gray-200);
}
.widget-area .group-widget .column:last-child .widget {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.list-widget .widget {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    border-bottom: 1px solid var(--gray-100);
    padding: 0 20px;
}
.list-widget .widget .inner {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    border-bottom: 1px solid var(--gray-100);
    padding: 20px 0;
}
.list-widget .widget .inner:last-child {
    border-bottom: none;
}
.list-widget .widget .inner .title {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1;
    font-weight: 300;
    width: 50%;
}
.list-widget .widget .inner .ratio-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.list-widget .widget .inner .value {
    color: var(--primary-200);
    font-size: 14px;
    display: block;
    font-weight: 300;
}
.list-widget .widget .inner .ratio {
    color: var(--primary-200);
    font-size: 14px;
    display: block;
    font-weight: 400;
    width: auto;
}

/* Record */
.record-area .record-box {
    margin-bottom: 30px;
}
.record-area .record-item {
    background-color: var(--light-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    /* box-shadow: 0 0 10px rgba(0,0,0,.05); */
    position: relative;
    transition: all .3s;
    font-size: 15px;
}
.record-area .record-item:hover {
    box-shadow: 0 0 20px rgba(106,100,217,.1);
    transition: all .3s;
}
.record-area .record-item .record-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    border-bottom: 1px solid var(--gray-100);
}
.record-area .record-item .section-title {
    margin-bottom: 0;
}
.record-area .record-item .record-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 10px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    line-height: 1;
    gap: 5px;
}
.record-area .record-item .record-title .title-item {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.record-area .record-item .record-title .title-item:last-child {
    text-align: right;
}
.record-area .record-item .record-list {
    position: relative;
}
.record-area .record-item .record-list .list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid var(--gray-100);
    transition: all .3s;
    font-size: 14px;
    gap: 5px;
}
.record-area .record-item .record-list .list-item:last-child {
    border-bottom: none;
}
.record-area .record-item .record-list .list-item:hover {
    background-color: var(--gray-100);
    transition: all .3s;
}
.record-area .record-item .record-list .list-item .list-field {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.record-area .record-item .record-list .list-item .list-field:last-child {
    text-align: right;
    font-weight: 500;
}
.record-area .record-item .record-title .title-item.flex-2,
.record-area .record-item .record-list .list-item .list-field.flex-2 {
    flex: 2;
}
.record-area .record-item .record-title .title-item.flex-3,
.record-area .record-item .record-list .list-item .list-field.flex-3 {
    flex: 3;
}
.record-area .record-item .date {
    font-size: 12px;
    line-height: 1;
    color: var(--gray-300);
    margin-top: 3px;
}

.record-area .card-item {
    background-color: var(--light-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    /* box-shadow: 0 0 10px rgba(0,0,0,.05); */
    position: relative;
    transition: all .3s;
    font-size: 15px;
}
.record-area .card-item:hover {
    box-shadow: 0 0 20px rgba(106,100,217,.1);
    transition: all .3s;
}
.record-area .card-item .card-list {
    position: relative;
}
.record-area .card-item .card-list .list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid var(--gray-100);
    transition: all .3s;
    font-size: 14px;
    gap: 5px;
}
.record-area .card-item .card-list .list-item:last-child {
    border-bottom: none;
}
.record-area .card-item .card-list .list-item:hover {
    background-color: var(--gray-100);
    transition: all .3s;
}
.record-area .card-item .card-list .list-item .list-field {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.record-area .card-item .card-list .list-item .list-field:last-child {
    text-align: right;
    font-weight: 500;
}
.record-area .card-item .card-list .list-item .list-field.flex-2 {
    flex: 2;
}
.record-area .card-item .card-list .list-item .list-field.flex-3 {
    flex: 3;
}
.record-area .card-item .card-list .list-item .list-field.product {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}
.record-area .card-item .card-list .list-item .list-field .rank-info {
    font-weight: 500;
}
.record-area .card-item .card-list .list-item .list-field .info {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    line-height: 1;
    gap: 7px;
}
.record-area .card-item .card-list .list-item .list-field .variation {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.record-area .card-item .card-list .list-item .list-field .variation .item {
    line-height: 1;
    padding: 2px 8px;
    background-color: var(--primary-100);
    color: var(--primary-200);
    border-radius: var(--border-radius);
    font-size: 12px;
}
.record-area .card-item .card-list .list-item .list-field.price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}
.record-area .card-item .card-list .list-item .list-field.price .count {
    color: var(--gray-300);
    font-weight: 300;
}