﻿:root {
    --egk-light-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    --egk-mid-border-radius: 6px;
    --island-bg-color: hsla(0,0%,100%,.96);
    --text-primary-color: #5f6368;
    --egk-ui-font: 'Poppins', sans-serif;
    --sb-track-color: #dcdcdc;
    --sb-thumb-color: var(--theme-color);
    --sb-size: 8px;
}

* {
    font-family: var(--egk-ui-font);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

::-webkit-scrollbar {
    width: var(--sb-size);
}

::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 3px;
}

@supports not selector(::-webkit-scrollbar) {
    * {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 12px;
    color: var(--text-primary-color);
    line-height: 1.428571;
    background-color: #f9fafc;
}

a {
    color: #444;
    text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

input {
    line-height: normal;
    font-size: 12px;
    color: var(--text-primary-color);
}

.d-none {
    display: none !important;
}

.d-flex {
    display: flex;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: end;
}

.justify-content-around {
    justify-content: space-around;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: start;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.full-width {
    width: 100%;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px !important;
}

.mb-8 {
    margin-bottom: 32px;
}

.mt-2 {
    margin-top: 8px;
}

.m-0 {
    margin: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.p-4 {
    padding: 12px !important;
}


.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.border-none {
    border: none !important;
}

.egk-content-wrapper {
    max-width: 1800px;
    margin: 100px auto auto;
    min-height: 78.65vh;
    margin-bottom: 28px;
    padding: 0 12px;
}

.egk-content {
    padding: 24px 18px;
    border-radius: var(--egk-mid-border-radius);
    box-shadow: var(--egk-light-shadow);
    border-top: 2px solid var(--theme-color);
    margin-bottom: 24px;
    background-color: #fff;
}

.egk-content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
}

    .egk-content-header .fa-angle-down,
    .egk-content-header .fa-angle-up {
        margin: auto 0;
    }

.egk-content-title {
    font-size: 18px;
    font-weight: 500;
    position: relative
}

    .egk-content-title::before {
        content: "";
        position: absolute;
        height: 3px;
        width: 30px;
        background: linear-gradient(135deg,var(--theme-color),var(--theme-color));
        left: 0;
        bottom: -6px;
    }

    .egk-content-title.no-bottom-border::before {
        display: none;
    }

.egk-content .datatable-wrapper {
    overflow: auto;
}

.tippy-box[data-theme="error"] .tippy-content {
    color: rgb(244 63 94);
    background-color: rgb(255 228 230);
}

.tippy-box[data-theme="error"] .tippy-arrow {
    color: rgb(255 228 230);
}

[data-theme="copy-tippy"] {
    cursor: pointer;
    background-color: var(--theme-color);
    color: #fff;
}

    [data-theme="copy-tippy"] .tippy-arrow:before {
        color: var(--theme-color);
    }

.stok-container > span {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}


.egk-collapse-button {
    cursor: pointer;
}

.egk-collapse-menu {
    height: 0;
    overflow: hidden;
    visibility: collapse;
    opacity: 0;
    transition: height 1s, opacity 1s;
}

    .egk-collapse-menu.active {
        opacity: 1;
        height: auto;
        transition: height 1s, opacity 1s;
        visibility: visible;
    }

.modal-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #aeaeae26;
    z-index: 99999;
}

.overlay-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3939394f;
    z-index: 10001;
    display: none;
}

.navbar {
    display: flex;
    align-items: center;
    height: 70px;
    transition: all ease-in-out .2s;
    max-height: 80px;
    box-shadow: var(--egk-light-shadow);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.5);
    transition: all ease-in-out 0.2s;
    margin-bottom: 0;
    border-radius: 0;
    padding: 0px 12px;
}

.CariSearch {
    position: relative;
}

.position-absolute {
    position: absolute !important;
}

.swal2-container {
    z-index: 999999999999 !important;
}

@keyframes wiggle {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    80% {
        transform: scale(1);
    }
}

.cari-typeahead.wiggle {
    animation: wiggle 1s infinite;
    position: sticky;
    animation-iteration-count: 1;
    position: sticky;
    z-index: 9999999;
}

.form-egk-form-label {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 12px
}

.egk-form .egk-form-switch {
    display: flex;
    align-items: center;
    height: 45px
}

.egk-form-input {
    width: calc(100% / 2 - 20px);
    margin-bottom: 15px;
    position: relative
}

.column-1 .egk-form-input {
    width: calc(100%)
}

.column-3 .egk-form-input {
    width: calc(100% / 3 - 20px)
}

.column-4 .egk-form-input {
    width: calc(100% / 4 - 20px)
}

.column-5 .egk-form-input {
    width: calc(100% / 5 - 20px)
}

.egk-form-input .egk-btn {
    position: absolute;
    right: 0;
    top: 25px;
    /*top: 29px;*/
    height: 42px;
    border-radius: 0 6px 6px 0
}

.egk-form-label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

.circle-progress,
.egk-single-input {
    max-width: 320px
}

.egk-form-input input,
.egk-form-input select,
.egk-single-input {
    font-size: 14px;
    background-color: transparent;
    height: 42px;
    width: 100%;
    outline: 0;
    border-radius: 6px !important;
    border: 1px solid #ccc;
    padding-left: 15px;
    border-bottom-width: 2px;
    transition: all .3s ease
}

    .egk-form-input input[type="checkbox"] {
        height: 18px;
        width: 18px;
    }

.egk-form-input select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.egk-form-input textarea {
    min-height: 42px;
}

.form-egk-form-label .egk-form-input input[type=file] {
    padding-top: 10px
}

.form-egk-form-label .egk-form-input input:focus,
.form-egk-form-label .egk-form-input input:valid,
.form-egk-form-label .egk-form-input select:focus,
.form-egk-form-label .egk-form-input select:valid,
.egk-single-input {
    border-color: var(--theme-color)
}

.form-egk-form-label .egk-form-input input.is-invalid,
.form-egk-form-label .egk-form-input select.is-invalid {
    border-color: rgb(244 63 94);
}

.form-egk-form-label .egk-date-input i,
.form-egk-form-label .egk-date-input svg,
.form-egk-form-label .egk-form-input i,
.form-egk-form-label .egk-form-input svg,
.egk-single-input i,
.egk-single-input svg {
    position: absolute;
    right: 16px;
    font-size: 18px;
    top: 36px;
    color: var(--theme-color);
    pointer-events: none;
}

.egk-form-input .icon-toggle {
    pointer-events: auto !important;
    top: 40px !important;
    cursor: pointer;
}

@media (min-width: 1365px) {
    .egk-content-wrapper {
        padding: 0 96px;
    }
}

@media only screen and (max-width:746px) {
    .egk-form-container {
        max-width: 100%
    }

    .egk-content-title-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        margin-top: 12px
    }

    .egk-form-input {
        margin-bottom: 15px;
        width: 100%
    }

    .form-egk-form-label::-webkit-scrollbar {
        width: 0
    }
}

@media only screen and (max-width:1200px) {
    .column-3 .egk-form-input,
    .column-4 .egk-form-input,
    .column-5 .egk-form-input,
    .egk-single-input {
        margin-bottom: 15px;
        width: 100%
    }
}

.circle-progress {
    display: flex;
}

    .circle-progress svg {
        width: 90px;
        height: 90px;
    }

    .circle-progress .bg {
        fill: none;
        stroke-width: 6px;
        stroke: #1A2C3445;
    }

    .circle-progress [class^="meter-"] {
        fill: none;
        stroke-width: 6px;
        stroke-linecap: round;
        transform: rotate(-90deg);
        transform-origin: 50% 50%;
    }

    .circle-progress .meter-1 {
        stroke-dasharray: 360;
        stroke-dashoffset: 360;
        stroke: var(--theme-color);
        animation: progress-1 1s ease-out;
    }

@keyframes progress-1 {
    from {
        stroke-dashoffset: 360;
    }

    to {
        stroke-dashoffset: var(--offset);
    }
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 80px !important;
}

.nav.navbar-nav .dropdown-menu > li:hover {
    background: var(--theme-color) !important;
}

.nav.navbar-nav > li > a:hover {
    color: #444444 !important;
}

.nav.navbar-nav {
    position: relative;
    z-index: 1040;
}

    .nav.navbar-nav > li > a {
        font-size: 14px;
        color: #fff;
        display: inline-block;
        height: 61px;
        line-height: 61px;
        padding: 0 6px 0 15px;
        background: transparent;
    }

.nav > li > a > img {
    height: 35px;
    width: 35px;
    transition: all ease-in-out 0.2s;
}

.main-sticked #mobile-sidebar {
    top: 55px !important;
    transition: all ease-in-out 0.2s;
}



.navbar-sticked nav {
    height: 50px;
    transition: all ease-in-out 0.2s;
}

.navbar-sticked .navbar-nav .svg-inline--fa {
    font-size: 14px;
    transition: all ease-in-out 0.2s;
}

.navbar-sticked #nav-icon3 {
    width: 25px;
    height: 20px;
    transition: all ease-in-out 0.2s;
}

    .navbar-sticked #nav-icon3 span {
        height: 3px;
    }

        .navbar-sticked #nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
            top: 9px;
        }

        .navbar-sticked #nav-icon3 span:nth-child(4) {
            top: 19px;
        }


.pos-relative {
    overflow: auto;
}

.prtm-block {
    padding: 24px 18px;
    border-top: solid 3px var(--theme-color);
    border-radius: var(--egk-mid-border-radius);
    box-shadow: var(--egk-light-shadow);
}

.prtm-block-title h3 {
    font-family: inherit;
    font-weight: 400;
    color: #414658;
    text-transform: capitalize;
}

.nav.navbar-nav > li > a:hover {
    background: transparent;
}

.navbar-header {
    padding-left: 0px;
    padding-right: 0px;
}


    .navbar-header .navbar-brand {
        height: 110px !important;
        min-width: 100px !important;
    }


.firm-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    height: 70px;
    width: 70px;
    transition: all ease-in-out 0.2s;
    padding: 4px 0;
}


    .firm-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        overflow: hidden;
        transition: all ease-in-out 0.2s;
    }

.navbar-sticked .firm-logo {
    height: 55px;
    width: 120px;
    transition: all ease-in-out 0.2s;
}

.navbar-header {
    width: auto;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.prtm-logo {
    width: 150px;
}

.nav.navbar-nav i,
.nav.navbar-nav svg {
    color: var(--theme-color);
}

.nav.navbar-nav > li > a {
    color: var(--text-primary-color);
    padding: 0 8px 0 0px;
    margin-left: 6px;
}

.nav.navbar-nav.navbar-right > li > a {
    margin-left: 20px !important;
}


.dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.navbar-right .dropdown-menu {
    right: 0 !important;
    left: auto !important;
    top: 28px;
}


@media (max-width: 768px) {
    footer {
        justify-content: center !important;
    }
}

[href="/stok-listesi-tum/stok-listesi"] > svg,
[href="/stok-listesi-tum/stok-listesi-kampanya"] > svg,
[href="/stok-listesi-tum/stok-listesi-yeni"] > svg,
[href="/stok-listesi-tum/stok-listesi-ithal"] > svg,
[href="/stok-listesi-tum/stok-listesi"] > i,
[href="/stok-listesi-tum/stok-listesi-kampanya"] > i,
[href="/stok-listesi-tum/stok-listesi-yeni"] > i,
[href="/stok-listesi-tum/stok-listesi-ithal"] > i {
    float: left !important;
    rotate: 0deg !important;
    min-width: 24px;
}

.stockDetailBody .swiper-wrapper {
    align-items: center;
}

.stockDetailBody .swiper {
    width: 100%;
    height: 240px;
}

.stockDetailBody .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stockDetailBody .stockDetailThumbSwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

    .stockDetailBody .stockDetailThumbSwiper .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
    }

    .stockDetailBody .stockDetailThumbSwiper .swiper-slide-thumb-active {
        opacity: 1;
    }

.stockDetailBody .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stockDetailBody .swiper-button-prev,
.stockDetailBody .swiper-button-next {
    color: var(--theme-color);
}

    .stockDetailBody .swiper-button-prev::after,
    .stockDetailBody .swiper-button-next::after {
        font-size: 28px;
    }



.stock-detail-actions > div {
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin: 8px 0px;
}

    .stock-detail-actions > div:hover {
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .stock-detail-actions > div svg {
        min-width: 20px;
    }



.stockDetailBody #img-slicker {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin: 8px;
}

    .stockDetailBody #img-slicker img {
        max-height: 160px;
        padding: 8px 0px;
    }

.stock-detail-actions {
    transition: all 0.2s ease-in-out;
}

    .stock-detail-actions > .FiyatiDusunceHaberVer.action-taken {
        background: #d6f2d6b2;
    }

        .stock-detail-actions > .FiyatiDusunceHaberVer.action-taken > svg {
            color: green;
        }

    .stock-detail-actions > .StogaGirinceHaberVer.action-taken {
        background: #d6f2d6b2;
    }

        .stock-detail-actions > .StogaGirinceHaberVer.action-taken > svg {
            color: red;
        }

    .stock-detail-actions > .Favori.action-taken {
        background: #ff000024;
    }

        .stock-detail-actions > .Favori.action-taken > svg .fa-primary {
            fill: red;
        }

        .stock-detail-actions > .Favori.action-taken > svg .fa-secondary {
            color: #fff;
        }

.stockDetailBody #tabsStokDetay {
    width: 100%;
}

    .stockDetailBody #tabsStokDetay .nav-tabs {
        margin-bottom: 8px;
    }

        .stockDetailBody #tabsStokDetay .nav-tabs > li {
            width: 25%;
            text-align: center;
        }

    .stockDetailBody #tabsStokDetay .nav > li > a {
        padding: 8px !important;
    }


.stockDetailBody .form-horizontal {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 8px;
}


.stockDetailBody .tab-content > .active {
    display: block;
    display: flex;
    flex-direction: column;
}

.stockDetailBody .tab-pane span {
    text-align: unset;
    padding: 12px;
}

.stockDetailBody .tab-content > .active > span:nth-child(even) {
    background-color: #f2f2f2;
}

.stock-actions-wrapper {
    display: none;
    position: absolute;
    right: 6px;
    top: 6px;
    gap: 6px;
}

.stock-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: none;
    border-style: initial;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    background: #fff;
}

    .stock-actions[data-action="FavoriEkle"] {
        border: 1px solid #f9758c;
        color: #f9758c;
    }

    .stock-actions.True[data-action="FavoriEkle"] {
        border-color: #ff8299;
        -webkit-animation: shadow-grow 2s;
        animation: shadow-grow 2s;
        background-color: #f9758c;
        color: #fff;
    }

    .stock-actions[data-action="StogaGirinceHaberVer"] {
        border: 1px solid #ffa700;
        color: #ffa700;
    }

    .stock-actions.True[data-action="StogaGirinceHaberVer"] {
        border-color: #ff8299;
        -webkit-animation: shadow-grow 2s;
        animation: shadow-grow 2s;
        background-color: #ffa700;
        color: #fff;
    }

@keyframes shadow-grow {
    0% {
        box-shadow: 0 0;
    }

    50% {
        box-shadow: 0 0 5px 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.ui-helper-hidden-accessible {
    display: none;
}

.ui-menu .ui-menu-item:only-child, .ui-menu .ui-menu-item:last-child {
    border-bottom: none;
}

.ui-menu .ui-menu-item-wrapper {
    white-space: nowrap !important;
    font-size: 14px;
    color: var(--text-primary-color);
    padding: 8px .625rem;
    border-radius: var(--egk-mid-border-radius);
    cursor: pointer;
}

.ui-widget-header .ui-icon {
    background-image: none;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    top: 16px;
}

.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
    border: 1px solid var(--theme-color);
    background: var(--theme-color) !important;
    font-weight: 400;
    color: #fff;
}

.fa-enterprise {
    position: absolute;
    left: 2px;
    top: -3px;
    color: var(--theme-color);
    font-size: 10px;
}

.fa-asterisk {
    color: var(--theme-color);
    font-size: 10px;
}

.form-control {
    box-shadow: none;
    border-radius: 0px var(--egk-mid-border-radius) var(--egk-mid-border-radius) 0px;
}

textarea.form-control {
    max-width: 100%;
    border-radius: var(--egk-mid-border-radius);
}
/* Tooltip for buttons*/

.tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 2;
    width: auto;
    color: #fff;
    font-size: 12px;
    background-color: #192733;
    border-radius: var(--egk-mid-border-radius);
    padding: 4px 8px;
}

    .tooltip-text::before {
        content: "";
        position: absolute;
        transform: rotate(45deg);
        background-color: #192733;
        padding: 5px;
        z-index: 1;
    }

.hover-text .btn {
    padding: 4px 8px;
}

.hover-text svg {
    width: 14px;
}

.hover-text:hover .tooltip-text {
    visibility: visible;
}

.hover-text #top {
    top: -40px;
    right: -54%;
}

    .hover-text #top::before {
        top: 80%;
        left: 42%;
    }

.hover-text #bottom {
    top: 25px;
    left: -50%;
}

    .hover-text #bottom::before {
        top: -5%;
        left: 45%;
    }

.hover-text #left {
    top: -2px;
    right: 135%;
}

    .hover-text #left::before {
        top: 35%;
        left: 94%;
    }

.hover-text #right {
    top: -8px;
    left: 120%;
}

    .hover-text #right::before {
        top: 35%;
        left: -7%;
    }

.hover-text {
    position: relative;
    display: inline-block;
    text-align: center;
}

    .hover-text > a {
        border-radius: var(--egk-mid-border-radius);
    }

/* Tooltip for buttons*/



.dropdown-menu {
    box-shadow: var(--egk-light-shadow);
    border-radius: var(--egk-mid-border-radius);
}

    .dropdown-menu > li > a {
        padding: 0;
        line-height: 1.2;
        color: inherit;
    }

.open .dropdown-menu .fa- {
    display: none;
}

.navbar .dropdown-menu svg,
.navbar .dropdown-menu i {
    float: right;
}

    .navbar .dropdown-menu svg.fa-angle-down,
    .navbar .dropdown-menu i.fa-angle-down {
        rotate: 270deg;
    }

    .navbar .dropdown-menu svg.fa-arrow-right-from-bracket,
    .navbar .dropdown-menu i.fa-arrow-right-from-bracket {
        color: red !important;
    }

    .navbar .dropdown-menu svg.fa-circle-heart,
    .navbar .dropdown-menu i.fa-circle-heart {
        color: palevioletred;
    }

.nav.navbar-nav .dropdown-menu {
    width: auto;
    padding: 8px;
    min-width: 218px;
}

    .nav.navbar-nav .dropdown-menu > li {
        border: none;
        padding: 0px .625rem;
        border-radius: 4px !important;
    }

        .nav.navbar-nav .dropdown-menu > li:last-child > a {
            border: none;
        }

        .nav.navbar-nav .dropdown-menu > li > a {
            cursor: pointer;
            white-space: nowrap !important;
            font-size: 12px;
            color: var(--text-primary-color);
            border-bottom: 1px solid #d3d7dba3;
            padding: 12px 0px;
        }



        .nav.navbar-nav .dropdown-menu > li > svg,
        .nav.navbar-nav .dropdown-menu > li > i {
            margin: 0px 10px !important;
        }

.hover-drop .dropdown-menu, .dropdown-menu {
    min-width: unset;
}

.nav.navbar-nav .dropdown-menu > li:hover > span,
.nav.navbar-nav .dropdown-menu > li:hover > svg,
.nav.navbar-nav .dropdown-menu > li:hover > i,
.nav.navbar-nav .dropdown-menu > li:hover > a,
.nav.navbar-nav .dropdown-menu > li:hover > a > svg,
.nav.navbar-nav .dropdown-menu > li:hover > a > i,
.nav.navbar-nav .dropdown-menu > li:hover .fa-secondary {
    color: #fff !important;
    opacity: 1;
    transition: 0.3s all ease;
}

.nav.navbar-nav .dropdown-menu > li:hover a {
    color: var(--text-primary-color);
    background: transparent !important;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropdown, .dropup {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: block;
    visibility: hidden;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    opacity: 0;
    width: 0px !important;
}

    .dropdown-menu.pull-right, .hover-drop .dropdown .dropdown-menu .dropdown-menu.caret, .prtm-header .dropdown .dropdown-menu .dropdown-menu.caret {
        right: 0;
        left: auto
    }

    .dropdown-menu .divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #eee
    }

    .dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
        color: #fff;
        text-decoration: none;
        outline: 0;
        background-color: #5e6db3
    }

    .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
        color: #c1c8d0
    }

        .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
            text-decoration: none;
            background-color: transparent;
            background-image: none;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
            cursor: not-allowed
        }

.open > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    width: auto;
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 14px;
    line-height: 1.428571;
    color: inherit;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.hover-drop .dropdown .dropdown-menu .caret > .dropdown-menu, .prtm-header .dropdown .dropdown-menu .caret > .dropdown-menu, .pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid\9;
    content: ""
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

.line-slide-tab .nav li:first-child {
    margin: 0 !important;
}

.nav-tabs {
    border-bottom: none;
}

.nav.nav-tabs {
    margin-bottom: 8px;
}

    .nav.nav-tabs > li > a {
        font-size: 14px;
        border: none;
    }

.line-slide-tab .nav-tabs > li.active > a, .line-slide-tab .nav-tabs > li.active > a:hover, .line-slide-tab .nav-tabs li.active > a:focus {
    color: var(--text-primary-color);
    border-bottom: 2px solid var(--theme-color);
}

.line-slide-tab .nav-tabs > li {
    display: inline-block;
    margin: 0;
}

    .line-slide-tab .nav-tabs > li:after {
        display: block;
        content: '';
        border-bottom: solid 3px var(--theme-color);
        transform: scaleX(0);
        transition: transform 500ms ease-in-out;
    }

    .line-slide-tab .nav-tabs > li.active:after {
        display: block;
        content: '';
        border-bottom: none;
        transform: none;
        transition: none;
    }

    .line-slide-tab .nav-tabs > li:hover:after {
        transform: scaleX(1);
        transform-origin: 0% 50%;
    }

.panel-egk-dashboard .table-range {
    width: 100%;
}

    .panel-egk-dashboard .table-range td {
        text-align: center;
    }

    .panel-egk-dashboard .table-range input {
        border: 1px solid #a5a6a7;
        border-radius: 6px;
    }

@media screen and (max-width: 767px) {
    .panel-egk-dashboard .table-responsive {
        border: none;
    }
}

#ContentSlider .digit {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 56px;
    padding: 8px;
    border-radius: 4px;
}

#ContentSlider .time {
    font-size: 2em;
    font-weight: 500;
    line-height: 1;
}

#ContentSlider .digits {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
    gap: 4px;
}

#ContentSlider .tag {
    background-color: transparent;
    font-family: Helvetica,Roboto,Arial,sans-serif;
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 20px 40px 20px 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/assets/sale.png');
    font-size: 20px;
    color: red;
    line-height: 1;
    display: none;
}

#ContentSlider [data-slide="prev"],
#ContentSlider [data-slide="next"] {
    position: absolute;
    height: 36px;
    width: 36px;
    top: 44%;
    margin: 0px 20px;
    padding: 10px;
    background-color: #ffffff94;
    border-radius: 50%;
    color: #717276;
    cursor: pointer;
    box-shadow: var(--egk-light-shadow);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #ContentSlider [data-slide="prev"]:hover,
    #ContentSlider [data-slide="next"]:hover {
        background-color: var(--theme-color);
        color: #fff;
        transition: all 0.2s ease-in-out;
    }

#ContentSlider [data-slide="next"] {
    right: 0;
}

.chkSliderSettings::before {
    border-radius: 50%;
}

.chkSliderSettings {
    border-radius: 12px;
}

#mobile-sidebar {
    position: fixed;
    top: 75px;
    left: 8px;
    padding: 10px;
    box-shadow: var(--egk-light-shadow);
    transition: all .3s ease-in-out;
    border-radius: var(--egk-mid-border-radius);
    z-index: 101;
    background-color: #fff;
    width: calc(100% - 18px);
    max-width: 400px;
}

    #mobile-sidebar .sidebar-menu li:last-child > a {
        border-bottom: none;
    }

.mobile-navbar-sticked#mobile-sidebar {
    top: 54px;
    transition: all .3s ease-in-out;
}



.stok-ara:focus-within {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
}


.Duyuru-vitrin {
    position: relative;
    top: 10px;
    margin-right: 280px;
}

.urun-row .urun-gorsel {
    min-width: 140px;
    min-height: 140px;
}

.image-container {
    position: relative;
}

.no-image {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    width: 100%;
    height: 100%;
}

    .no-image i {
        font-size: 62px;
    }

.sayac-kutusu {
    border-radius: 8px;
}

.sayac-wrapper {
    border-radius: 8px;
    border-left: 3px solid;
    box-shadow: 4px 3px 4px 2px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12);
}

.ddl-add-on {
    position: relative;
    top: 17px;
    right: 15px;
}

.sepet-input-wrapper {
    width: 100%;
    height: 100%;
    position: relative
}

.sepet-input {
    border-radius: 8px;
    border: none;
    width: 87px;
    height: 34px;
    text-align: center;
    display: inline-block;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 0px 14px;
}

#dvSepet .miktar-input {
    width: 130px;
    height: 34px;
    text-align: center;
    font-size: 14px;
    padding: 0 18px;
}

.ozellik-tablosu-tip2 .label {
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 21px;
    padding: 0 6px;
    gap: 4px;
}

.ozellik-tablosu-tip2 {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

.sepet-input-wrapper input:focus {
    border: unset;
    outline: none;
    box-shadow: 0px 0px 12px -9px rgb(0, 0, 0);
}

.sepet-input-addon {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 12px;
    pointer-events: none;
}

.basketSubTotal {
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    margin: 12px;
}

    .basketSubTotal span {
        padding: 0 6px;
    }

#tableBasket > tbody > tr > td {
    white-space: nowrap;
    padding: 6px;
    line-height: 2;
    vertical-align: middle;
    border-top: 1px solid #eff4f8;
}

#tableBasket > thead > tr > th {
    padding: 8px 6px;
}

#sepet-butonu {
    padding: 6px 0px;
    margin: auto;
}

.input-icon {
    float: right;
    margin-right: 10px;
    margin-top: -30px;
    position: relative;
}

.caret {
    color: var(--theme-color);
}

.table-justified > tbody > tr > td,
.table-justified > tbody > tr > th,
.table-justified > tfoot > tr > td,
.table-justified > tfoot > tr > th,
.table-justified > thead > tr > td,
.table-justified > thead > tr > th {
    vertical-align: middle !important;
}


.login-input-area {
    border: none;
    outline: none;
    box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px !important;
}


.quantityContainer {
    position: relative;
}

    .quantityContainer #qtyDecrease,
    .quantityContainer #qtyIncrease {
        position: absolute;
        padding: 8px;
        cursor: pointer;
    }

    .quantityContainer #qtyDecrease {
        top: 2px;
        left: 0
    }

    .quantityContainer #qtyIncrease {
        top: 2px;
        right: 0
    }

    .quantityContainer input {
        border-radius: var(--egk-mid-border-radius) var(--egk-mid-border-radius) 0 0;
        padding: 0 22px;
        text-align: center;
        width: 100%;
        border: 1px solid #ccc;
        height: 34px;
        font-size: 14px;
        background-color: transparent;
    }

        .quantityContainer input:focus-visible {
            border-color: var(--theme-color);
            outline: 0;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(94, 109, 179, 0.6);
        }


.searchbox {
    position: relative;
    min-width: 45px;
    width: 0%;
    height: 45px;
    float: right;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 8px;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
    margin-top: 8px;
    border-bottom: solid 3px var(--theme-color);
}

.searchbox-input {
    top: 0;
    right: 0;
    border: 0;
    outline: 0;
    width: 100%;
    height: 45px;
    margin: 0;
    padding: 0px 50px 0px 15px;
}

.searchbox-icon,
.searchbox-submit {
    width: 45px;
    height: 45px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    background-color: white;
}

.searchbox-clear {
    color: #d24636;
    width: 45px;
    height: 4.05em;
    display: block;
    position: absolute;
    top: 2px;
    right: 10%;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    background-color: white;
}

.searchbox-open {
    width: 85%;
}

.searchbox-clear {
    display: none;
}

    .searchbox-icon:hover,
    .searchbox-submit:hover,
    .searchbox-clear:hover {
        color: #d3d3d3;
        background-color: #d3d3d3;
    }

#clear-search-value {
    color: red;
}

.btn {
    border-radius: 4px;
}

.btn-absolute {
    position: absolute;
    top: -15px;
    right: 65px;
}

.btn-default.active {
    border-color: transparent transparent #eff4f8;
    border-bottom: 3px solid var(--theme-color);
    background: 0 0;
    box-shadow: none !important;
    padding: 10px 15px;
    line-height: 1.428571;
}

    .btn-default.active:hover {
        background-color: rgba(0,0,0,0.1);
        border: none;
        border-bottom: 3px solid rgba(0,0,0,0.2);
    }



.full-width-block {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#egk-card-box {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 12px -9px rgb(0, 0, 0);
}

    #egk-card-box > div {
        margin: 10px;
    }

.btn-success-egetamas {
    background-color: var(--theme-color);
    color: #fff;
}

    .btn-success-egetamas:hover {
        background-color: #0c412e;
        color: #fff;
    }

.sorting::after {
    color: #bdbdbd !important;
}

.sorting:hover::after {
    color: #388E3C !important;
}


footer {
    display: flex;
    width: 100%;
    margin: 0;
    background: #fff;
    padding: 12px;
    box-shadow: var(--egk-light-shadow);
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

    footer img {
        max-height: 32px;
    }


.sayac-kutusu {
    background-color: #ffffff;
    border: solid 1px #eaebed;
}

.slick-prev {
    left: 0px;
}

.slick-next {
    right: 0px;
}

    .slick-next:before {
        color: #4f4f4f;
    }

.slick-prev:before {
    color: #4f4f4f;
}

.stockDetailBody .slickGorseller {
    max-width: 400px !important;
}

.stockDetailBody .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 200px;
    min-height: 200px !important;
}

    .stockDetailBody .slick-slide img {
        max-height: 230px !important;
        max-width: 230px !important;
        margin: 0 auto !important;
    }

.noUi-connect {
    background-color: var(--theme-color);
}

.c-white {
    color: #ffffff !important;
}

.c-black {
    color: #000000;
}

.bgm-white {
    background-color: #ffffff;
}

.breadcrumb-item > h4 {
    margin-bottom: 0px !important;
}

.breadcrumb-item > h3 {
    font-size: 16px;
}


.prtm-page-bar {
    border-radius: 8px;
    box-shadow: 0px 0px 12px -9px rgb(0, 0, 0);
}


.content-min-height {
    min-height: 500px;
}

.desktop .prtm-content-wrapper {
    margin-left: 0px;
}

.font-sub-total {
    font-size: 13px !important;
    font-weight: 600;
}

.tab-pane {
    overflow: hidden !important;
}

.toggle-cell-ellipsis {
    padding: 0 8px !important;
    height: 16px;
    border-radius: 4px;
    margin-left: 8px;
}

table.dataTable thead th.text-right, table.dataTable thead td.text-right, table.dataTable tfoot th.text-right, table.dataTable tfoot td.text-right {
    text-align: right;
}

table.dataTable > tbody > tr.child ul.dtr-details > li {
    display: flex;
    align-items: center;
    justify-content: unset;
    width: 100%;
}

table.dataTable > tbody > tr.child span.dtr-title {
    min-width: 150px;
    text-align: left;
}

.dataTable th, .dataTable th > *,
.dataTable td, .dataTable td > * {
    white-space: nowrap !important;
}

    .dataTable td:hover {
        background-color: #e6e8ec;
    }

.dataTable .dataTables_empty:hover {
    background-color: #fff;
}

.dataTables_wrapper .paginate-data .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.next:hover {
    border: unset !important;
}

table.dataTable tbody td,
table.dataTable tfoot th {
    vertical-align: middle;
    line-height: 1.5715;
    padding: 0.75rem 0.5rem;
}

table.dataTable thead th {
    background: #f8fafc;
    font-size: 0.8rem !important;
    line-height: 1.5;
    padding: 0.5rem;
}

table.dataTable tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
}

table.dataTable tbody td:last-child {
    border-radius: 0 8px 8px 0;
}

table.dataTable thead th:first-child {
    border-radius: 8px 0 0 8px;
}

table.dataTable thead th:last-child {
    border-radius: 0 8px 8px 0;
}

table.dataTable tfoot th {
    font-size: 13px !important;
    font-weight: 600;
}

.dataTables_wrapper {
    overflow-x: auto;
    overflow-y: clip;
}

table.dataTable tbody tr.selected td {
    background-color: var(--theme-color);
    color: #fff;
}

    table.dataTable tbody tr.selected td:first-child {
        border-radius: 6px 0 0 6px;
    }

    table.dataTable tbody tr.selected td:last-child {
        border-radius: 0 6px 6px 0;
    }

    table.dataTable tbody tr.selected td:only-child {
        border-radius: 6px;
    }

table.dataTable tbody tr.selected i,
table.dataTable tbody tr.selected svg {
    color: #fff;
}

table.dataTable {
    width: 100% !important;
}

.dataTables_paginate span
table th {
    font-size: 13px !important;
}

.dataTables_length {
    display: flex;
    justify-content: center;
    width: 100%;
}

    .dataTables_length label {
        padding: 8px 24px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 400
    }

    .dataTables_length select {
        padding: 4px 8px;
        border: 1px solid #d3d3d3b0;
        border-radius: 4px;
        margin: 0px 4px;
        text-align: center;
        appearance: auto !important;
        background-color: transparent;
    }

        .dataTables_length select option {
            background-color: #fff !important;
        }

.dataTables_filter {
    box-shadow: 0px 0px 12px -9px rgb(0, 0, 0);
    border-radius: 4px;
    border-left: 2px solid;
    border-left-color: currentcolor;
    border-left-color: currentcolor;
    border-left-color: var(--theme-color);
    overflow: hidden;
    transition: all 0.5s ease;
}

    .dataTables_filter label {
        font-weight: 400;
        margin-bottom: 0
    }

    .dataTables_filter input {
        height: 46px;
        border: unset !important;
        transition: all .2s ease;
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB2ZXJzaW9uPSIxLjEiICAgaWQ9InN2ZzQ0ODUiICAgdmlld0JveD0iMCAwIDIxLjk5OTk5OSAyMS45OTk5OTkiICAgaGVpZ2h0PSIyMiIgICB3aWR0aD0iMjIiPiAgPGRlZnMgICAgIGlkPSJkZWZzNDQ4NyIgLz4gIDxtZXRhZGF0YSAgICAgaWQ9Im1ldGFkYXRhNDQ5MCI+ICAgIDxyZGY6UkRGPiAgICAgIDxjYzpXb3JrICAgICAgICAgcmRmOmFib3V0PSIiPiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+ICAgICAgICA8ZGM6dHlwZSAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4gICAgICAgIDxkYzp0aXRsZT48L2RjOnRpdGxlPiAgICAgIDwvY2M6V29yaz4gICAgPC9yZGY6UkRGPiAgPC9tZXRhZGF0YT4gIDxnICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLC0xMDMwLjM2MjIpIiAgICAgaWQ9ImxheWVyMSI+ICAgIDxnICAgICAgIHN0eWxlPSJvcGFjaXR5OjAuNSIgICAgICAgaWQ9ImcxNyIgICAgICAgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjAuNCw4NjYuMjQxMzQpIj4gICAgICA8cGF0aCAgICAgICAgIGlkPSJwYXRoMTkiICAgICAgICAgZD0ibSAtNTAuNSwxNzkuMSBjIC0yLjcsMCAtNC45LC0yLjIgLTQuOSwtNC45IDAsLTIuNyAyLjIsLTQuOSA0LjksLTQuOSAyLjcsMCA0LjksMi4yIDQuOSw0LjkgMCwyLjcgLTIuMiw0LjkgLTQuOSw0LjkgeiBtIDAsLTguOCBjIC0yLjIsMCAtMy45LDEuNyAtMy45LDMuOSAwLDIuMiAxLjcsMy45IDMuOSwzLjkgMi4yLDAgMy45LC0xLjcgMy45LC0zLjkgMCwtMi4yIC0xLjcsLTMuOSAtMy45LC0zLjkgeiIgICAgICAgICBjbGFzcz0ic3Q0IiAvPiAgICAgIDxyZWN0ICAgICAgICAgaWQ9InJlY3QyMSIgICAgICAgICBoZWlnaHQ9IjUiICAgICAgICAgd2lkdGg9IjAuODk5OTk5OTgiICAgICAgICAgY2xhc3M9InN0NCIgICAgICAgICB0cmFuc2Zvcm09Im1hdHJpeCgwLjY5NjQsLTAuNzE3NiwwLjcxNzYsMC42OTY0LC0xNDIuMzkzOCwyMS41MDE1KSIgICAgICAgICB5PSIxNzYuNjAwMDEiICAgICAgICAgeD0iLTQ2LjIwMDAwMSIgLz4gICAgPC9nPiAgPC9nPjwvc3ZnPg==);
        background-repeat: no-repeat;
        background-color: #fff;
        background-position: 0 12px !important;
        padding: 0 28px !important;
        width: 240px;
    }

table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled,
table.dataTable thead > tr > td.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting_asc_disabled,
table.dataTable thead > tr > td.sorting_desc_disabled {
    cursor: pointer;
    position: relative;
    padding-right: 26px;
}

    table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:after,
    table.dataTable thead > tr > td.sorting:before,
    table.dataTable thead > tr > td.sorting:after,
    table.dataTable thead > tr > td.sorting_asc:before,
    table.dataTable thead > tr > td.sorting_asc:after,
    table.dataTable thead > tr > td.sorting_desc:before,
    table.dataTable thead > tr > td.sorting_desc:after,
    table.dataTable thead > tr > td.sorting_asc_disabled:before,
    table.dataTable thead > tr > td.sorting_asc_disabled:after,
    table.dataTable thead > tr > td.sorting_desc_disabled:before,
    table.dataTable thead > tr > td.sorting_desc_disabled:after {
        position: absolute;
        display: block;
        opacity: 0.125;
        right: 10px;
        line-height: 9px;
        font-size: 0.8em;
    }

    table.dataTable thead > tr > th.sorting:before, table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:before, table.dataTable thead > tr > th.sorting_asc_disabled:before, table.dataTable thead > tr > th.sorting_desc_disabled:before,
    table.dataTable thead > tr > td.sorting:before,
    table.dataTable thead > tr > td.sorting_asc:before,
    table.dataTable thead > tr > td.sorting_desc:before,
    table.dataTable thead > tr > td.sorting_asc_disabled:before,
    table.dataTable thead > tr > td.sorting_desc_disabled:before {
        bottom: 50%;
        content: "▲";
        content: "▲"/"";
    }

    table.dataTable thead > tr > th.sorting:after, table.dataTable thead > tr > th.sorting_asc:after, table.dataTable thead > tr > th.sorting_desc:after, table.dataTable thead > tr > th.sorting_asc_disabled:after, table.dataTable thead > tr > th.sorting_desc_disabled:after,
    table.dataTable thead > tr > td.sorting:after,
    table.dataTable thead > tr > td.sorting_asc:after,
    table.dataTable thead > tr > td.sorting_desc:after,
    table.dataTable thead > tr > td.sorting_asc_disabled:after,
    table.dataTable thead > tr > td.sorting_desc_disabled:after {
        top: 50%;
        content: "▼";
        content: "▼"/"";
    }

    table.dataTable thead > tr > th.sorting_asc:before, table.dataTable thead > tr > th.sorting_desc:after,
    table.dataTable thead > tr > td.sorting_asc:before,
    table.dataTable thead > tr > td.sorting_desc:after {
        opacity: 0.6;
    }

    table.dataTable thead > tr > th.sorting_desc_disabled:after, table.dataTable thead > tr > th.sorting_asc_disabled:before,
    table.dataTable thead > tr > td.sorting_desc_disabled:after,
    table.dataTable thead > tr > td.sorting_asc_disabled:before {
        display: none;
    }

table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
    outline: none;
}


.input-group-btn .btn {
    border: solid 1px #c1c8d0;
    height: 34px;
}


.input-group-addon {
    color: #414658;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
}

.input-group-btn > button {
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
}

.credit-card-icons i,
.credit-card-icons svg {
    font-size: 48px;
}

.credit-card-icons .fa-brands.fa-cc-amex {
    color: #007bc1;
}

.credit-card-icons .fa-brands.fa-cc-mastercard {
    color: #0a3a82;
}

.credit-card-icons .fa-brands.fa-cc-visa {
    color: #0157a2;
}


/* Datatables */
.dt-buttons {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    border-radius: var(--egk-mid-border-radius);
    margin: 12px 0;
    border: 1px solid #ececec;
}

    .dt-buttons [role="menu"] {
        display: flex;
        flex-wrap: wrap;
        gap: 3px;
    }

button.dt-button:hover,
div.dt-button:hover,
a.dt-button:hover {
    background-color: #e1e1e1 !important;
    border: none !important;
    color: var(--theme-color) !important;
    transition: all ease 0.2s;
}

a.dt-button, button.dt-button, div.dt-button {
    color: var(--theme-color);
    font-size: 14px !important;
    border-radius: 4px;
    -moz-user-select: none;
    border: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    padding: 6px 12px;
}

.dt-button-background {
    display: none !important;
}

.dt-button-down-arrow {
    font-size: 10px;
    margin: auto;
    margin-left: auto;
    margin-left: 8px;
}

div.dt-button-collection {
    position: absolute;
    background-color: #fff;
    box-shadow: var(--egk-light-shadow);
    left: unset !important;
    width: 360px !important;
    padding: 0 15px 15px 15px;
    border-radius: 6px;
    z-index: 9;
    top: 36px !important;
}

    div.dt-button-collection h3 {
        color: var(--text-primary-color);
        margin: 8px 0;
        border-bottom: 1px solid rgba(150, 150, 150, 0.5);
        font-size: 14px;
        padding: 0.5em 0;
        width: 100%;
    }

    div.dt-button-collection .dt-button {
        border: none !important;
        position: relative;
        background-color: #fff !important;
        color: var(--text-primary-color) !important;
        left: 0;
        right: 0;
        width: 100%;
        display: block;
        float: none;
        background: none;
        margin: 0;
        padding: .5em .5em;
        border: none;
        text-align: left;
        cursor: pointer;
        color: inherit;
        display: inline-block;
        width: 32%;
        font-size: 12px !important
    }

        div.dt-button-collection .dt-button span {
            color: var(--text-primary-color) !important;
            font-size: 14px !important;
        }

.dt-button-collection button.dt-button:hover, .dt-button-collection div.dt-button:hover, .dt-button-collection a.dt-button:hover {
    background-color: #f0f0f0 !important;
}

a.dt-button > span, button.dt-button > span, div.dt-button > span {
    color: var(--text-primary-color) !important;
}

div.dt-button-collection .dt-button-active:after {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 1em;
    display: inline-block;
    content: "✓";
    color: inherit;
}

.dataTables_info {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding: 28px 0;
    text-align: center;
}

table.dataTable tbody tr.selected > td:hover {
    background-color: var(--theme-color) !important;
    opacity: 0.9;
}

table.dataTable .selected .print-container * {
    border-color: #fff;
}

table .dataTables_empty {
    text-align: center;
    padding: 24px 0 !important;
}

@keyframes spinner-wedges {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.spinner-wedges > div > div {
    transform-origin: 100px 100px;
    animation: spinner-wedges 3.0303030303030303s linear infinite;
    opacity: 0.8
}

    .spinner-wedges > div > div > div {
        position: absolute;
        left: 30px;
        top: 30px;
        width: 70px;
        height: 70px;
        border-radius: 70px 0 0 0;
        transform-origin: 100px 100px
    }

.spinner-wedges > div div:nth-child(1) {
    animation-duration: 0.7575757575757576s
}

    .spinner-wedges > div div:nth-child(1) > div {
        background: #e15b64;
        transform: rotate(0deg);
    }

.spinner-wedges > div div:nth-child(2) {
    animation-duration: 1.0101010101010102s
}

    .spinner-wedges > div div:nth-child(2) > div {
        background: #f47e60;
        transform: rotate(0deg);
    }

.spinner-wedges > div div:nth-child(3) {
    animation-duration: 1.5151515151515151s
}

    .spinner-wedges > div div:nth-child(3) > div {
        background: #f8b26a;
        transform: rotate(0deg);
    }

.spinner-wedges > div div:nth-child(4) {
    animation-duration: 3.0303030303030303s
}

    .spinner-wedges > div div:nth-child(4) > div {
        background: #abbd81;
        transform: rotate(0deg);
    }

.loading-animation {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
    background: transparent;
}

.spinner-wedges {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0; /* see note above */
}

.dt-button svg {
    margin-right: 4px;
    height: 1.2em;
}

.spinner-wedges div {
    box-sizing: content-box;
}

@keyframes loading {
    to {
        background-position: 315px 0, 0 0, 0 190px, 50px 195px;
    }
}




/*Autocomplete*/

.ui-autocomplete {
    max-height: 400px !important;
    overflow-y: auto !important;
    list-style: none;
    background: #fff;
    border-radius: var(--egk-mid-border-radius);
    z-index: 999999999999;
    margin-top: 8px;
}


    .ui-autocomplete .ui-state-active {
        border: 1px solid var(--theme-color);
        background: var(--theme-color) !important;
        font-weight: 400;
        color: #fff;
    }

    .ui-autocomplete li::marker {
        display: none;
    }
/*Autocomplete Bitiş*/
/* Datepicker */
.ui-datepicker {
    width: 280px;
    /*    padding: 12px;
*/ background: #2B323B;
    border-radius: var(--egk-mid-border-radius);
    box-shadow: var(--egk-light-shadow);
    z-index: 99999999999 !important;
}

.ui-datepicker-buttonpane {
    justify-content: flex-end;
    border: none;
    margin: 12px 0;
}

    .ui-datepicker-buttonpane .ui-datepicker-close {
        display: none;
    }



.ui-datepicker.active {
    opacity: 1;
}

.ui-datepicker-header {
    height: 40px;
    padding: 3px;
    margin-bottom: 10px;
    background-color: transparent;
    border: 1px solid transparent;
}

    .ui-datepicker-header .ui-datepicker-title {
        text-align: center;
        line-height: 34px;
    }

.ui-datepicker-month,
.ui-datepicker-year {
    -webkit-appearance: none;
    border: 0;
    background: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0 1px;
}

.ui-datepicker-prev, .ui-datepicker-next {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 34px;
    cursor: pointer;
    text-indent: 9999px;
    overflow: hidden;
    border-radius: 3px;
}

    .ui-datepicker-prev:hover, .ui-datepicker-next:hover {
        background: #444B56;
    }

.ui-datepicker-prev {
    float: left;
}

    .ui-datepicker-prev:after {
        transform: rotate(45deg);
        margin-left: 15px;
    }

.ui-datepicker-next {
    float: right;
}

    .ui-datepicker-next:after {
        transform: rotate(-135deg);
        margin-left: 13px;
    }

    .ui-datepicker-prev:after,
    .ui-datepicker-next:after {
        content: "";
        position: absolute;
        display: block;
        width: 6px;
        height: 6px;
        border-left: 2px solid #C2C7D1;
        border-bottom: 2px solid #C2C7D1;
        pointer-events: none;
        top: 6px;
        right: 6px;
    }

.ui-datepicker-calendar {
    width: 100%;
    text-align: center;
}

    .ui-datepicker-calendar thead tr th {
        width: 40px;
        padding-bottom: 6px;
    }

        .ui-datepicker-calendar thead tr th span {
            display: block;
            width: 100%;
            padding: 0;
            color: #8D9298;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            text-align: center;
        }

    .ui-datepicker-calendar tbody tr td {
        padding-right: 3px;
        padding-bottom: 3px;
    }

        .ui-datepicker-calendar tbody tr td:first-child {
            padding-left: 3px;
        }

.ui-state-default {
    display: block;
    text-decoration: none;
    color: white;
    height: 34px;
    line-height: 34px;
    border-radius: 3px;
    font-size: 12px;
    color: #fff !important;
    border: 1px solid transparent !important;
    background: transparent !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90 !important;
    color: #777620 !important;
}

.ui-state-default:hover {
    background: #444B54;
    text-decoration: none;
    color: white;
}

.ui-state-highlight {
    color: #FED615;
}

.ui-state-active:not(.ui-state-highlight) {
    color: white;
    background: #5D9CF5;
}

.ui-datepicker-unselectable .ui-state-default {
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}
/* Datepicker End */


table.dataTable.no-footer {
    border-bottom: unset !important;
}

.dataTables_processing {
    background-color: #00ca95;
    color: #ffffff;
    border-radius: 50px;
}



.dataTables_paginate .disabled {
    cursor: not-allowed;
    background-color: #f9f7f7 !important;
    color: #938888;
}

    .dataTables_paginate .disabled:hover {
        cursor: not-allowed;
        background-color: #f9f7f7 !important;
        color: #938888 !important;
    }

.paging_simple_numbers {
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    margin: 15px 0px 20px 0px !important;
    border-radius: 0px !important;
}

table.dataTable > tfoot > tr > th, table.dataTable > tfoot > tr > td {
    border-top: 1px solid #eff4f8;
}



.dataTables_wrapper .dataTables_paginate {
    clear: both !important;
    text-align: unset !important;
    padding: 10px 20px;
    border: none;
}

.pagination-container {
    text-align: center;
}

.paginate-button, .pagination > li > a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    text-align: center;
    display: inline-block;
    border-radius: 100% !important;
    margin: 0px 4px;
    cursor: pointer;
}

    .paginate-button:hover {
        background-color: #dedede
    }

    .paginate-button:focus {
        outline: none;
        background-color: #dedede;
        text-decoration: none;
    }

    .paginate-button:focus-visible {
        outline: var(--theme-color) auto 1px;
    }

    .paginate-button.current {
        background-color: var(--theme-color);
        color: #fff;
    }




.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination-button {
    background-color: #bec6cf;
    color: #262424;
    border: none;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    width: 35px;
    text-align: center;
}

.pagination-number:hover {
    box-shadow: var(--egk-light-shadow);
    cursor: pointer;
}

.pagination-number {
    border: none;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50%;
    text-decoration: none;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    width: 35px;
    text-align: center;
    padding: 0;
}

    .pagination-number.active {
        background-color: var(--theme-color);
        color: #fff;
    }

#pagination-numbers span {
    margin: 0 5px
}

.dataTables_paginate .ellipsis, .PagedList-ellipses {
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    margin: 0px 4px;
    cursor: pointer;
}

    .dataTables_paginate .ellipsis:hover, .PagedList-ellipses:hover {
        background-color: transparent !important;
        color: var(--text-primary-color) !important;
    }

.pagination > .disabled > a {
    color: var(--text-primary-color) !important;
}

.table-filters > div {
    padding-left: 0;
    padding-right: 0;
}


div.not-full > input[id$="-selectized"] {
    min-width: 286px !important;
}

.has-items > .item {
    padding-right: 20px;
}

div[id*='_DataTableExport_wrapper'] {
    display: none !important;
}

.prtm-header .nav .navbar-nav > li > ul > li:hover > a > span {
    background: var(--theme-color) !important;
    color: #fff !important;
}


.blur {
    filter: blur(4px);
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
}

.stockListPartialField {
    transition: all 0.5s ease;
}

.bg-alert {
    color: #414658;
    background-color: #ccdce8;
    border-color: #c4d7e5;
}


.panel-heading .panel-title,
.panel-heading svg,
.panel-heading i {
    padding: 12px 12px;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--text-primary-color) !important;
}

.filter-body {
    padding: 0;
}
/* Panel Header */
.egk-page-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 24px;
}

    .egk-page-title-container .egk-page-title {
        font-weight: 500;
        font-size: 18px;
    }

        .egk-page-title-container .egk-page-title small {
            font-weight: 400;
            font-size: 12px;
        }

@media only screen and (max-width: 746px) {
    .egk-page-title-container {
        justify-content: center;
    }
}
/* Panel Header */


/* Progress & Skill Bar */
.progress-wrapper {
    width: 100%;
    margin-bottom: 12px;
}


.progress-name {
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0 8px 0;
}

.progress-bar-horizontal {
    display: flex;
    /*justify-content: center;*/
    height: 20px;
    background: #cacaca;
    border-radius: 8px;
}

.progress-per {
    height: 20px;
    background-color: var(--theme-color);
    border-radius: 6px;
    width: 0;
    transition: 1s linear;
    position: relative;
}

    .progress-per::before {
        content: attr(per);
        position: absolute;
        padding: 4px 6px;
        background-color: var(--theme-color);
        color: #fff;
        font-size: 14px;
        border-radius: 4px;
        top: -38px;
        right: 0;
        transform: translateX(50%);
    }

    .progress-per::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: var(--theme-color);
        border-radius: 2px;
        top: -16px;
        right: 0;
        transform: translateX(50%) rotate(45deg);
    }
/* Progress & Skill Bar */


/* Table Customization */
thead tr th {
    font-size: 14px !important;
    font-weight: 500 !important;
    vertical-align: middle !important;
}
/* Table Customization */
.egk-panel {
    border-top: solid 2px var(--theme-color);
    border-radius: var(--egk-mid-border-radius);
    box-shadow: var(--egk-light-shadow);
    padding: 12px;
    background: #fff;
    margin-bottom: 24px;
    overflow: hidden;
}

.badge-egk-primary {
    background-color: #F1F3F4;
    border: solid 1px #F1F3F4;
    color: #444444;
    cursor: pointer;
}

.thumb-mid {
    width: 100%;
    padding: 10px 0px;
}

.m-b-16 {
    margin-bottom: 16px !important;
}

.stok-listesi-filters {
    padding: 6px 4px;
    margin-bottom: 10px;
    border-radius: 8px;
}

    .stok-listesi-filters .ddl-add-on {
        position: absolute;
        top: 15px;
        right: 34px;
    }

#sube-ddl-ciro {
    width: auto !important;
    padding: 8px;
}
/*.stok-listesi-filters {
    background: repeating-linear-gradient( -45deg, transparent 0, transparent 25%, dodgerblue 0, dodgerblue 50% ), repeating-linear-gradient( 45deg, transparent 0, transparent 25%, tomato 0, tomato 50% ), repeating-linear-gradient( transparent 0, transparent 25%, gold 0, gold 50% ), white;
    background-blend-mode: multiply;
    background-size: 100px 100px;
}*/
.stok-listesi-filters {
    background: linear-gradient(135deg, #708090 21px, #d9ecff 22px, #d9ecff 24px, transparent 24px, transparent 67px, #d9ecff 67px, #d9ecff 69px, transparent 69px), linear-gradient(225deg, #708090 21px, #d9ecff 22px, #d9ecff 24px, transparent 24px, transparent 67px, #d9ecff 67px, #d9ecff 69px, transparent 69px)0 64px;
    background-color: #708090;
    background-size: 150px 128px;
    /*    background-size: 64px 128px;
*/;
}

.stok-ara {
    width: 100%;
    display: flex;
    box-shadow: 0px 0px 12px -9px rgb(0, 0, 0);
    border-radius: 6px;
    transition: all 0.5s ease;
    margin: auto;
}

#searchInput {
    padding-left: 10px;
}

.stok-ara:focus-within {
    box-shadow: 0px 0px 20px #444444;
}

.stok-ara .txt-aranacak-ifade {
    width: 100%;
    height: 44px;
    border: unset;
    border-radius: 6px;
}

    .stok-ara .txt-aranacak-ifade:focus {
        outline: none;
    }

    .stok-ara .txt-aranacak-ifade::placeholder {
        color: #9e9e9e;
        opacity: 1;
    }

    .stok-ara .txt-aranacak-ifade:-ms-input-placeholder {
        color: #9e9e9e;
    }

    .stok-ara .txt-aranacak-ifade::-ms-input-placeholder {
        color: #9e9e9e;
    }

.stok-ara .btn-temizle {
    width: 56px;
    color: #e8e8e8;
    background-color: #ffffff;
    border: unset;
    outline: none;
}

.btn-ara {
    width: 60px;
    color: #929292;
    background-color: #ffffff;
    border: unset;
    outline: none;
    border-radius: 0 var(--egk-mid-border-radius) var(--egk-mid-border-radius) 0;
}

    .btn-ara:hover {
        color: #ffffff;
        background-color: var(--theme-color);
    }

.stok-ara .btn-temizle:hover {
    color: red;
}

.btn-stok-filtre {
    padding: 0px !important;
}

    .btn-stok-filtre:hover svg.svg-inline--fa.fa-eye {
        height: 1.5em;
        transition: all 1s ease;
    }

    .btn-stok-filtre:hover > i {
        color: #ffffff;
    }

.stock-filter-tag > button {
    width: fit-content;
    height: unset;
    padding: 6px;
    margin-top: 10px;
    box-shadow: none;
    border-radius: 6px;
}

    .stock-filter-tag > button:hover {
        background-color: #d24636;
    }

.remove-tag {
    padding-left: 10px;
}


body.swal2-toast-shown .swal2-container {
    width: auto !important;
}

.swal2-popup.swal2-toast .swal2-html-container {
    font-size: 14px !important;
}

.swal2-popup {
    font-size: 16px !important;
}

.modal {
    z-index: 1050 !important;
}

.cari-ara {
    margin: 0px 0px 24px 0px !important;
    width: 100%;
    display: flex;
    box-shadow: var(--egk-light-shadow);
    border-radius: var(--egk-mid-border-radius);
    border-left: 2px solid;
    border-left-color: var(--theme-color);
    overflow: visible;
    transition: all 0.5s ease;
}

    .cari-ara:focus-within {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    }

        .cari-ara:focus-within .fa-magnifying-glass {
            transform: rotate(360deg);
            transition: all 0.4s ease;
        }


    .cari-ara .txt-aranacak-ifade {
        width: 100%;
        height: 46px;
        border: unset;
        background-color: #fff;
    }

        .cari-ara .txt-aranacak-ifade option {
            width: 120%;
        }

        .cari-ara .txt-aranacak-ifade:focus {
            outline: none;
        }

        .cari-ara .txt-aranacak-ifade::placeholder {
            color: #9e9e9e;
            opacity: 1;
        }

        .cari-ara .txt-aranacak-ifade:-ms-input-placeholder {
            color: #9e9e9e;
        }

        .cari-ara .txt-aranacak-ifade::-ms-input-placeholder {
            color: #9e9e9e;
        }

#back-top {
    display: none;
}

.cari-ara .btn-temizle {
    width: 56px;
    color: #5f63688f;
    border: unset;
    outline: none;
    border-radius: 0px var(--egk-mid-border-radius) var(--egk-mid-border-radius) 0px;
    background-color: #fff;
}

    .cari-ara .btn-temizle:hover {
        color: #ff7474;
        background-color: #f2f2f2;
    }

.stok-ara .btn-ikon, .cari-ara .btn-ikon {
    background-color: #fff;
    pointer-events: none;
    width: 32px;
    padding-left: 8px;
    color: #9e9e9e;
    border: unset;
    border-radius: var(--egk-mid-border-radius) 0px 0px var(--egk-mid-border-radius);
    outline: none;
}
/*.CariBilgileriYatay {
    display:none;
}
.CariBilgileriYatay:has(td) {
    display: block;
}*/
/** Custom Select **/
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
    width: 100%;
}

    .custom-select-wrapper select {
        display: none;
    }

.custom-select {
    position: relative;
    padding: 6px 0px 6px 6px;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 34px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

    .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px;
        height: 10px;
        top: 50%;
        right: 25px;
        border-bottom: 1px solid var(--text-primary-color);
        border-right: 1px solid var(--text-primary-color);
        transform: rotate(45deg) translateY(-88%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
        font-size: 18px;
    }

.custom-options::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 10px;
}

.custom-select.opened .custom-select-trigger:after {
    transform: rotate(226deg) translateY(-62%);
}

.custom-options {
    position: absolute;
    overflow: auto;
    display: block;
    z-index: 99;
    top: 100%;
    max-height: 320px;
    scrollbar-color: var(--theme-color) #d3d3d373;
    left: -6px;
    right: 0;
    min-width: 100%;
    margin-top: 4px;
    border-radius: 8px;
    box-sizing: border-box;
    background: #fff;
    transition: all .4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    box-shadow: var(--egk-light-shadow);
    padding: 8px;
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options:before {
    position: absolute;
    display: none;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b59a9a82;
    border-left: 1px solid #b5b5b5;
    background: #fff;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}

.option-hover:before {
    background: #f9f9f9;
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-primary-color);
    cursor: pointer;
    transition: all .4s ease-in-out;
}

    .custom-option:not(:last-child) {
        border-bottom: 1px solid #b59a9a82;
    }

    .custom-option:hover {
        background-color: var(--theme-color) !important;
        color: #fff;
    }

    .custom-option:hover,
    .custom-option.selection {
        background: #f9f9f9;
    }
/*.stok-listesi-header:focus-within + .stockListPartialField {
    opacity: .3;
}*/
.stok-listesi-header {
    background-color: #808b9e;
    margin-bottom: 10px;
    padding: 10px;
}

/*.stok-siralama-alani {
    width: 350px;
    height: 36px !important;
    display: flex;
}*/
.btn-show-hide {
    background-color: white;
    height: 100%;
    width: 100%;
}

.stok-siralama {
    width: 100%;
    margin-left: 0px;
    padding-left: 7px;
    padding-right: 7px;
    height: 36px;
    box-shadow: 0px 0px 12px -9px rgb(0, 0, 0);
    /*    box-shadow: 4px 3px 4px 2px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12);
*/ border-left: solid 3px;
    border-left-color: var(--theme-color);
    border-radius: 8px;
}


.stock-filter-btn {
    margin: 10px 0px 20px 0px;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.filter-group {
    padding-top: 5px;
    padding-bottom: 5px;
}

.filter-dots {
    color: #708090;
}


.show-in-stock {
    margin-top: 5%;
}

.to-top, .to-top:visited, .to-top:hover {
    background-color: #333333;
    border-radius: 8px;
    bottom: 70px;
    color: #ffffff;
    font-size: 22px;
    border: unset;
}

    .to-top:hover {
        background: #000000;
        color: #ffffff;
    }

#kenardaIslemYapiliyor {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    /*min-height: 200px;*/
    width: 100%;
    background-color: #1e1e1e5e;
    z-index: 2;
    border-radius: var(--egk-mid-border-radius);
}

    #kenardaIslemYapiliyor i,
    #kenardaIslemYapiliyor svg {
        color: #fff;
    }

#sepet-kenarda, #favori-kenarda {
    position: fixed;
    background-color: #fff;
    top: 73px;
    right: -402px;
    width: 375px;
    padding: 0;
    z-index: 99;
    box-shadow: 0px 0px 10px -4px rgb(0, 0, 0);
    transition: all .25s ease-in-out;
    border-radius: 8px;
}

    #sepet-kenarda.acik, #favori-kenarda.acik {
        right: 4px;
    }

.sepet-sticked#sepet-kenarda {
    top: 51px !important;
    transition: all ease-in-out 0.2s !important;
}

.skeleton-loader {
    display: inline-block;
    height: 1em;
    position: relative;
    overflow: hidden;
    background-color: #DDDBDD;
    width: 100%;
    border-radius: 6px;
}

    .skeleton-loader::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: translateX(-100%);
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
        -webkit-animation: shimmer 5s infinite;
        animation: shimmer 5s infinite;
        content: "";
    }

.stock-card-headline {
    font-size: 1.25em;
    font-weight: bold;
    margin-top: 6px;
}

.stock-card-meta {
    font-size: 0.85em;
    color: #6b6b6b;
    margin-top: auto;
}

.stock-card {
    display: flex;
    width: 100%;
}

.stock-card-body {
    flex-grow: 1;
    margin-left: 1em;
}

.spacing > * + * {
    display: block;
}

.spacing-large > * + * {
    margin-top: 2em;
}

@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}


.basket-empty {
    padding: 28px 12px;
    font-size: 14px;
    width: 100%;
}


.fa-cart-circle-plus .fa-secondary {
    opacity: 1;
}

.accordion-toggle::after {
    font-family: FontAwesome;
    right: 20px;
    top: 12px;
    font-size: 16px;
    font-weight: 800;
    position: absolute;
}

.filtre-container {
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 0;
    margin: 0;
    position: relative;
    list-style-type: none;
}
/*#cari-info-cards > div:not(:first-child) {
    padding-left:5px !important;
}
#cari-info-cards > div:not(:last-child) {
    padding-right: 5px !important;
}
*/


.StockDetail .prtm-block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .StockDetail .prtm-block-title span:first-child {
        max-width: 75%;
    }

.StockDetail .StockDetailCode {
    margin-right: 30px;
}

.StockDetail .close {
    font-weight: 400;
    font-size: 36px;
}

.search-containers {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: flex-start;
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
}

.input-containers {
    display: flex;
    width: 74%
}

.input-groups {
    min-width: 20px;
    padding: 8px;
    padding-left: 12px;
    margin-top: 5px;
    height: 35px;
    order: 0;
    align-self: auto;
    border-radius: var(--egk-mid-border-radius) !important;
    border: none;
    box-shadow: var(--egk-light-shadow);
    width: 100%;
}

#input-groups-btn {
    padding: 8px 16px;
    min-height: 44px;
    min-width: 10px;
    color: var(--theme-color);
    border: none;
    border-radius: 0px;
    order: 4;
    flex: 0 1 auto;
    align-self: auto;
    border-radius: 50%;
    background: none;
}

    #input-groups-btn:hover {
        box-shadow: var(--egk-light-shadow);
    }

.input-groups:focus-visible {
    outline: none;
    box-shadow: 0px 0px 7px -3px rgb(0, 0, 0);
}

.search {
    flex: 2 1 auto;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 44px;
}

.toggle, .toggle:before, .slot__label, .curtain, .search-id-2 {
    transition-property: background-color, transform, visibility;
    transition-duration: 0.25s;
    transition-timing-function: ease-in, cubic-bezier(0.6,0.2,0.4,1.5), linear;
}

    .toggle:before, .slot, .slot__label {
        display: block;
    }

    .toggle:before, .curtain {
        position: absolute;
    }

    .toggle:checked, .curtain {
        background-color: var(--theme-color);
    }

    .toggle:focus {
        outline: transparent;
    }

.toggle {
    border-radius: 1em;
    box-shadow: 0px 0px 1px 0px var(--theme-color);
    cursor: pointer;
    position: relative;
    margin-right: 0.25em;
    width: 4em;
    height: 2em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    margin-top: 10px !important;
}

    .toggle:before {
        background: var(--theme-color);
        border-radius: 50%;
        content: "";
        top: 0.3em;
        left: 0.3em;
        width: 1.4em;
        height: 1.4em;
    }

    .toggle:checked:before {
        transform: translateX(2em);
        background: white;
    }

    .toggle:checked ~ .slot .slot__label, .slot__label:nth-child(2) {
        transform: translateY(-50%) scaleY(0);
    }

        .toggle:checked ~ .slot .slot__label:nth-child(2) {
            transform: translateY(-100%) scaleY(1);
        }

    .toggle:checked ~ .curtain {
        transform: scaleX(1);
    }

.slot {
    padding-left: 10px !important;
    padding-right: 15px !important;
    margin-top: 13px !important;
    font-size: 1.4em;
    line-height: 1.1;
    overflow: hidden;
    height: 1em;
    font-weight: 400;
}

.slot__label {
    transform-origin: 50% 0;
}

    .slot__label:nth-child(2) {
        transform-origin: 50% 100%;
    }

.search-id-2, .searchbox-clear-multiple2 {
    display: none;
}

.searchbox-clear-multiple, .searchbox-clear-multiple2 {
    position: relative;
    right: 30px;
    border: none;
    background: none;
    outline: none;
    font-size: 10px;
    top: 2px;
}

/*=============== Back to top arrow css ==============*/

.to-top,
.to-top:visited,
.to-top:hover {
    border-radius: 5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    height: 46px;
    width: 46px;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    right: 32px;
    z-index: 4;
    color: var(--theme-color);
    background-color: var(--theme-color);
    border-radius: 8px;
    bottom: 76px;
    color: #fff;
    font-size: 22px;
    border: unset;
}

    .to-top:hover {
        background: var(--theme-color);
        border-width: 0.125rem;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .to-top.scrolled,
    .to-top.scrolled:visited,
    .to-top.scrolled:hover {
        opacity: 1;
    }

nav .container-fluid {
    display: flex;
    align-items: center;
    height: 70px;
    transition: all ease-in-out 0.2s;
}

nav .svg-inline--fa.fa- {
    display: none;
}

.navbar-nav .svg-inline--fa {
    font-size: 16px;
    color: var(--theme-color);
    transition: all ease-in-out 0.2s;
}

.navbar-nav span {
    margin: 0px 5px;
}

.navbar-nav .fa-angle-down {
    height: 12px;
}

a [aria-expanded="true"] .fa-angle-down {
    transition: all 0.3s ease;
    transform: rotate(180deg);
}

[aria-expanded="true"] .fa-angle-down::before {
    content: url(/assets/plugins/fontawesome/svgs/duotone/angle-up.svg);
    width: 20px;
}

#cari-info-cards {
    padding-right: 0px;
}

.filtre-container > li {
    display: block;
}

.pad-all-md, .custom-accordions .panel-heading {
    padding: 10px;
}

.label {
    font-size: 100%;
}

.label-filtre {
    font-weight: normal;
    cursor: pointer;
}

    .label-filtre:hover > i {
        color: var(--theme-color);
    }

    .label-filtre:hover > button {
        text-decoration: none;
    }

.filtre-ara {
    border-radius: var(--egk-mid-border-radius) !important;
}

#remove-filters {
    padding-right: 10px;
    color: #fff;
    border-radius: 8px;
}

.remove-filters-btn {
    padding: 0px 10px !important;
    margin: 15px;
    border-radius: 8px;
}

.sidebar-menu > li > a {
    padding: 12px 0px;
    font-weight: 500;
    font-size: 12px;
    color: var(--text-primary-color);
    text-decoration: none;
    text-align: left;
    border-radius: 4px !important;
    border-bottom: 1px solid #d3d7dba3;
    border-left: none;
}




.sidebar-nav .svg-inline--fa {
    min-width: 32px;
    font-size: 16px;
    color: var(--theme-color);
}

.sidebar-menu > li > .sub-menu .sub-menu > li > a {
    padding-left: 6em;
}


.sidebar-menu .has-children .in {
    background-color: #eaeaea96;
    border-radius: 8px;
}

    .sidebar-menu .has-children .in > .has-children > ul {
        padding: 0px 24px;
    }

#mobile-sidebar .has-children > a:after {
    right: 16px;
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
}

.sidebar-menu {
    margin: 12px 0px 0px 0px;
}

.prtm-sidebar .sub-menu li a {
    font-size: 12px;
    color: var(--text-primary-color);
}

.prtm-sidebar .prtm-sidebar-menu .sub-menu li a {
    background-color: white !important;
}

    .prtm-sidebar .prtm-sidebar-menu .sub-menu li a:hover {
        background-color: var(--theme-color) !important;
        color: #fff !important;
    }


#input-search {
    padding-left: 10px;
}

#nav-icon {
    width: 30px;
    height: 25px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

    #nav-icon span {
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: var(--theme-color);
        ;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

        #nav-icon span:nth-child(1) {
            top: 0px;
        }

        #nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
            top: 10px;
        }

        #nav-icon span:nth-child(4) {
            top: 21px;
        }

    #nav-icon.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

    #nav-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #nav-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #nav-icon.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

.sub-menu svg {
    display: none;
}

.sub-menu {
    padding: 0px;
    font-weight: 500;
    font-size: 12px;
    color: var(--text-primary-color);
}

    .sub-menu li a {
        border-radius: 4px !important;
        border-bottom: 1px solid #d3d7dba3;
        padding: 12px !important;
    }

    .sub-menu li:last-child a {
        border-radius: 4px !important;
        border-bottom: none;
    }

.prtm-header .nav.navbar-nav:first-child {
    padding-left: 10px !important;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 8px 12px;
}

#searchButton > i {
    margin: 0;
}

.stok-ara > #x-btn > i {
    margin: 0;
}

.clickable {
    cursor: pointer;
}

#search-overlay {
    display: none;
    z-index: 98;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    text-align: center;
    background: rgba(255, 255, 255, 0);
    margin: 0;
}


.block:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: 0;
}

.centered {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    padding: 10px 15px;
    color: #FFF;
    border: none;
    background: transparent;
}

#search-box {
    position: relative;
    width: 100%;
    margin: 0;
}

#search-form {
    height: 4.35em;
    border: 1px solid #999;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
}

#search-text {
    font-size: 14px;
    color: #ddd;
    border-width: 0;
    background: transparent;
}

#search-box input[type="text"] {
    width: 95%;
    padding: 12px;
    color: #333;
    outline: none;
    font-size: 1.4em;
}

#search-button {
    position: absolute;
    top: 0;
    right: 0;
    height: 3.75em;
    width: 10%;
    font-size: 14px;
    background-color: var(--theme-color);
    text-align: center;
    line-height: 42px;
    border-width: 0;
    -webkit-border-radius: 0 8px 8px 0;
    -moz-border-radius: 0 8px 8px 0;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

    #search-button:hover {
        box-shadow: 0px 0px 29px -6px rgba(191,191,191,1);
        transform: scale(1.009);
    }

#close-btn {
    position: fixed;
    top: 1em;
    right: 1em;
}

    #close-btn:hover {
        color: #f1e7e7;
        cursor: pointer;
    }

.rounded-left {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

@media (max-width: 375px) {
    .prtm-header .prtm-logo {
        margin-left: 70px;
    }

    .text-right-mobile {
        text-align: right;
    }

    .stok-ara {
        margin-bottom: 15px !important;
    }

    .stok-siralama-alani {
        width: 325px !important;
    }

    .panel-egk-dashboard {
        height: auto !important;
    }

    .navbar-toggle {
        margin-left: 10px;
    }
}

@media screen and (max-width: 520px) {
    .table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
        padding: 0px;
    }
}

@media (max-width: 568px) {
    .col-xs-push-3 {
        left: 0% !important;
    }
}

@media (max-width: 680px) {
    .page-header-container {
        justify-content: center;
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 1200px) {
    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
        gap: 24px;
        width: 100% !important;
        margin: 0px !important;
    }

        .navbar-header:before, .navbar-header:after {
            content: none;
            display: table;
        }
}


@media screen and (min-width: 980px) {
    .text-right-large {
        text-align: right;
    }
}

@media screen and (max-width: 980px) {
    .StockDetail .prtm-block-title {
        flex-direction: column;
        gap: 20px;
    }

        .StockDetail .prtm-block-title span:first-child {
            max-width: fit-content;
        }
}

@media (max-width: 1024px) {
    .prtm-header .prtm-logo {
        margin-left: 80px;
    }
}

@media screen and (max-width: 1192px) {
    .prtm-logo {
        padding-left: 30px;
    }
}

@media screen and (max-width: 1366px) {
    .urun-row > .sepete-ekle {
        padding: 0;
    }
}


@media screen and (max-width: 1200px) {
    .overlay-search-btn {
        display: none;
    }

    .search-containers {
        margin-bottom: 10px !important;
    }
}

@keyframes gelatine {
    from, to {
        transform: scale(1, 1);
    }

    5% {
        transform: scale(0.9, 1.1);
    }

    10% {
        transform: scale(1.1, 0.9);
    }

    15% {
        transform: scale(0.95, 1.05);
    }

    16% {
        transform: scale(1.05, 1);
    }
}



/*****************Bootstrap columns start*************/
.row {
    margin-left: -15px;
    margin-right: -15px;
}

    .row:before, .row:after {
        content: " ";
        display: table;
    }

    .row:after {
        clear: both;
    }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-1 {
    width: 8.333333%;
}

.col-xs-2 {
    width: 16.666667%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-4 {
    width: 33.333333%;
}

.col-xs-5 {
    width: 41.666667%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-7 {
    width: 58.333333%;
}

.col-xs-8 {
    width: 66.666667%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-10 {
    width: 83.333333%;
}

.col-xs-11 {
    width: 91.666667%;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-pull-1 {
    right: 8.333333%;
}

.col-xs-pull-2 {
    right: 16.666667%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-4 {
    right: 33.333333%;
}

.col-xs-pull-5 {
    right: 41.666667%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-7 {
    right: 58.333333%;
}

.col-xs-pull-8 {
    right: 66.666667%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-10 {
    right: 83.333333%;
}

.col-xs-pull-11 {
    right: 91.666667%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-push-1 {
    left: 8.333333%;
}

.col-xs-push-2 {
    left: 16.666667%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-4 {
    left: 33.333333%;
}

.col-xs-push-5 {
    left: 41.666667%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-7 {
    left: 58.333333%;
}

.col-xs-push-8 {
    left: 66.666667%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-10 {
    left: 83.333333%;
}

.col-xs-push-11 {
    left: 91.666667%;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

.col-xs-offset-1 {
    margin-left: 8.333333%;
}

.col-xs-offset-2 {
    margin-left: 16.666667%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.333333%;
}

.col-xs-offset-5 {
    margin-left: 41.666667%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.333333%;
}

.col-xs-offset-8 {
    margin-left: 66.666667%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-10 {
    margin-left: 83.333333%;
}

.col-xs-offset-11 {
    margin-left: 91.666667%;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-1 {
        width: 8.333333%;
    }

    .col-sm-2 {
        width: 16.666667%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.333333%;
    }

    .col-sm-5 {
        width: 41.666667%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.333333%;
    }

    .col-sm-8 {
        width: 66.666667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.333333%;
    }

    .col-sm-11 {
        width: 91.666667%;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-pull-1 {
        right: 8.333333%;
    }

    .col-sm-pull-2 {
        right: 16.666667%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-4 {
        right: 33.333333%;
    }

    .col-sm-pull-5 {
        right: 41.666667%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-7 {
        right: 58.333333%;
    }

    .col-sm-pull-8 {
        right: 66.666667%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-10 {
        right: 83.333333%;
    }

    .col-sm-pull-11 {
        right: 91.666667%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-push-1 {
        left: 8.333333%;
    }

    .col-sm-push-2 {
        left: 16.666667%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-4 {
        left: 33.333333%;
    }

    .col-sm-push-5 {
        left: 41.666667%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-7 {
        left: 58.333333%;
    }

    .col-sm-push-8 {
        left: 66.666667%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-10 {
        left: 83.333333%;
    }

    .col-sm-push-11 {
        left: 91.666667%;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }

    .col-sm-offset-1 {
        margin-left: 8.333333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.666667%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-4 {
        margin-left: 33.333333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.666667%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-7 {
        margin-left: 58.333333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.666667%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-10 {
        margin-left: 83.333333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.666667%;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-1 {
        width: 8.333333%;
    }

    .col-md-2 {
        width: 16.666667%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.333333%;
    }

    .col-md-5 {
        width: 41.666667%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.333333%;
    }

    .col-md-8 {
        width: 66.666667%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.333333%;
    }

    .col-md-11 {
        width: 91.666667%;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-pull-1 {
        right: 8.333333%;
    }

    .col-md-pull-2 {
        right: 16.666667%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-4 {
        right: 33.333333%;
    }

    .col-md-pull-5 {
        right: 41.666667%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-7 {
        right: 58.333333%;
    }

    .col-md-pull-8 {
        right: 66.666667%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-10 {
        right: 83.333333%;
    }

    .col-md-pull-11 {
        right: 91.666667%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-push-1 {
        left: 8.333333%;
    }

    .col-md-push-2 {
        left: 16.666667%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-4 {
        left: 33.333333%;
    }

    .col-md-push-5 {
        left: 41.666667%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-7 {
        left: 58.333333%;
    }

    .col-md-push-8 {
        left: 66.666667%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-10 {
        left: 83.333333%;
    }

    .col-md-push-11 {
        left: 91.666667%;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }

    .col-md-offset-1 {
        margin-left: 8.333333%;
    }

    .col-md-offset-2 {
        margin-left: 16.666667%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-4 {
        margin-left: 33.333333%;
    }

    .col-md-offset-5 {
        margin-left: 41.666667%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-7 {
        margin-left: 58.333333%;
    }

    .col-md-offset-8 {
        margin-left: 66.666667%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-10 {
        margin-left: 83.333333%;
    }

    .col-md-offset-11 {
        margin-left: 91.666667%;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }

    .col-lg-1 {
        width: 8.333333%;
    }

    .col-lg-2 {
        width: 16.666667%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .col-lg-5 {
        width: 41.666667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.333333%;
    }

    .col-lg-8 {
        width: 66.666667%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.333333%;
    }

    .col-lg-11 {
        width: 91.666667%;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-pull-1 {
        right: 8.333333%;
    }

    .col-lg-pull-2 {
        right: 16.666667%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-4 {
        right: 33.333333%;
    }

    .col-lg-pull-5 {
        right: 41.666667%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-7 {
        right: 58.333333%;
    }

    .col-lg-pull-8 {
        right: 66.666667%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-10 {
        right: 83.333333%;
    }

    .col-lg-pull-11 {
        right: 91.666667%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-push-1 {
        left: 8.333333%;
    }

    .col-lg-push-2 {
        left: 16.666667%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-4 {
        left: 33.333333%;
    }

    .col-lg-push-5 {
        left: 41.666667%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-7 {
        left: 58.333333%;
    }

    .col-lg-push-8 {
        left: 66.666667%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-10 {
        left: 83.333333%;
    }

    .col-lg-push-11 {
        left: 91.666667%;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }

    .col-lg-offset-1 {
        margin-left: 8.333333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.666667%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-4 {
        margin-left: 33.333333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.666667%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-7 {
        margin-left: 58.333333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.666667%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-10 {
        margin-left: 83.333333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.666667%;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }
}

.hidden {
    display: none !important;
}
/*****************Bootstrap columns finish*************/
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }

    .firm-logo {
        margin-right: 20px;
        width: 120px;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .d-lg-none {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
}

@media (max-width: 1201px) {
    .d-xl-none {
        display: block !important;
    }

    .kenarSepetElemaniSil, .kenarFavoriElemaniSil {
        display: block !important
    }
}

@media (prefers-color-scheme: dark) {
    [data-theme="dark"]:root {
        --egk-light-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
        --egk-mid-border-radius: 6px;
        --island-bg-color: hsla(0, 0%, 100%, 0.96);
        --text-primary-color: #fff;
        --egk-ui-font: "Poppins", sans-serif;
    }

    [data-theme="dark"] body {
        background: #191d2a url('../../img/dark-body-bg.svg');
    }

    [data-theme="dark"] .carousel {
        background-color: #313447;
        box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.6);
    }

    [data-theme="dark"] a:not(.egk-btn):not(.paginate-button.current),
    [data-theme="dark"] .btn-link {
        text-decoration: none;
        color: #a0a6b7;
        border: none;
    }

    [data-theme="dark"] a:hover,
    [data-theme="dark"] .btn-link {
        text-decoration: none;
        color: #fff;
    }

    [data-theme="dark"] .egk-panel,
    [data-theme="dark"] #mobile-sidebar,
    [data-theme="dark"] .egk-content,
    [data-theme="dark"] .prtm-block {
        background: #2f3547;
        box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.6);
    }

    [data-theme="dark"] .ui-autocomplete {
        background: #2f3547;
    }

    [data-theme="dark"] .swal2-popup {
        color: #fff;
        background: #2f3547;
        box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.6);
    }

    [data-theme="dark"] table.dataTable thead th {
        background: rgba(7, 11, 22, 0.9);
    }

    [data-theme="dark"] .dt-buttons {
        border: none;
    }

    [data-theme="dark"] a.dt-button,
    [data-theme="dark"] button.dt-button,
    [data-theme="dark"] div.dt-button {
        background: #586279 !important;
        color: #fff;
        border: 1px solid transparent !important;
    }

    [data-theme="dark"] .navbar {
        backdrop-filter: blur(10px) !important;
        background-color: rgba(7, 11, 22, 0.65) !important;
    }

    [data-theme="dark"] .nav.navbar-nav > li > a:hover {
        color: #fff !important;
    }

    [data-theme="dark"] .dataTable tr:hover {
        background: #1e2333 !important;
    }

    [data-theme="dark"] .dataTable td:hover {
        background-color: transparent;
    }

    [data-theme="dark"] table.dataTable tbody tr:hover {
        background: transparent;
    }

    [data-theme="dark"] table.dataTable > tfoot > tr > th,
    [data-theme="dark"] table.dataTable > tfoot > tr > td {
        border-top: none;
    }

    [data-theme="dark"].dataTables_info,
    [data-theme="dark"] table.dataTable tfoot {
        background-color: transparent !important;
    }

    [data-theme="dark"] .dataTable .dataTables_empty:hover {
        background-color: transparent;
    }

    [data-theme="dark"] div.dt-button-collection {
        background-color: rgba(7, 11, 22, .92) !important;
    }

        [data-theme="dark"] div.dt-button-collection .dt-button {
            background-color: #586279 !important
        }

            [data-theme="dark"] div.dt-button-collection .dt-button:hover {
                background-color: var(--theme-color) !important;
            }

    [data-theme="dark"] button.dt-button:hover,
    [data-theme="dark"] div.dt-button:hover,
    [data-theme="dark"] a.dt-button:hover {
        border: 1px solid transparent !important;
        background: var(--theme-color) !important;
        box-shadow: 0 0 20px #4281da;
    }

    [data-theme="dark"] .ui-widget.ui-widget-content {
        box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.6);
        border: 1px solid #3a4056 !important;
        background: #0b0d19;
    }

    [data-theme="dark"] .dt-buttons .buttons-collection:first-child {
        border-radius: 6px 0 0 6px
    }

    [data-theme="dark"] .dt-buttons .buttons-collection:last-child {
        border-radius: 0 6px 6px 0
    }

    [data-theme="dark"] .egk-btn-light,
    [data-theme="dark"] .egk-btn-link {
        color: #fff;
        background: #586279 !important;
    }

    [data-theme="dark"] input,
    [data-theme="dark"] select,
    [data-theme="dark"] textarea,
    [data-theme="dark"] .form-control {
        color: #fff;
        border: 1px solid #3a4056 !important;
        background: #0b0d19;
    }

        [data-theme="dark"] .form-control[disabled],
        [data-theme="dark"] .form-control[readonly],
        [data-theme="dark"] fieldset[disabled] .form-control {
            border: 1px solid #3a4056 !important;
            background: #0b0d19;
        }

        [data-theme="dark"] input:focus,
        [data-theme="dark"] textarea:focus {
            outline: 0;
            box-shadow: 0 0 40px var(--theme-color);
            border: 1px solid var(--theme-color);
        }

    [data-theme="dark"] .txt-aranacak-ifade {
        border: none !important;
    }

    [data-theme="dark"] .cari-ara .txt-aranacak-ifade {
        color: #fff;
        background: #0b0d19;
    }

    [data-theme="dark"] .stok-ara .btn-ikon,
    [data-theme="dark"] cari-ara .btn-ikon {
        background-color: #0b0d19;
    }

    [data-theme="dark"] .dropdown-menu,
    [data-theme="dark"] .sidebar-menu .has-children .in {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        background-color: rgba(7, 11, 22, 0.9);
        border: none;
    }

    [data-theme="dark"] .sidebar-menu > li > a {
        border-bottom: 1px solid #3a4056;
    }

    [data-theme="dark"] .nav.navbar-nav .dropdown-menu > li > a {
        border-bottom: 1px solid #2f3447;
    }

    [data-theme="dark"] .prtm-sidebar .prtm-sidebar-menu .sub-menu li a {
        background-color: transparent !important;
    }

    [data-theme="dark"] .sub-menu li a {
        border-bottom: 1px solid #2f3447;
        padding: 12px !important;
    }

    [data-theme="dark"] .cari-ara .btn-temizle,
    [data-theme="dark"] .stok-ara .btn-temizle,
    [data-theme="dark"] .btn-ara {
        color: #a0a6b7;
        background-color: #0b0d19;
    }

    [data-theme="dark"] .custom-select-trigger:after {
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
    }

    [data-theme="dark"] .urun-row,
    [data-theme="dark"] .urun-row-grid,
    [data-theme="dark"] #sepet-kenarda,
    [data-theme="dark"] #favori-kenarda {
        background-color: #2f3547;
        border: 1px solid #3a4056 !important;
    }

    [data-theme="dark"] .swal2-timer-progress-bar {
        background: rgb(255 238 238 / 54%);
    }

    [data-theme="dark"] .custom-option:not(:last-child) {
        border-bottom: 1px solid #3a4056;
    }

    [data-theme="dark"] #stockFilterForm .no-image {
        background-color: #1a1d2a;
    }

    [data-theme="dark"] .stok-listesi-filters {
        border-bottom: 1px solid #3a4056;
        background: #2f3447;
    }

    [data-theme="dark"] .search-containers,
    [data-theme="dark"] .stok-ara {
        background-color: transparent;
    }

        [data-theme="dark"] .stok-ara button:not(.searchbox-clear-multiple):not(.searchbox-clear-multiple2) {
            background: #0b0d19 !important;
            color: #fff !important;
            border: 1px solid transparent !important;
        }

        [data-theme="dark"] .stok-ara .btn-ikon, [data-theme="dark"] .cari-ara .btn-ikon {
            background-color: #0b0d19;
        }

    [data-theme="dark"] .urun-row > .sepete-ekle,
    [data-theme="dark"] .urun-row > .urun-fiyat,
    [data-theme="dark"] .urun-row > .stok-adet {
        border-left: 1px solid #3a4056 !important;
    }

    [data-theme="dark"] #userIcon svg, [data-theme="dark"] #userIcon i {
        color: #fff
    }

    [data-theme="dark"] #userIcon:hover {
        background-color: var(--theme-color);
    }

    [data-theme="dark"] #input-groups-btn {
        border-radius: 999px;
        align-self: auto;
        margin: auto 0;
        height: 34px;
        width: 34px;
        padding: 0;
        min-height: auto;
        min-width: auto;
        order: unset;
        flex: unset;
    }

    [data-theme="dark"] #basketButton,
    [data-theme="dark"] #basketButton:hover {
        background: none;
    }

    [data-theme="dark"] #tableBasket > tbody > tr:hover > *,
    [data-theme="dark"] #tableBasket > tfoot > tr:hover > * {
        box-shadow: none;
    }

    [data-theme="dark"] #tableBasket > tbody > tr > td {
        border-top: none;
    }

    [data-theme="dark"] .sidebar,
    [data-theme="dark"] .cloud-toggle,
    [data-theme="dark"] .custom-options {
        backdrop-filter: blur(10px) !important;
        background-color: rgba(7, 11, 22, 0.65) !important;
    }
    [data-theme="dark"] .firm-logo img,
    [data-theme="dark"] footer img[alt="Egekomp Bilgisayar"],
    [data-theme="dark"] .logo-container img,
    [data-theme="dark"] .ihy-logo {
        filter: brightness(0) invert(1);
    }
    [data-theme="dark"] .logout-button {
        width: 88px;
        height: 26px;
        background-color: transparent;
    }

    [data-theme="dark"] .modal-content {
        backdrop-filter: blur(10px) !important;
        background-color: rgba(47, 52, 71, 0.95) !important;
        box-shadow: 0 0 3px var(--theme-color);
    }

    [data-theme="dark"] .modal-header {
        border-bottom: 1px solid #3a4056 !important;
    }


    [data-theme="dark"] .stockDetailBody .btn {
        color: #fff;
        background: #2f3447;
        border: 1px solid #3a4056 !important;
    }

        [data-theme="dark"] .stockDetailBody .btn:hover {
            color: #fff
        }

    [data-theme="dark"] .circle-progress .bg {
        stroke: #ffffffb0;
    }

    [data-theme="dark"] .egk-btn-outline-primary {
        color: #fff;
        background-color: var(--theme-color);
    }

    [data-theme="dark"] .egk-btn-outline-danger {
        background-color: #b53335;
        color: #fff;
    }

    [data-theme="dark"] .egk-btn-outline-warning {
        background-color: #d68426;
        color: #fff;
    }

    [data-theme="dark"] .gradient-background {
        background-color: #f27a1a;
    }

    [data-theme="dark"] text {
        fill: #fff;
    }

    [data-theme="dark"] footer {
        background-color: #0e111d;
    }

    [data-theme="dark"] .select2-selection {
        color: #fff !important;
        border: 1px solid #3a4056 !important;
        background: #0b0d19 !important;
    }

    [data-theme="dark"] .select2-search {
        background-color: #343A40 !important;
    }

        [data-theme="dark"] .select2-search input {
            color: #ffffff !important;
            background-color: #343A40 !important;
        }

    [data-theme="dark"] .select2-results {
        background-color: #343A40 !important;
    }

    [data-theme="dark"] .select2-container .select2-selection {
        border-color: #6c757d !important;
        color: #ffffff !important;
        background-color: #343A40 !important;
    }

    [data-theme="dark"] .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #2c2c2c;
    }

    [data-theme="dark"] .select2-container--default .select2-results__option--selected {
        background-color: #8b8888;
    }

    [data-theme="dark"] .select2-container .select2-selection--single {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    }

        [data-theme="dark"] .select2-container .select2-selection--single .select2-selection__rendered {
            color: #ffffff !important;
        }
}
/* variables */
:root {
    --dark: #111111;
    --sun: #ffd700;
    --sun-shadow: #987416;
    --moon: #dddddd;
    --moon-shadow: #808080;
    --star: #ffffff;
    --cloud: #ffffff;
    --crater: #535370;
    --shadow-01: #80808077;
    --shadow-02: #ffffff22;
    --shadow-03: #555555;
    --white: #ffffff;
    --background-day: linear-gradient(skyblue, cadetblue);
    --background-night: linear-gradient(-45deg, #222, #000030);
}

.theme-mode-container {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    width: 80px;
    height: 34px;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

    .theme-mode-container input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.theme-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--background-day);
    box-shadow: inset 0 0 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    overflow: hidden;
    z-index: 1;
}

    .theme-slider::before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: var(--sun);
        -webkit-transition: 0.4s;
        transition: 0.4s;
        box-shadow: inset 0 -1px 2px var(--sun-shadow), 0 1px 2px var(--shadow-01), 0 0 0 10px var(--shadow-02), 0 0 0 20px var(--shadow-02), 10px 0 0 20px var(--shadow-02);
    }

#theme-toggle:checked + .theme-slider {
    background: var(--background-night);
    filter: drop-shadow(0 0 2px var(--white));
}

    #theme-toggle:checked + .theme-slider:before {
        background: var(--moon);
        -webkit-transform: translateX(180%);
        -ms-transform: translateX(180%);
        transform: translateX(180%);
        box-shadow: inset 0 -1px 2px var(--moon-shadow), 0 1px 2px var(--shadow-03), 0 0 0 10px var(--shadow-02), 0 0 0 20px var(--shadow-02), -10px 0 0 20px var(--shadow-02);
    }

.theme-slider::after {
    content: "";
    position: absolute;
    background: var(--crater);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    bottom: 65%;
    right: 16%;
    box-shadow: -8px 7px 0 3px var(--crater), 2px 10px 0 var(--crater);
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
    filter: saturate(.75);
}

#theme-toggle:checked + .theme-slider::after {
    -webkit-transform: scale(1) rotate(-24deg);
    transform: scale(1) rotate(-24deg);
}

#theme-toggle:checked + .theme-slider .theme-background {
    -webkit-transform: translateY(260%);
    transform: translateY(260%);
    opacity: 0;
}

.theme-star {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: .4s;
    transition: .4s;
}

#theme-toggle:checked + .theme-slider .theme-star {
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom: 7px solid var(--star);
    transform: rotate(35deg);
    border-top: none;
    margin: 5px 0;
    -webkit-transform: scale(.3) translate(50%);
    transform: scale(.3) translate(50%);
}

    #theme-toggle:checked + .theme-slider .theme-star:last-child {
        -webkit-transform: scale(.4) translate(225%, 300%);
        transform: scale(.4) translate(225%, 300%);
    }

    #theme-toggle:checked + .theme-slider .theme-star::before,
    #theme-toggle:checked + .theme-slider .theme-star::after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        border-top: none;
    }

    #theme-toggle:checked + .theme-slider .theme-star::before {
        border: 3px solid transparent;
        border-bottom: 8px solid var(--star);
        -webkit-transform: rotate(35deg);
        transform: rotate(35deg);
        top: -7.5px;
        left: 1.5px;
    }

    #theme-toggle:checked + .theme-slider .theme-star::after {
        border: 10px solid transparent;
        border-bottom: 7px solid var(--star);
        -webkit-transform: rotate(70deg);
        transform: rotate(70deg);
        top: -7px;
        left: -4.5px;
    }

.theme-slider.round {
    border-radius: 34px;
}

    .theme-slider.round:before {
        border-radius: 50%;
    }

.theme-background {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--cloud);
    border-radius: 50%;
    bottom: 0;
    right: 0;
    box-shadow: 0 -10px 0 8px var(--cloud), -10px 0px 0 8px var(--cloud), -45px 4px 0 5px var(--cloud), -60px 0px 0 3px var(--cloud), -29px 2px 0 8px var(--cloud);
    -webkit-transition: .4s;
    transition: .4s;
}
