@import"https://fonts.bunny.net/css?family=Nunito";

body {
    display: flex
}
:root {
    --navy-dark: #252069;
    --navy-mid: #2D2878;
    --amber: #FFBA0A;
    --amber-dim: #FFD060;
    --bg: #F2F3F8;
    --white: #FFFFFF;
    --text: #1A1A2E;
    --muted: #7B7B9A;
    --border: #E4E5F0;
    --sidebar-w: 240px;
    --radius: 14px;
    --shadow: 0 2px 16px rgba(37, 32, 105, .10);
}
#sidebar {
    width: 250px;
    background: linear-gradient(175deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    color: #e0e0e0;
    height: 100vh;
    position: fixed;
    transition: all .3s;
    overflow: scroll;
    padding-top: 20px
}

#sidebar.collapsed {
    width: 80px
}

#sidebar .nav-link {
    color: #e0e0e0;
    white-space: nowrap;
    border-radius: 10px;
}

#sidebar .nav-link:hover {
    background: rgba(255, 255, 255, .08);
}

#sidebar .nav-link.active {
    background: rgba(255, 186, 10, .15);
    color: var(--amber);
}

#sidebar.collapsed .nav-link span:not(:first-child) {
    display: none
}

#sidebar.collapsed .nav-link i {
    margin-right: 0
}

#sidebar.collapsed .collapse,
#sidebar.collapsed .nav-link i.fas.fa-chevron-down {
    display: none !important
}

#content {
    margin-left: 250px;
    flex-grow: 1;
    transition: all .3s
}

#sidebar.collapsed+#content {
    margin-left: 80px
}

.dropdown-toggle i {
    font-size: .8rem
}

.search-container {
    padding: 0 15px;
    margin-bottom: 15px
}

#sidebar.collapsed .search-container {
    display: none
}

.logo-container {
    text-align: center;
    margin-bottom: 20px
}

.logo-container img {
    max-width: 100px
}

#sidebar.collapsed .logo-container {
    display: none
}

.dt-heading {
    font-size: 1.1rem
}

.dt-trash {
    padding: 4px 10px !important;
    cursor: pointer
}

table.dataTable {
    width: 100%;
    background-color: #fff
}

table.dataTable thead tr th {
    background-color: #f4f7f6 !important
}

table.dataTable thead th {
    color: #2d2d2d;
    font-weight: 600
}

table.dataTable td,
table.dataTable th {
    border: none !important
}

table.dataTable tbody tr:hover {
    background-color: #f4f7f6 !important;
    cursor: pointer
}

table.dataTable td,
table.dataTable th {
    padding: 1rem
}

.dataTables_filter input {
    border-radius: .5rem !important;
    margin-bottom: 1rem;
    padding: .5rem 1rem;
    width: auto
}

.dataTables_filter input::placeholder {
    color: #333;
    font-style: italic
}

.table>:not(caption)>*>* {
    background-color: transparent !important
}

.dataTables_paginate {
    margin-top: 20px;
    text-align: center
}

.dataTables_paginate .paginate_button {
    border-radius: .375rem;
    padding: .375rem .75rem;
    margin: 0 .125rem;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #ccc;
    font-size: 14px;
    font-weight: 500
}

.dataTables_paginate .paginate_button:hover,
.dataTables_paginate .paginate_button.current {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.dataTables_paginate .paginate_button:disabled {
    color: #ccc;
    background-color: #f8f9fa;
    border-color: #ddd
}

.dataTables_paginate .paginate_button:focus {
    outline: none;
    box-shadow: 0 0 0 .2rem #268fff80
}

.dataTables_paginate .paginate_button.previous,
.dataTables_paginate .paginate_button.next {
    font-size: 16px
}

.dataTables_info {
    font-size: 14px;
    color: #6c757d
}

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 16px
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 50px
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 50px;
    left: 2px;
    bottom: 2px;
    background-color: #fff;
    transition: .4s
}

input:checked+.slider {
    background-color: #4caf50
}

input:checked+.slider:before {
    transform: translate(14px)
}

.card-header-bg {
    background-color: #595959 !important
}

.border-edit,
.pencil-edit-color {
    border-color: #4a90e2 !important
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px #0000001a
}

.nav-tabs .nav-link {
    color: #000;
    font-weight: 400
}

.nav-tabs .nav-link.active {
    font-weight: 500;
    color: #007bff !important
}

.btn-primary {
    width: auto
}

.cart-info {
    height: 54px;
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 0 27px;
    border-radius: 42px;
    font-size: 15px;
    font-weight: 700;
    line-height: 54px;
    position: relative
}