:root {
    --primary: #6f8efb;
    --primary-dark: #4D6EE1;
    --white: #fff;
    --gray: #98a6ad;
    --gray-dark: #343a40;
    --gray-100: #f3f7f9;
    --gray-150: #f5f7f8;
    --gray-200: #f7f7f7;
    --gray-250: #ebedef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #98a6ad;
    --gray-700: #6c757d;
    --gray-800: #343a40;
    --gray-900: #323a46;
    --menu-item: #6c757d;
    --sidebar-width: 260px;
    --header:  68px;
}
* {
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
}
ul,ol {
    padding: 0;
    margin: 0;
    list-style: none;
}
a {
    text-decoration: none;
    color: #6c757d;
}
.ltr {
    direction: ltr !important;
}
body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-family: 'Inter', sans-serif;
    background-color: #f7f7fc;
    color: #343a40;
    font-size: 15px;
}
.login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    background: #f4f4ff url(../img/login.png) center left no-repeat;
    background-size: 70%;
    padding: 30px;
}
.login-logo img {
    width: 200px;
}
.login-form {
    width: 440px;
    height: 100%;
    min-height: 550px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 50px;
}
.login-light-text {
    color: #99a6ad;
}
.form-holder {
    width: 100%;
}
.form-label {
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.login-social {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    gap: 20px;
}
.login-social img {
    width: 18px;
}
.login-btn span {
    font-size: 13px;
}


input::placeholder {
    color: #99a6ad !important;
}

@media(max-width: 1124px) {
    .login {
        flex-direction: column;
        background: none;
    }
    .login-form {
        width: 100%;
        max-width: 440px;
    }
}

header {
    height: var(--header);
    background-color: #fff;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 0.6rem 1.8rem;
    z-index: 30;
}
.header-profile {
    display: flex;
    gap: 10px;
    align-items: center;
}
.header-profile-text {
    display: flex;
    flex-direction: column;
    line-height: 16px;
}
.header-profile-text span{
    display: flex;
    font-size: 13px;
}
.header-profile-name {
    font-weight: 600;
}
.header-icon-button {
    padding: 0.3rem;
    border-radius: 4px;
    cursor: pointer;
}
.header-avatar {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 150px;
    display: flex;
    align-items: center;
}
.logo img {
    width: 100%;
}
.sidebar {
    width: var(--sidebar-width);
    position: fixed;
    left: 0;
    top: var(--header);
    height: calc(100vh - var(--header));
    background-color: #fff;
    transition: left 0.4s;
}
hr.dashed {
    margin: 1rem 0;
    opacity: .25;
    border-style: dashed;
    color: hsla(0,0%,53%,.816);
}
.sidebar-nav {
    list-style: none;
    padding: 0;
    padding-top: 20px;
    margin: 0;
    overflow-y: scroll;
    height: calc(100vh - 70px);
}
.sidebar-nav .sidebar-nav-title {
    color: var(--menu-item);
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 8px 32px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sidebar-nav .sidebar-nav-item {
    padding: 4px 10px;
}

.sidebar-nav .sidebar-nav-link {
    border-radius: 0.25rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    font-size: .9375rem;
    list-style: none;
    padding: 8px 20px;
    position: relative;
    transition: background-color .3s ease-in-out;
    white-space: nowrap;
}
.sidebar-nav .sidebar-nav-link span {
    margin-left: 5px;
}
.sidebar-nav .sidebar-nav-link .icon {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 20px;
    font-size: 20px;
    font-weight: 400;
}
.sidebar-nav .sidebar-nav-link.active{
    background-color: #f0f3fd;
    color: var(--primary);
}
.sidebar-nav .sidebar-nav-link:hover {
    background-color: #f0f3fd;
}

.settings-menu .active {
    background-color: #f0f3fd;
    color: var(--primary);
}

/*content*/
.content {
    margin-left: var(--sidebar-width);
    padding: 25px;
    margin-top: var(--header);
    transition: margin-left 0.4s;
}
/*@media(max-width: 991px) {
   .sidebar {
        left: calc(-1 * var(--sidebar-width));
    } 
    .content {
        margin-left: 0;
    }
}*/

.page-title {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
}
.header-pre {
    border-radius: 4px;
    display: inline-block!important;
    height: 20px;
    margin-bottom: 0;
    margin-right: 12px;
    width: 6px;
    background-color: var(--primary);
}
.card {
    box-shadow: 0 1px 2px rgba(56,65,74,.15);
    margin-bottom: 1.5rem;
    padding: 0;
}
.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
    font-weight: 500;
    padding: 1.5rem;
}
.card-body {
    padding: 1.5rem;
}
.ch-icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 20px;
    margin-right: 6px;
}



.bg-soft-primary {
    background-color: #e1e6fd;
}
.bg-soft-rose {
    background-color: #f2e0e5;
}
.bg-soft-teal {
    background-color: #d5eff1;
}
.bg-soft-success {
    background-color: #d7f4e5;
}
.text-primary {
    color: #5671f0;
}
.text-rose {
    color: #b9516c;
}
.text-teal {
    color: #02a8b5;
}
.text-success {
    color: #0fc56a;
}
.fw-300 {
    font-weight: 600;
}
.fw-400 {
    font-weight: 600;
}
.fw-500 {
    font-weight: 600;
}
.fw-600 {
    font-weight: 600;
}
h4 {
    font-size: 1.125rem;
}
.hc-icon {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hc-icon span {
   font-size: 26px !important;
}

.table td,
.table th {
    padding: 1rem;
    border-color: var(--gray-300);
    vertical-align: middle;

}
.table-head th{
    background-color: #f1f6fd;
}
.table-btn {
    border: none;
    height: 37px;
    width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: none;
}
.table-btn .table-icon {
    font-size: 18px;
}

.add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    white-space: nowrap;
}
.add-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.breadcrumb .breadcrumb-item a {
    color: var(--primary);
}
.hand {
    cursor: pointer;
}
.textarea {
    height: 80px;
    resize: none;
}
.image-holder {
    max-width: 240px;
    min-height: 120px;
    border-radius: 6px;
    border: 2px dashed var(--gray-300);
    overflow: hidden;
    padding: 6px;
    background-size: 72px;
    background: #ccc;
}
.image-holder img {
    width: 100%;
    border-radius: 6px;
}
.del-btn {
    width: 32px;
    height: 32px;
    color: #fff;
    background-color: #ff4560;
    text-align: center;
    line-height: 32px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}
.category-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
}

.item-list {
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 2px 2px 2px var(--gray-200);
    border:  1px solid var(--gray-100);
}
.item-list-image {
    min-height: 220px;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover;
    border-radius: 6px;
    position: relative;
}
.item-list-image .durum {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    background: #fff;
    border-radius: 24%;
}
.item-list-image .star {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    background: #fff;
    border-radius: 24%;
}
.item-list-price {
    font-weight: 600;
    padding: 0 6px;
    color: var(--primary-dark);
    font-size: 18px;
}
.item-list-price span {
    font-size: 13px;
    color: var(--bs-gray-600);
}
.item-list-title {
    font-weight: 400;
    padding: 10px 6px;
}
.item-list-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-list-buttons {
    display: flex;
    gap: 6px;
}
.nav-h {
    height: 38px;
}

.thumb {
    width: 48px;
    height: 48px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    border-radius: 40%;
    border: 2px solid #f0f0f0;
}
.divider {
    border-top: 1px dashed var(--gray-500);
    height: 1px;
    margin: 25px 0;
}
.idivider {
    border-bottom: 1px dashed var(--gray-500);
}
.settings-menu {
    padding: 6px;
}

.settings-menu a {
    display: block;
    padding: 11px 13px;
    border-bottom: 1px solid #f7f7f7;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.settings-menu i {
    font-size: 20px;
    width: 20px;
    height: 20px;

}
.settings-menu a:last-child {
    border-bottom: 0;
}

.invoice-ddm {
    border: 0;
    border-radius: 2px;
    box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.1);
    padding: 0;
}
.invoice-ddm li {
    display: block;
    padding: 8px 10px;
    border-bottom: 1px solid #f0f0f0;
}
.invoice-ddm li:last-child {
    border-bottom: 0;
}
.invoice-ddm li:hover {
    background: #f0f0f0;
}
.hide-mob {
    display: none;
}
@media(max-width: 991px) {
   .sidebar {
        left: -260px;
    }
    .content {
        margin-left: 0;
    }
    .hide-mob {
        display: block;
    }
}
.card-bg {
    height: 120px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    border-radius: 4px;
}
.nowrap {
    white-space:nowrap;
}

/*Pager*/
.pagenav {
    display: block;
    padding: 15px;
}
.pagenav ul {
    display: flex;
    gap: 2px;
}
.pagenav ul li a {
    padding: 8px 14px;
    display: inline-block;
    background: #f0f0f0;
    color: #999;
    border-radius: 4px;
}
.pagenav ul li a:hover {
    background: var(--bs-primary);
    color: #fff;
}
.pagenav ul li a.pgn_die {
    background: var(--bs-primary);
    color: #fff;
}

.hide-obj {
    display: none;
}

/*BS*/
button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:active {
    color: #fff;
}
.breadcrumb li {
    font-size: 20px;
}
.custom-dropdown {
    border: 0;
    box-shadow: 0 0 5px rgba(56,65,74,.15);

}