﻿: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;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 12px;
}

body, .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: var(--egk-ui-font);
    color: var(--text-primary-color);
}
.prtm-wrapper {
    min-height: 79.9vh;
    max-width: 1719px;
    margin: auto;
}
.prtm-fixed-header {
    padding: 24px 5%;
}
.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;
}
.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-30ch {
    overflow: hidden;
    max-width: 30ch;
    white-space: nowrap !important;
    text-overflow: ellipsis;
}
.border-none {
    border:none!important;
}
.page-head {
    display: flex;
    justify-content: space-between;
}

.page-title {
    font-size: 18px;
    font-weight: 500;
}
#egk-collapse-menu {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 1s;
}
    #egk-collapse-menu.active {
        opacity: 1;
        height: auto;
        transition: all 1s;
    }
.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 {
    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;
}
.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;
}
/* egk-form-container and form */
.egk-form {
    margin-top: 40px;
}

.egk-form-container {
    width: 100%;
    border-radius: var(--egk-mid-border-radius);
}

    .egk-form-container .egk-form-title {
        font-size: 22px;
        font-weight: 500;
        position: relative;
    }

        .egk-form-container .egk-form-title::before {
            content: "";
            position: absolute;
            height: 2.5px;
            width: 30px;
            background: linear-gradient(135deg, var(--theme-color), var(--theme-color));
            left: 0;
            bottom: -4px;
        }

    .egk-form-container .egk-form .form-egk-form-label {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px 0 12px 0;
    }
/* inside the form user egk-form-label */
.egk-form .egk-form-switch {
    display: flex;
    align-items: center;
    height: 45px;
}

.egk-form .form-egk-form-label .egk-form-input {
    width: calc(100% / 2 - 20px);
    margin-bottom: 15px;
    position:relative;
}
.egk-form .form-egk-form-label.column-3 .egk-form-input {
    width: calc(100% / 3 - 20px);
}
.egk-form .form-egk-form-label.column-4 .egk-form-input {
    width: calc(100% / 4 - 20px);
}
.egk-form .form-egk-form-label.column-5 .egk-form-input {
    width: calc(100% / 5 - 20px);
}
    .egk-form .form-egk-form-label .egk-form-input .egk-btn {
        position: absolute;
        right: 0;
        top: 29px;
        height: 42px;
        border-radius: 0 6px 6px 0;
    }

.form-egk-form-label .egk-form-input .egk-form-label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    font-size: 16px;
}

.form-egk-form-label .egk-form-input input,
.form-egk-form-label .egk-form-input select {
    height: 45px;
    width: 100%;
    outline: none;
    border-radius: var(--egk-mid-border-radius);
    border: 1px solid #ccc;
    padding-left: 15px;
    font-size: 16px;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}
    .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 {
        border-color: var(--theme-color);
    }


@media only screen and (max-width: 746px) {
    .egk-form-container {
        max-width: 100%;
    }
    .egk-form-title-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        margin-top: 12px;
    }
    .egk-form .form-egk-form-label .egk-form-input {
        margin-bottom: 15px;
        width: 100%;
    }

    .form-egk-form-label::-webkit-scrollbar {
        width: 0;
    }
}
@media only screen and (max-width: 1200px) {
    .egk-form .form-egk-form-label.column-4 .egk-form-input,
    .egk-form .form-egk-form-label.column-5 .egk-form-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;
}

.prtm-header .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;
}

.main-sticked #sepet-kenarda {
    top: 51px !important;
    transition: all ease-in-out 0.2s !important;
}

.navbar-sticked nav .container-fluid {
    height: 50px;
    transition: all ease-in-out 0.2s;
}

.navbar-sticked .firm-logo .img-responsive {
    max-width: 50px !important;
    transition: all ease-in-out 0.2s;
}

.navbar-sticked .nav > li > a > img {
    height: 30px;
    width: 30px;
    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;
        }

.prtm-fixed-header .prtm-header {
    margin-top: 80px !important;
    transition: all ease-in-out 0.2s;
}

.pos-relative {
    overflow: auto;
}

.prtm-block {
    border-top: solid 3px var(--theme-color);
    border-radius: var(--egk-mid-border-radius);
    box-shadow: 0px 0px 12px -9px rgb(0, 0, 0);
}

.prtm-block-title h3 {
    font-family: inherit;
    font-weight: 400;
    color: #414658;
    text-transform: capitalize;
}

.prtm-main .prtm-content-wrapper {
    background: #f6f6f6;
}



    .prtm-main .prtm-content-wrapper .prtm-content {
        background: #f6f6f6;
        padding: 0;
    }

.prtm-header .navbar-header {
    padding-left: 0px;
    padding-right: 0px;
}


    .prtm-header .navbar-header .navbar-brand {
        height: 110px !important;
        min-width: 100px !important;
    }

.prtm-logo .navbar-brand img {
    position: absolute;
    top: -15px;
    max-width: 150px !important;
    height: 110px !important;
    margin-left: 0px;
}

.firm-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    max-height: 70px;
}


    .firm-logo .img-responsive {
        max-width: 70px !important;
        transition: all ease-in-out 0.2s;
        margin-left: 8px;
    }

.prtm-header .navbar-header {
    width: auto;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.prtm-logo {
    width: 150px;
}

.prtm-header .nav.navbar-nav i {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 5px;
    color: var(--theme-color);
}

.prtm-header .nav.navbar-nav > li > a {
    color: var(--text-primary-color);
    padding: 0 8px 0 0px;
    margin-left: 6px;
}

.navbar-right {
    position: absolute;
    right: 0;
}

.nav.navbar-nav.navbar-right > li > a {
    margin-left: 20px !important;
}

.navbar-right .dropdown-menu > li:last-child svg {
    color: red !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 {
    float: left !important;
    rotate: 0deg !important;
    min-width: 24px;
}

#user-dropdown {
    margin-right: 20px !important;
    margin-top: -2px !important;
    transition: all ease-in-out 0.4s;
}

    #user-dropdown:hover {
        transition: all ease-in-out 0.4s;
    }

        #user-dropdown:hover img {
            transform: scale(1.3);
            border: 1px solid var(--theme-color);
            padding: 2px;
            transition: all ease-in-out 0.4s;
        }

.fa-power-off, .fa-remove {
    color: #d24636 !important;
}

.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);
}

    textarea.form-control:focus {
        border: none;
        outline: none;
    }


/* 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 {
    float: right;
    rotate: 270deg;
}

.prtm-header .nav.navbar-nav .dropdown-menu {
    width: auto;
    padding: 0.8rem 1.4rem;
    min-width: 218px;
}

.prtm-header .nav.navbar-right .dropdown-menu {
    min-width: 200px;
}

.prtm-header .nav.navbar-nav .dropdown-menu > li {
    border: none;
    padding: 0px .625rem;
    border-radius: 4px !important;
}

    .prtm-header .nav.navbar-nav .dropdown-menu > li:last-child > a {
        border: none;
    }

    .prtm-header .nav.navbar-nav .dropdown-menu > li > a {
        white-space: nowrap !important;
        font-size: 12px;
        color: var(--text-primary-color);
        border-bottom: 1px solid #d3d7dba3;
        padding: 12px 0px;
    } 
.navbar-right > li:last-child > .dropdownhover-bottom {
    right: 24px !important;
    left: auto !important;
    top: 70px;
}

.prtm-header .navbar-default .navbar-nav > .open > a, .prtm-header .navbar-default .navbar-nav > .open > a:focus, .prtm-header .navbar-default .navbar-nav > .open > a:hover {
    background-color: transparent !important;
    color: #444444 !important;
}

.prtm-header .nav.navbar-nav .dropdown-menu > li > svg {
    margin: 0px 10px !important;
}

.hover-drop .dropdown-menu, .prtm-header .dropdown-menu {
    min-width: unset;
}

.prtm-header .nav.navbar-nav .dropdown-menu > li:hover > span, .prtm-header .nav.navbar-nav .dropdown-menu > li:hover > svg, .prtm-header .nav.navbar-nav .dropdown-menu > li:hover > a, .prtm-header .nav.navbar-nav .dropdown-menu > li:hover > a > svg, .prtm-header .nav.navbar-nav .dropdown-menu > li:hover .fa-secondary {
    color: #fff !important;
    opacity: 1;
    transition: 0.3s all ease;
}

.prtm-header .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
}

.dropdown ul {
    transition: all ease-in-out 0.2s;
}

.prtm-header .nav.navbar-nav .dropdown-menu > li:hover {
    color: #8d0cf9 !important;
    background: var(--theme-color) !important;
}

.prtm-header .nav.navbar-nav > li > a:hover {
    color: #444444 !important;
}
/*
    .prtm-header .nav.navbar-nav > li > a:hover > span {
        border-bottom: solid 3px var(--theme-color);
    }
*/
.prtm-header .hidden-md > li > a:after {
    display: block;
    content: '';
    border-bottom: solid 2px var(--theme-color);
    transform: scaleX(0);
    transition: transform 0.5s ease-in-out;
    position: relative;
    top: -16px;
}

.prtm-header .hidden-md > li > a:hover:after {
    transform: scaleX(1);
}

.prtm-header .hidden-md > li > a:hover > i {
    transform: scale(1.1);
}

.line-slide-tab .nav li:first-child {
    margin: 0 !important;
}

.nav.nav-tabs > li > a {
    font-size: 14px;
}

.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);
}

.chkSliderSettings::before {
    border-radius: 50%;
}

.chkSliderSettings {
    border-radius: 12px;
}

#mobile-sidebar {
    display: block;
    width: max-content !important;
    position: fixed;
    top: 75px;
    left: 5px;
    margin: 0px 8px auto;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 8px;
    height: auto !important;
    background-color: #ffffffdb;
    transition: all .3s ease-in-out;
    backdrop-filter: blur(10px);
}

.navbar-sticked #mobile-sidebar {
    top: 54px;
    transition: all .3s ease-in-out;
}

.prtm-sidebar .prtm-sidebar-menu {
    margin-bottom: 0 !important;
}

.prtm-sidebar .stok-ara {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.stok-ara:focus-within {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
}

.prtm-sidebar .prtm-sidebar-menu i {
    margin-right: 20px;
    font-size: 18px;
    min-width: 20px;
    color: var(--theme-color);
}

.prtm-sidebar .prtm-sidebar-menu .has-children > a:after {
    color: var(--theme-color);
}

.Duyuru-vitrin {
    position: relative;
    top: 10px;
    margin-right: 280px;
}

.urun-row .urun-gorsel {
    min-width: 140px;
    min-height: 140px;
}

.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%;
}

.sepet-input {
    border-radius: 8px;
    border: none;
    width: 87px;
    height: 34px;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    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;
}

#ShoppingBasketArea th {
    font-size: 14px !important;
    font-weight: 500;
    color: var(--text-primary-color) !important;
}

#ShoppingBasketArea td {
    font-size: 14px;
}


#dvSepet .miktar-input {
    width: 130px;
    height: 34px;
    text-align: center;
    font-size: 14px;
    padding: 0 18px;
}

.ozellik-tablosu-tip2 .label {
    padding: .3em .5em;
}
.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;
}

.sepet-table > tbody > tr > td {
    white-space: nowrap;
    padding: 6px;
    line-height: 2;
    vertical-align: middle;
    border-top: 1px solid #eff4f8;
}

.sepet-table > 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;
}





.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;
}

.font-weight-bold, font-weight-bold > * {
    font-weight: bold !important;
}

.br-black {
    border-right: solid 1px #000000 !important;
}

.bl-black {
    border-left: solid 1px #000000 !important;
}

.acik-mavi {
    background-color: #f0f8ff;
}

.kar-beyaz {
    background-color: #f5f5f5;
}

.footer-wrapper .prtm-footer {
    padding: 0;
}

.footer-wrapper {
    position: unset !important;
}

.footer-area {
    padding: 10px 5px;
}

    .footer-area p {
        margin: 0;
    }

.footer-copyright {
    margin: 10px 0px !important;
}

.row.footer-area img {
    max-height: 36px;
}

.mrgn-tb-sm {
    min-height: 73vh !important;
}

.loaded-block {
    min-height: 520px !important;
}

.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;
    }

.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;
}

.tab-pane {
    overflow: hidden !important;
}


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 !important;
    }

.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;

}
.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;
    }

#plasiyer-list tr:nth-child(even), #carilist tr:nth-child(even) {
    background-color: #f6f6f6;
}

#plasiyer-list, #carilist {
    padding: 20px;
    width: 100%;
}

#carilist_filter.dataTables_filter {
    display: block !important;
}

.input-group-btn .btn {
    border: solid 1px #c1c8d0;
    height: 34px;
}

.ui-widget-content {
    overflow: hidden !important;
}


.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;
}

/* Datatables */

.dt-buttons {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    width: 100%;
    gap: 4px;
}
.dt-button {
    background-color: #fff !important;
    color: var(--theme-color) !important;
    padding: 2px 4px;
    font-size: 14px !important;
    border-radius: 4px;
}

button.dt-button:hover, div.dt-button:hover, a.dt-button:hover {
    background-color: #fff !important;
    border: none !important;
    color: var(--theme-color) !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all ease 0.2s;
}

a.dt-button, button.dt-button, div.dt-button {
    -moz-user-select: none;
    background-color: #fff !important;
    background-image: none !important;
    border: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    padding: .8em 1.6em;
}
    .dt-button-background {
        display:none !important;
    }
div.dt-button-collection {
    border: 1px solid #fff !important;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    left: unset !important;
    right: 3px !important;
    width: 360px !important;
    padding: 0 15px 15px 15px;
}
    div.dt-button-collection h3 {
        color: var(--text-primary-color);
        line-height: 1.4em;
        margin: 1em 0em;
        border-bottom: 1px solid rgba(150, 150, 150, 0.5);
        font-size: 1em;
        padding: 0.5em 0;
    }
    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;
}
.dataTables_info {
    display: flex !important;
    justify-content: center;
    width:100%;
    flex-direction: column;
    gap: 8px;
    padding: 30px 20px 15px 20px !important;
    background-color: #ffffff !important;
    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;
}

@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;
    }
}

/* Datepicker */
.ui-datepicker {
    background-color: var(--theme-color);
    z-index: 99999999 !important;
}

.ui-widget-content {
    border: none;
}

.ui-widget.ui-widget-content {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px !important;
    border-radius: 6px !important;
}

.ui-menu .ui-menu-item {
    border-bottom: 1px solid #d3d3d3cf;
    color: var(--text-primary-color);
}

.ui-widget-header {
    background: var(--theme-color) !important;
    color: #fff !important;
    border: none;
}

.ui-datepicker-calendar {
    background-color: #fff;
    margin: 0 !important;
}

.ui-datepicker .ui-datepicker-buttonpane {
    margin: 0;
}

    .ui-datepicker .ui-datepicker-buttonpane button {
        text-transform: capitalize;
    }

select.ui-datepicker-month {
    color: #000000;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
}
.ui-datepicker-prev span,
.ui-datepicker-next span {
    background-image: none !important;
}

.ui-datepicker-prev:before,
.ui-datepicker-next:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    font-weight: normal;
    align-items: center;
    justify-content: center;
}

.ui-datepicker-prev:before {
    content: "〈";
}

.ui-datepicker-next:before {
    content: "〉";
}
/* 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;
}

table.dataTable > thead > tr > th, table.dataTable > thead > tr > td {
    border-bottom: 2px 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;
    }
.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;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #ced9e8;
    border: 0px none #ffffff;
    border-radius: 50px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #99aacc;
    }

    ::-webkit-scrollbar-thumb:active {
        background: #96aac8;
    }

::-webkit-scrollbar-track {
    background: #f1f3f8;
    border: 0px none #ffffff;
    border-radius: 50px;
}

    ::-webkit-scrollbar-track:hover {
        background: #e9ecf3;
    }

    ::-webkit-scrollbar-track:active {
        background: #e9ecf3;
    }

::-webkit-scrollbar-corner {
    background: transparent;
}

.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 {
    border: none;
    background-color: var(--island-bg-color);
}

.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 */
/* Table Customization */
thead tr th {
    font-size: 14px !important;
    font-weight: 500 !important;
    vertical-align: middle !important;
    padding-left: 8px 16px !important;
}
/*thead tr th:first-child, tbody tr td:first-child {
    padding-left: 0px;
}*/
/* Table Customization */
.panel-egk-white {
    border-top: solid 2px var(--theme-color);
    border-radius: var(--egk-mid-border-radius);
    box-shadow: 0px 0px 12px -9px rgb(0, 0, 0);
}

.badge-egk-primary {
    background-color: #F1F3F4;
    border: solid 1px #F1F3F4;
    color: #444444;
}

.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;
    -webkit-border-top-right-radius: 2px !important;
    -webkit-border-bottom-right-radius: 2px !important;
    -moz-border-radius-topright: 2px !important;
    -moz-border-radius-bottomright: 2px !important;
    border-top-right-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
}

    .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;
}

/*    Sweetalert 2 & Bootstrap font-size çakışması için      */
.swal2-popup {
    font-size: 1.6rem !important;
}

body.swal2-toast-shown .swal2-container {
    width: auto !important;
}

.swal2-popup.swal2-toast .swal2-html-container {
    font-size: 14px !important;
}

.modal {
    z-index: 1050 !important;
}

.cari-ara {
    margin: 0px 0px 15px 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;
        transition: all 0.2s ease;
        border-radius: 6px 0 0 6px;
    }

        .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;
        }

    .cari-ara .btn-temizle {
        width: 56px;
        color: #5f63688f;
        background-color: #fff;
        border: unset;
        outline: none;
        border-radius: 0px 6px 6px 0px;
    }

        .cari-ara .btn-temizle:hover {
            color: red;
        }

    .stok-ara .btn-ikon, .cari-ara .btn-ikon {
        pointer-events: none;
        width: 32px;
        padding-left: 8px;
        color: #9e9e9e;
        background-color: #ffffff;
        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 #fff;
        border-right: 1px solid #fff;
        transform: rotate(-90deg) translateY(-50%);
        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(90deg) translateY(-200%);
}

.custom-options {
    position: absolute;
    display: block;
    z-index: 99;
    top: 100%;
    max-height: 240px;
    overflow: scroll;
    scrollbar-color: var(--theme-color) #d3d3d373;
    left: -28px;
    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: block;
    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 1.8rem;
    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%;
}


.select-arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*background: url("http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png") white no-repeat 98.5% !important;
    background: url("http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png") white no-repeat calc(100% - 10px) !important;*/
}

.to-top-icon::before {
    content: "\e113";
}

.to-top:hover .to-top-icon::before {
    content: "\e113";
}

.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;
    }



.dikey-menu::after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}

.dikey-menu,
.dikey-menu-alt-liste {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

    .dikey-menu > .dikey-menu-eleman {
        width: 100%;
        float: left;
    }

        .dikey-menu > .dikey-menu-eleman > a,
        .dikey-menu-alt-liste > .dikey-menu-alt-liste-eleman > a {
            display: block;
            line-height: 32px;
            text-decoration: none;
        }

        .dikey-menu > .dikey-menu-eleman > a {
            padding: 5px 20px;
            background-color: #eff4f8;
        }

        .dikey-menu > .dikey-menu-eleman:hover > a {
            /*background-color: rgba(0,0,0,0.15);*/
        }

.dikey-menu-alt-liste {
    -webkit-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
}

    .dikey-menu-alt-liste > .dikey-menu-alt-liste-eleman > a {
        padding-right: 15px;
        padding-left: 15px;
        background-color: #f9f9f9;
    }

    .dikey-menu-alt-liste > .dikey-menu-alt-liste-eleman:hover > a {
        /*background-color: rgba(0,0,0,0.15);*/
    }

.alt-liste-var > a::after {
    font-family: "FontAwesome";
    font-size: 16px;
    font-weight: 900;
    content: "\f067";
    float: right;
    color: #000000;
}

.alt-liste-var.alt-liste-acik > a::after {
    font-family: "FontAwesome";
    font-size: 16px;
    font-weight: 900;
    content: "\f068";
    float: right;
    color: #000000;
}

.alt-liste-var > .dikey-menu-alt-liste {
    display: none;
}

.alt-liste-var.alt-liste-acik > .dikey-menu-alt-liste {
    display: block;
}

.dikey-menu .aktif-eleman > a,
.dikey-menu-alt-liste .aktif-eleman > a {
    /*background-color: rgba(0,0,0, 0.15);*/
}

#sepet-kenarda, #favori-kenarda {
    position: fixed;
    top: 73px;
    right: -402px;
    width: 375px;
    background: #ffffff;
    padding: 0;
    z-index: 2;
    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;
    }
.basket-empty {
    padding: 28px 12px;
    font-size: 14px;
    width: 100%;
}
.nav-tabs > li:not(.active):hover {
    background-color: rgba(0,0,0,0.1);
    border-bottom: none;
}


.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: #fff;
    border-radius: 6px;
}

.input-containers {
    display: flex;
    width: 70%
}

.input-groups {
    min-width: 20px;
    padding: 8px;
    padding-left: 12px;
    margin-top: 5px;
    height: 35px;
    order: 0;
    align-self: auto;
    border-radius: 16px !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;
}

.search-id-1, .search-id-2 {
    border-radius: 8px !important;
}

.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;
    margin-left: 8px !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;
}

nav .container-fluid {
    display: flex;
    align-items: center;
    height: 70px;
    transition: all ease-in-out 0.2s;
}

.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;
}

.panel-heading {
    padding: 15px 15px 15px 20px !important;
}

.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: 8px !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-menu > li:last-child > a {
    border: none;
}

    .sidebar-menu > li:last-child > a:hover svg,
    .sidebar-menu > li:last-child > a:hover span {
        color: #fff !important;
    }

.sidebar-menu > li > .sub-menu > li > a {
    padding-left: 4.9em;
}

.sidebar-nav .svg-inline--fa {
    min-width: 32px;
    font-size: 16px;
    color: var(--theme-color);
}

.sidebar-menu li > a:hover svg {
    color: #fff;
}

.sidebar-menu > li > .sub-menu .sub-menu > li > a {
    padding-left: 6em;
}

.sidebar-menu > li > .sub-menu > li > a {
    padding-left: 26px;
}

.sidebar-menu .has-children .in {
    background-color: #eaeaea96;
    border-radius: 8px;
    padding: 0px 12px;
}

    .sidebar-menu .has-children .in > .has-children > ul {
        padding: 0px 24px;
    }

.sidebar-menu > li:hover > a > i {
    color: white;
}

.sidebar-menu > li:hover > a > i {
    color: white;
}

.prtm-sidebar .prtm-sidebar-menu .has-children > a:after {
    content: ">";
    font-family: inherit;
    right: 16px;
    top: 12px !important;
    color: var(--text-primary-color);
    transform: rotate(90deg);
    font-weight: bold;
}

.sidebar-menu {
    margin: 12px 0px 0px 0px;
}

.prtm-sidebar .prtm-sidebar-menu .sub-menu li a {
    font-size: 12px;
    color: var(--text-primary-color);
}

#input-search {
    padding-left: 10px;
}

#nav-icon3 {
    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-icon3 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-icon3 span:nth-child(1) {
            top: 0px;
        }

        #nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
            top: 10px;
        }

        #nav-icon3 span:nth-child(4) {
            top: 21px;
        }

    #nav-icon3.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }

    #nav-icon3.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #nav-icon3.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #nav-icon3.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;
    }

.sa-button-container {
    display: flex;
    flex-direction: row-reverse;
    text-align: center;
    justify-content: center;
}

    .sa-button-container .cancel {
        margin-left: 10px;
    }

.prtm-header .nav.navbar-nav:first-child {
    padding-left: 10px !important;
}

#searchButton > i {
    margin: 0;
}

.stok-ara > #x-btn > i {
    margin: 0;
}

.clickable {
    cursor: pointer;
}


.form-group-box {
    box-shadow: 0px 0px 12px -9px rgb(0, 0, 0);
    border-radius: 8px;
    border-left: 3px solid;
    border-left-color: var(--theme-color);
    overflow: hidden;
    transition: all 0.5s ease;
    margin-bottom: 25px;
    padding: 16px;
}



.cari-blok-container {
    display: flex;
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
}



#sticky-search-btn {
    position: fixed;
    z-index: 2;
    cursor: pointer;
    margin-top: 20px;
    color: #fff;
    background-color: var(--theme-color);
    border-radius: 50%;
    padding: 9px;
    left: 15px;
    height: 1.5em;
    margin-top: 20px;
    animation: gelatine 4s infinite;
}

    #sticky-search-btn .fa-secondary {
        opacity: 0.8 !important;
    }

    #sticky-search-btn:hover {
        transition: all 0.5s ease-in-out;
        font-size: 1.5em;
    }

#search-btn {
    position: fixed;
    top: 1em;
    right: 1em;
    background-color: rgba(0,0,0,0.8);
    padding: 10px;
    border-radius: 2px;
    color: #FFF;
}

    #search-btn:hover {
        background-color: rgba(0,0,0,0.5);
        cursor: pointer;
    }

#search-overlay {
    display: none;
    z-index: 9999;
}
.block {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    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 {
        -webkit-box-shadow: 0px 0px 29px -6px rgba(191,191,191,1);
        -moz-box-shadow: 0px 0px 29px -6px rgba(191,191,191,1);
        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) {
    .sepet-mobile {
        position: relative;
        float: right;
        margin-left: auto;
        color: #fff;
        padding: 10px;
        border-radius: 8px;
        transition: all ease-in-out .5s;
    }

        .sepet-mobile:active {
            padding: 6px;
            margin-right: 4px;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
            transition: all ease-in-out .02s;
        }

            .sepet-mobile:active svg {
                font-size: 18px;
                transition: all ease-in-out .1s;
            }

        .sepet-mobile .badge {
            margin-left: -36px;
            margin-top: -36px;
            vertical-align: middle;
        }

        .sepet-mobile > a > svg {
            font-size: 22px;
            vertical-align: middle;
            color: var(--theme-color);
            transition: all ease-in-out .5s;
        }

    .navbar-sticked .sepet-mobile {
        padding: 6px;
    }

        .navbar-sticked .sepet-mobile svg {
            font-size: 20px;
        }

    .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;
        }
    .navbar-right {
        display:none !important;
    }
}


@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);
    }
}
