:root {
    --warna_1: #10121a; /* Warna Background */
    --warna_2: #141b22; /* Warna Navbar, Card */
    --warna_3: #1e2632; /* Warna Input */
    --primary: #21e786; /* Warna Primary */
    --primary_opc: #21e7861a; /* Warna Primary Opacity, untuk element active */
    --text: #d3d3d3; /* Warna Teks */
    --border: #304050; /* Warna Border */
    --border-card: #05321d; /* Warna border Card */
    --bg_sold: #11171cd9; /* Warna Backroudng Sold */
    --danger: #bf3025;
    --success: #28af2d;
    --warning: #ddb12e;
    --info: #2196f3;
}
body {
    background-color: var(--warna_1);
    font-size: 14px;
    font-family: "Chakra Petch", sans-serif;
    font-weight: 500;
    color: var(--text);
}
.eniv-navbar {
    height: 80px;
    background-color: var(--warna_2);
    align-content: center;
    border-bottom: 1px solid var(--border-card);
    position: sticky;
    top: 0;
    z-index: 11;
}
.eniv-navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.eniv-navbar-right {
    display: flex;
}
.eniv-brand {
    display: block;
}
.eniv-brand img {
    height: 28px;
}
.eniv-navbar-menu {
    display: flex;
}
.eniv-navbar-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    padding: 8px 16px;
    margin: 0 2px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eniv-navbar-menu a svg {
    width: 20px;
    height: 20px;
}
.eniv-navbar-menu a.active,
.eniv-navbar-menu a:hover {
    color: var(--primary);
}
.eniv-navbar-menu a.active:after {
    content: " ";
    display: block;
    background-color: var(--primary);
    height: 2px;
    width: 26px;
    position: absolute;
    margin: 0 auto;
    bottom: -20px;
    border-radius: 10px;
    left: 10%;
    right: 10%;
}
.eniv-body {
    z-index: 10;
    position: relative;
    padding: 40px 0;
    min-height: calc(100vh - 392px);
}
.eniv-mb {
    margin-bottom: 28px;
}
.eniv-footer {
    border-top: 1px solid var(--border-card);
    background-color: var(--warna_2);
    padding: 40px 0;
}
.eniv-footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 26px;
}
.eniv-footer-content-start {
    width: 100%;
    max-width: 600px;
    flex-grow: 0;
}
.eniv-footer-content-start img {
    height: 24px;
    margin-bottom: 12px;
}
.eniv-footer-content-start p {
    max-width: 600px;
    line-height: 26px;
    color: var(--text);
}
.eniv-footer-content-start .eniv-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.eniv-footer-content-start .eniv-footer-menu a {
    color: #fff;
    text-decoration: none;
    color: var(--primary);
}
.eniv-footer-content-end {
}
.eniv-footer-content-end ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eniv-footer-content-end ul li {
    margin-bottom: 14px;
}
.eniv-footer-content-end ul li a {
    justify-content: end;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}
.eniv-footer-content-end ul li a img {
    height: 24px;
}
.eniv-copyright {
    padding-top: 26px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.eniv-copyright span:last-child i {
    color: #e34b4b;
    margin: 0 2px;
}
.eniv-copyright span:last-child a {
    color: var(--primary);
    text-decoration: none;
}
.eniv-gallery {
    margin-bottom: 18px;
}
.eniv-gallery a img {
    width: 100%;
    border-radius: 10px;
}
.eniv-gallery-sub {
    margin-top: 14px;
    display: flex;
    column-gap: 14px;
}
.eniv-gallery-sub a {
    width: 33.333%;
}
.breadcrumb-item a {
    color: var(--text);
    text-decoration: none;
}
.breadcrumb-item.active {
    color: var(--primary);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text);
}
.eniv-account-detail {
}
.eniv-account-detail h1 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.eniv-account-detail h2 {
    background: linear-gradient(
        90deg,
        rgba(69, 248, 130, 0.25) 0%,
        rgba(69, 248, 130, 0) 100%
    );
    font-size: 20px;
    padding: 13px;
    margin: 16px 0;
    font-weight: 700;
    color: var(--primary);
    max-width: 400px;
}
.eniv-account-detail p {
    font-size: 15px;
    line-height: 28px;
}
.eniv-account-description {
    margin-bottom: 28px;
}
.eniv-account-description p {
    margin-bottom: 6px;
}
.eniv-account {
    height: calc(100% - 22px);
    text-decoration: none;
    color: var(--text);
    display: block;
    width: 100%;
    margin-bottom: 24px;
    background-color: var(--warna_2);
    padding: 20px;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    position: relative;
}
.eniv-account img.eniv-account-thumbnail {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 14px;
}
.eniv-account h1 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 14px;
}
.eniv-account .eniv-account-price {
    display: flex;
    align-content: end;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 54px;
}
.eniv-account .eniv-account-price h2 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0;
}
.eniv-account .eniv-account-price h3 {
    font-size: 12px;
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 0;
    color: #db5959;
}
.eniv-account .eniv-account-category {
    width: calc(100% - 24px);
    border-top: 1px solid var(--border-card);
    position: absolute;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
}
.eniv-account .eniv-account-category img {
    height: 30px;
}
.eniv-page-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.eniv-page-title span {
    color: var(--primary);
}
.eniv-account-recomended {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    background-color: var(--warna_2);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
}
.eniv-account-recomended img.eniv-account-thumbnail {
    height: 100px;
}
.eniv-account-recomended .eniv-account-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.eniv-account-recomended .eniv-account-category img {
    height: 28px;
}
.eniv-account-recomended h1 {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}
.eniv-account-recomended .eniv-account-price {
    display: flex;
    gap: 12px;
    align-items: end;
}
.eniv-account-recomended .eniv-account-price h2 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.eniv-account-recomended .eniv-account-price h3 {
    margin-bottom: 0;
    font-size: 12px;
    text-decoration: line-through;
    color: #db5959;
}
.eniv-category {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
}
.eniv-category a {
    white-space: nowrap;
}
.eniv-account.eniv-account-sold,
.eniv-account-recomended.eniv-account-sold {
    position: relative;
    overflow: hidden;
    border-color: transparent;
}
.eniv-account.eniv-account-sold:after,
.eniv-account-recomended.eniv-account-sold:after {
    content: "Terjual";
    background: var(--bg_sold);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    align-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.eniv-account.eniv-account-sold img,
.eniv-account-recomended.eniv-account-sold img {
    filter: grayscale(100%);
}
.eniv-filter-form {
    position: sticky;
    top: 110px;
}
.eniv-filter-category .form-check {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
}
.eniv-co-total {
    background: var(--warna_3);
    padding: 14px 22px 14px 36px;
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}
.eniv-co-total span {
    display: block;
    margin-bottom: 8px;
}
.eniv-co-total h1 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}
.eniv-method {
    background: var(--warna_3);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    height: 80px;
    padding: 0 21px;
    align-content: center;
    margin-bottom: 14px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}
.eniv-method:hover {
    background-color: var(--primary_opc);
}
.eniv-method.active {
    background-color: var(--primary_opc);
    border-bottom-color: var(--primary);
}
.eniv-method-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.eniv-method-body img {
    height: 20px;
}
.eniv-method-body span {
    text-align: end;
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.eniv-method h1 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}
.eniv-sales h1 {
    font-size: 32px;
    font-weight: 600;
}
.eniv-sales h1 span {
    color: var(--primary);
}
.eniv-sales h2 {
    font-size: 22px;
    font-weight: 600;
}
.eniv-sales h2 span {
    color: var(--primary);
}
.eniv-sales p {
    font-size: 14px;
    color: #9799a3;
}
.eniv-sales-alert {
    background: #ffc4143b;
    padding: 14px;
    color: #c79349;
    text-align: center;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.eniv-menu-admin {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    position: sticky;
    top: 110px;
}
.eniv-menu-admin li {
}
.eniv-menu-admin li b {
    margin-bottom: 8px;
    display: block;
}
.eniv-menu-admin li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    color: var(--text);
    font-weight: 500;
}
.eniv-menu-admin li a svg {
    height: 22px;
}
.eniv-menu-admin li a:hover,
.eniv-menu-admin li a.active {
    color: var(--primary);
}
.eniv-table {
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.eniv-table table {
    margin-bottom: 0;
}
.eniv-table table tr:last-child td,
.eniv-table table tr:last-child th {
    border-bottom: none !important;
}
.eniv-table table tr td,
.eniv-table table tr th {
    background-color: transparent;
    color: var(--text);
    border-color: var(--border) !important;
    padding: 10px 20px;
}
.eniv-orders-detail {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}
.eniv-orders-detail li {
    background: var(--warna_2);
    padding: 10px 24px;
    margin-bottom: 14px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.eniv-orders-detail li span {
    display: inline-block;
}
.eniv-orders-detail li span:nth-child(1) {
    width: 170px;
}
.eniv-orders-detail li span:nth-child(2) {
    margin: 0 12px;
}
.eniv-orders-detail li span:nth-child(3) {
    font-weight: 600;
    color: #fff;
}
.eniv-table-cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}
.eniv-banner {
    margin-bottom: 20px;
}
.eniv-banner .item img {
    width: 100% !important;
    border-radius: 12px !important;
}
.eniv-toggle {
    display: none;
    background: var(--primary);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    width: 60px;
    height: 36px;
    text-align: center;
    align-content: center;
    justify-content: center;
}
.eniv-toggle img {
    height: 20px;
}
.eniv-filter-button {
    align-items: center;
    gap: 12px;
    color: #fff;
    margin-bottom: 24px;
    cursor: pointer;
    display: none;
}
.eniv-filter-button .eniv-filter-button-icon {
    width: 34px;
    height: 34px;
    background: var(--primary);
    align-content: center;
    text-align: center;
    border-radius: 4px;
}
.eniv-filter-button .eniv-filter-button-icon svg {
    height: 28px;
}
.eniv-statistic-center {
    background: var(--warna_2);
    text-align: center;
    height: 100px;
    display: grid;
    align-content: center;
    border-top: 1px solid var(--border-card);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.eniv-statistic-center h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}
.eniv-statistic-center p {
    margin-bottom: 0;
}
.eniv-statistic {
    background: var(--warna_2);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 24px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.eniv-statistic svg {
    height: 38px;
}
.eniv-statistic-content {
}
.eniv-statistic-content p {
    margin-bottom: 6px;
}
.eniv-statistic-content h1 {
    margin-bottom: 0;
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}
.eniv-404 {
    text-align: center;
}
.eniv-404 h1 {
    font-size: 84px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.eniv-404 h1 span {
    color: var(--primary);
}
.eniv-404 p {
    font-size: 18px;
    margin-bottom: 30px;
}
.eniv-blur-1 {
    width: 356px;
    height: 356px;
    border-radius: 356px;
    opacity: 0.3;
    background: linear-gradient(99deg, #20d980 -10.9%, #2be9a6 97.14%);
    filter: blur(155px);
    position: absolute;
}
.eniv-blur-2 {
    width: 256px;
    height: 256px;
    border-radius: 256px;
    opacity: 0.3;
    background: linear-gradient(99deg, #20d980 -10.9%, #2be9a6 97.14%);
    filter: blur(85px);
    position: absolute;
    right: 180px;
    top: 600px;
}
.eniv-star-1 {
    position: absolute;
    top: 250px;
    left: 182px;
}
.eniv-star-2 {
    position: absolute;
    top: 191px;
    left: 219px;
    width: 40px;
}
.eniv-star-3 {
    position: absolute;
    top: 181px;
    left: 162px;
}
