:root {
	/* style.css orijinal renk paletinden çekildi */
	--primary-orange: #FE9F43; 
	--primary-orange-hover: #e68e39;
	--navy-dark: #1B2850;
	--green-success: #10a09a;
	--blue-info: #00cfe8;
	--red-danger: #ea5455;
	--bg-body: #F7F7F7;
	--sidebar-width: 250px;
	--header-height: 65px;
	--text-main: #646B72;
	--text-muted: #888888;
	--text-orange: #FE9F43;
	--text-purple: #6f42c1;
	--border-color: #f0f0f0;
	--sidebar-bgcolor: #2d333d;
}

body {
	/* style.css'teki orijinal font ve renk tanımları */
	font-family: "Nunito", sans-serif;
	font-size: 14px;
	color: var(--text-main);
	line-height: 1.5;
	background-color: var(--bg-body);
	overflow-x: hidden;
	overflow-y: auto;
}

/* style.css Orijinal Seçim Efekti */
::selection {
	background: #FE9F43;
	color: #ffffff;
	text-shadow: none;
}

a { text-decoration: none; }

/* ======== SIDEBAR ======== */
.sidebar {
	width: var(--sidebar-width);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	background: var(--sidebar-bgcolor);
	color: #fff;
	border-right: 1px solid var(--border-color);
	z-index: 1000;
	overflow-y: auto;
	transition: all 0.3s;
	/* Firefox Scrollbar */
	scrollbar-width: thin;
	scrollbar-color: #777f8c transparent;
}

/* Webkit (Chrome, Safari, Edge) Scrollbar */
.sidebar::-webkit-scrollbar { 
	width: 6px; 
}
.sidebar::-webkit-scrollbar-track { 
	background: transparent; 
}
.sidebar::-webkit-scrollbar-thumb { 
	background-color: #d1d5db; 
	border-radius: 10px; 
}
.sidebar::-webkit-scrollbar-thumb:hover { 
	background-color: #9ca3af; 
}

.sidebar-header {
	height: var(--header-height);
	display: flex;
	align-items: center;
	padding: 0 1.5rem;
	border-bottom: 1px solid var(--border-color);
}

.sidebar-logo {
	font-weight: 800;
	font-size: 1.2rem;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Poppins", sans-serif;
}

.sidebar-logo i { color: var(--primary-orange); font-size: 1.4rem; }
.sidebar-logo span.pos-text { font-weight: 500; font-size: 0.8rem; color: var(--primary-orange); margin-top: 4px;}

.sidebar-menu { padding: 1rem 0; }
.menu-title {
	padding: 0.8rem 1.5rem 0.4rem;
	font-size: 0.65rem;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.5px;
	font-family: "Poppins", sans-serif;
}

.menu-item {
	display: flex;
	align-items: center;
	padding: 0.6rem 1.5rem;
	color: #fff;
	font-weight: 600;
	transition: 0.2s;
	position: relative;
}
.text-purple {color:var(--text-purple);}
.menu-item svg{ font-size: 1.1rem; margin-right: 12px; color: #fff; width: 20px; text-align: center; }
.menu-item img {margin-right: 12px;}

.menu-item.active, .menu-item:hover {
	background-color: #646b72;
	color: #fff;
	border-right: 3px solid var(--primary-orange);
}

/* ======== HEADER ======== */
.header {
	position: fixed;
	top: 0;
	right: 0;
	left: var(--sidebar-width);
	height: var(--header-height);
	background: #ffffff;
	border-bottom: 1px solid var(--border-color);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.5rem;
	transition: all 0.3s;
}

.search-bar {
	position: relative;
	width: 300px;
}
.search-bar svg {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #aaa;
}
.search-bar input {
	width: 100%;
	padding: 0.4rem 1rem 0.4rem 2.2rem;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	background-color: #fdfdfd;
	font-size: 0.85rem;
	outline: none;
	transition: all 0.3s ease;
}
.search-bar input:focus {
	border-color: var(--primary-orange);
	box-shadow: 0 0 0 0.2rem rgba(254, 159, 67, 0.25);
}

.header-right { display: flex; align-items: center; gap: 1rem; }

.btn-add-new {
	background-color: var(--primary-orange);
	color: white;
	border: none;
	padding: 0.4rem 1rem;
	border-radius: 6px;
	font-weight: 700;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
}
.btn-add-new:hover { background-color: var(--primary-orange-hover); color: white; transform: translateY(-1px); }

.btn-pos {
	background-color: var(--navy-dark);
	color: white;
	border: none;
	padding: 0.4rem 1.2rem;
	border-radius: 6px;
	font-weight: 700;
	font-size: 0.85rem;
	transition: all 0.3s ease;
}
.btn-pos:hover { background-color: #121b36; color: white; }

.header-icon {
	font-size: 1.2rem;
	color: #666;
	position: relative;
	cursor: pointer;
	transition: color 0.3s;
}
.header-icon:hover { color: var(--primary-orange); }
.badge-dot {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 16px;
	height: 16px;
	background-color: var(--red-danger);
	color: white;
	font-size: 0.55rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid white;
	font-weight: bold;
}

/* ======== MAIN CONTENT ======== */
.main-wrapper {
	margin-left: var(--sidebar-width);
	padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
	transition: all 0.3s;
}

.page-header h4 { font-family: "Poppins", sans-serif; font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; font-size: 1.3rem; }
.page-header p { color: var(--text-muted); font-size: 0.85rem; }

.date-picker-box {
	display: flex;
	align-items: center;
	gap: 8px;
}
/* Alerts */
.alert-warning-custom {
	background-color: #fff4ea;
	border: 1px solid #ffe5d0;
	color: #e88d36;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 10px;
}
.alert-warning-custom a { color: var(--primary-orange); font-weight: 700; text-decoration: underline; }

/* Cards */
.card-custom {
	background: white;
	border-radius: 10px;
	border: none;
	box-shadow: 0 0 15px rgba(0,0,0,0.02);
	padding: 1.25rem;
	height: 100%;
}

.stat-box-color {
	border-radius: 10px;
	padding: 1.25rem;
	color: #333;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s ease;
}
.stat-box-color:hover { transform: translateY(-5px); }
.stat-box-color svg {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 3rem;
	opacity: 0.2;
}
.stat-box-orange { background: #F9EDE1; }
.stat-box-navy { background: #E1E9F9; }
.stat-box-teal { background: #e4f9e1; }
.stat-box-blue { background: #E1F1F9; }

.stat-value { font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; font-family: "Poppins", sans-serif; }
.stat-title { font-size: 0.85rem; opacity: 0.9; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.stat-badge { background: rgba(255,255,255,0.2); font-size: 0.7rem; padding: 2px 6px; border-radius: 4px; }

/* White Stat Boxes */
.white-stat {
	background: white;
	border-radius: 10px;
	padding: 1.25rem;
	border: 1px solid var(--border-color);
	position: relative;
	transition: box-shadow 0.3s ease;
}
.white-stat:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.white-stat-title { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 5px; font-weight: 600; }
.white-stat-val { font-size: 1.2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 5px; font-family: "Poppins", sans-serif;}
.white-stat-trend { font-size: 0.75rem; font-weight: 600; }
.trend-up { color: var(--green-success);border-top: 1px solid #eee;padding-top: 10px; }
.trend-down { color: var(--red-danger); }
.white-stat-icon {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}
.icon-blue { background: #e0f9fc; color: var(--blue-info); }
.icon-green { background: #e5f8ed; color: var(--green-success); }
.icon-orange { background: #fff4ea; color: var(--primary-orange); }
.icon-purple { background: #f3e8ff; color: #a855f7; }

/* Chart Containers */
.chart-title-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}
.chart-title { font-size: 1rem; font-weight: 700; color: var(--navy-dark); font-family: "Poppins", sans-serif; }
.btn-filter {
	background: #f8f9fa;
	border: 1px solid var(--border-color);
	color: #555;
	font-size: 0.75rem;
	padding: 4px 10px;
	font-weight: 600;
	transition: all 0.2s;
}
.btn-filter:hover { background: #f0f0f0; }
.btn-filter.active { background: var(--primary-orange); color: white; border-color: var(--primary-orange); }

/* Info Cards */
.info-card {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 1rem 0;
	text-align: center;
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.3s;
}
.info-card:hover { border-color: var(--primary-orange); }
.info-card i { font-size: 1.2rem; margin-bottom: 5px; }

/* Lists */
.list-item {
	display: flex;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-color);
}
.list-item:last-child { border-bottom: none; padding-bottom: 0; }
.item-img { width: 40px;height: 40px;object-fit: cover;background: #fff;margin-right: 12px;border-radius: 50px;box-shadow: 0 0 1px #bbb;padding: 2px;}
.item-details h6 { font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; color: var(--navy-dark); font-family: "Poppins", sans-serif; }
.item-details p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0; }
.item-action { margin-left: auto; text-align: right; }
.badge-soft-success { background: #e5f8ed; color: var(--green-success); border: 1px solid #c8f0d8; }
.badge-soft-danger { background: #fceaea; color: var(--red-danger); border: 1px solid #fad1d1; }
.badge-soft-info { background: #e0f9fc; color: var(--blue-info); border: 1px solid #bdf1f7;}
.badge-soft-warning { background: #fff4ea; color: var(--primary-orange); border: 1px solid #ffe5d0;}
.item-action span {display:block}
.item-action span.price {font-weight:bold}
.item-action span.stock {font-size:0.7rem;}
/* Table */
.table-custom th {
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--text-muted);
	border-top: none;
	border-bottom: 1px solid var(--border-color);
	padding: 12px;
	font-weight: 700;
}
.table-custom td {
	font-size: 0.85rem;
	vertical-align: middle;
	padding: 12px;
	border-bottom: 1px solid var(--border-color);
	color: #444;
	font-weight: 500;
}
.user-avatar { width: 30px; height: 30px; border-radius: 50%; margin-right: 10px; }

/* Utilities */
.text-orange { color: var(--primary-orange) !important; }

/* Heatmap Mock */
.heatmap-grid { display: grid; grid-template-columns: auto repeat(7, 1fr); gap: 4px; font-size: 0.7rem; color: var(--text-muted); font-weight: 600;}
.hm-row-label { display: flex; align-items: center; justify-content: flex-end; padding-right: 8px; }
.hm-cell { height: 20px; border-radius: 3px; background: #fff4ea; transition: opacity 0.2s; cursor: pointer;}
.hm-cell:hover { opacity: 0.8; }
.hm-cell.lvl-1 { background: #ffe5d0; }
.hm-cell.lvl-2 { background: #ffc499; }
.hm-cell.lvl-3 { background: #FE9F43; }
.hm-day-label { text-align: center; margin-top: 4px; }

@media (max-width: 991px) {
	.sidebar { left: -250px; }
	.header { left: 0; }
	.main-wrapper { margin-left: 0; }
}
/* modal arkaplan */
.modal-backdrop.show{
    backdrop-filter: blur(6px);
    background: rgba(15,23,42,.45);
}

/* modal dialog animasyon */
.modal.fade .modal-dialog{
    transform: scale(.92) translateY(20px);
    transition: all .25s ease;
}

.modal.show .modal-dialog{
    transform: scale(1) translateY(0);
}

/* modal kutusu */
.modal-content{
    border:none;
    border-radius:0.5rem;
    box-shadow:
        0 20px 40px rgba(0,0,0,.10),
        0 5px 15px rgba(0,0,0,.05);
}

/* header */
.modal-header{
    padding:18px 22px;
    border-bottom:1px solid #f1f3f5;
}

.modal-title{
    font-size:18px;
    font-weight:600;
    color:#344054;
}

/* close button */
.modal-header .btn-close{
    border-radius:8px;
    padding:8px;
    transition:.2s;
}

/* body */
.modal-body{
    padding:24px;
}
.modal-body.noPadding{
    padding:0px 0.5rem;
}
/* footer */
.modal-footer{
    border-top:1px solid #f1f3f5;
    padding:18px 22px;
}

/* kart butonların (senin ekle butonların) */
.add-card{
    display:block;
    padding:20px;
    border-radius:10px;
    border:1px solid #e9ecef;
    background:#fff;
    text-align:center;
    transition:all .2s ease;
}

.add-card:hover{
    border-color:#0d6efd;
    box-shadow:0 10px 20px rgba(0,0,0,.06);
    transform:translateY(-3px);
}
.btn-filter svg {vertical-align: inherit;}
.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.5rem;
    background-color: #f8f9fa; /* Hafif gri arka plan */
    border: 1px solid #e9ecef; /* İnce çerçeve */
    border-radius: 12px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.action-card:hover {
    background-color: #fff;
    border-color: var(--primary-orange); /* Hoverda mavi çerçeve (Bootstrap primary) */
    color: var(--primary-orange); /* Yazı ve ikon rengi mavi olsun */
    transform: translateY(-3px); /* Hafif yukarı kalkma efekti */
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.1); /* Hafif mavi gölge */
}

/* İkonların da hover rengine uyması için */
.action-card:hover svg {
    stroke: var(--primary-orange);
}
.spin-animation {
    animation: spin-anim 1s linear infinite;
}

@keyframes spin-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hidden {display:none}
.title {font-size: 1.5rem;color: #000;padding: 0.5rem 0px;}
.panel {background: #fff;border-radius: 8px;border: 1px solid #ddd;padding: 0px;margin-bottom: 15px;box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);overflow: hidden;}
.panelBody {clear: both;padding: 15px;}
.miniButtons {justify-content: flex-end !important;}
.btnPurple, .btnPurple:hover, .btnPurple:focus, .btnPurple:active, .btnPurple.active,.btnPurple:focus-visible, .bgOrange {background: var(--primary-orange);color: #fff;}
.btnDark, .btnDark:hover, .btnDark:focus, .btnDark:active, .btnDark.active,.btnDark:focus-visible, .bgDark {background: var(--navy-dark);color: #fff;}
.btnGreen, .btnGreen:hover, .btnGreen:focus, .btnGreen:active, .btnGreen.active,.btnGreen:focus-visible, .bgGreen {background: var(--green-success);color: #fff;}
input:focus-visible, input:focus, .form-control:focus, .form-select:focus {box-shadow:none;border-color:#cdcdcd}
.w-50 {width:50%}
.w-40 {width:40%}
.w-60 {width:60%}
.bgPurple {background: #7c3aed;color: #fff;}
.svgDiv {text-align: center;padding-top: 15px;}
.panelPrice {font-size: 24px;margin: 0 !important;}
.sitePrice div {border-bottom:1px solid #eee;padding-bottom:10px;margin-bottom:10px}
.sitePrice p {margin:0px;padding:0px;font-size:13px}
.sitePrice .timeAgo {font-size:12px}
.sitePrice .priceDiv {font-weight:bold;font-size:15px}
.sitePrice .productNameP {font-size:13px}
.sitePrice img {max-width:60%;margin-top: 10px;height: auto;max-height:40px;}
.sitePrice span.productStar {display:block;font-size:12px}
.sitePrice span.star {color:orange;font-size:15px}
.mTop0 {margin-top:0px !important}
.color-black {color:var(--navy-dark)}
.cursor-pointer {cursor:pointer}
.text-left {text-align:left}
.text-capitalize {text-transform:capitalize}
.pazaryeriTD img {vertical-align: sub;margin-right: 5.71px;}
.miniButton svg, .svgCenter svg {vertical-align: sub;}
.no-radius {border-radius:0px !important}
.no-border {border:0px !important}
#drop-area {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 27px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f9f9f9;
    cursor: pointer;
    position: relative;
}

#drop-area.highlight {
    border-color: #007bff;
    background: #e7f3ff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}

#drop-area.has-file {
    border-color: #28a745;
    background: #f0fff4;
}

#file-label {
    display: inline-block;
    padding: 10px 20px;
    background: #1e293b;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

#file-label:hover {
    background: #111;
    transform: translateY(-2px);
}

.file-info-item {
    background: #e9ecef;
    border-radius: 5px;
    padding: 10px;
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #007bff;
}
.drag-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 10;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}
.buttonsDiv, .text-right {text-align:right}
.btnDefault {background:#fff;border:1px solid #dedede;color:#333;}
.filterBtn span {background: #fff;padding: 3px 6px;color: #000;border-radius: 7px;font-size: 13px;margin-left: 6px;}
#miniHesaplaForm {position:fixed;left:50%;transform: translateX(-50%);max-width:571px;width:calc(100% - 15px);bottom:-600px;border-radius:6.20px;background:#1e293b;color:#fff;border:1px solid #243247;transition: bottom .7s ease;margin-bottom: 6px;overflow: initial;}
#miniHesaplaForm .title {font-size:16px;margin-bottom: 0;color:#fff}
#miniHesaplaForm .title span {float:right;color:#fff;padding-right: 15px;}
#miniSonuc span {background: #10a09a;padding: 0px 20px 3px;}
#miniSonuc .zarar {background: #c82525;}
#panelClose {padding: 4px;line-height: 13px;position: absolute;left: 50%;transform: translateX(-50%);border: 2px solid #fff;color: #fff;background: #1e293b;border-radius: 20px;top: -12px;}
.teklifler .active {background:#c6f1da;cursor:pointer}
.teklifler .priceDanger {background:#fdf0cf;cursor:pointer}
.teklifler span {display:block;padding:2px 0px;font-size:13px;}
.teklifler .btn {display: block;margin-bottom: 6px;padding: 5px 3px;line-height: 10px;margin-top: 8px;width: 100%;}
.teklifler span.textGreen {font-size:12px;color:#555}
.teklifler span.fiyat b{font-size:14px;}
.teklifler span.input-group {padding-top:10px;}
.teklifler span.input-group input {width: 100px;float: left;}
.teklifler span.input-group-text{width:25px;line-height:32px;display:inline-block}
.bg-red td {background-color: #ffe4e4;box-shadow: none !important;}
.integration-card {
    transition: all 0.3s ease;
    background-color: #ffffff;
}
.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.08) !important;
    border-color: #cbd5e1 !important;
}
/* Logoları şık bir çerçevenin içine hapsediyoruz */
.integration-logo-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.integration-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.buttonDiv {display:flex}
.buttonDiv .btn {float: left;text-align:center}
.buttonDiv .hesaplaButton {width:83%;margin-right:2%}
.buttonDiv .sil {width:15%}
.karHesaplaDiv {display:none;}
.karHesaplaDiv span {display:block;text-align:center}
.karHesaplaDiv span.price {font-size:23px}
.karHesaplaDiv span.minPrice {font-size:18px}
.karHesaplaDiv .title > div {background:#1e293b;color:#fff;padding-top:7px;padding-bottom:7px}
.karHesaplaDiv .title > div.kar {background: #13838e;color:#fff;transition:2s;}
.karHesaplaDiv .title > div.zarar {background: #c82525;color:#fff;transition:2s;}
.karHesaplaDiv .tabs {padding:10px 0px;border-bottom:1px solid #ddd}
.hesaplaTable, .hesaplaTable * {border:1px solid #000;text-align:center;width:100%}
.hesaplaTable tr td {
  background: #222830;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  color: #fff;
}
.hesaplaTable tr:nth-of-type(2n+1) td {background:#1F2937}
.hesaplaTable tr td.oranDiv {background: #182B25;}
.hesaplaTable tr:nth-of-type(2n+1) td.oranDiv {background:#1F3730}
.hesaplaTable tr td.pricesDiv {background: #19121A;}
.hesaplaTable tr:nth-of-type(2n+1) td.pricesDiv {background: #2A212B;}
.hesaplaTable tr:hover td {
  background: #101822;
  filter: brightness(1.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.btnBorder {border:1px solid #ddd;}
.btnBorder.active{background:#000;color:#fff;border: none;}
#sonucDiv tr > .siteName {text-align:left}
#sonucDiv tr > .siteName img {border:none;height:20px;width:20px;margin-right:10px}
.borderButton {
	border: none;
	background: transparent;
	color: #475569;
	padding: 6px;
	border-radius: 6px;
	transition: all 0.2s;
}

.borderButton:hover {
	background: #f1f5f9;
	color: #1e293b;
}
.rightDiv {margin-top: -5px;}
@media(min-width:980px)
{
	#mobileMenuBtn {display:none}
}
#attrLoading {position: fixed;top: 50%;left: 50%;z-index: 9999;}
.loader {
  width: 50px;
  height: 50px;
  border: 6px solid #ddd;
  border-top: 6px solid #4a69ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: auto;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
.showBrand {
  display: none;
  position: absolute;
  background: #fff;
  width: calc(100% - 30px);
  top: 72px;
  z-index: 9;
  border: 1px solid #ddd;
  padding: 2px;
}
.showBrand > div {cursor:pointer;padding:8px;border-bottom:1px solid #ddd}
.showBrand > div:hover {background:#eee}
.marka {position:relative}
.toast {position: fixed;bottom: 16px;left: 50%;transform: translateX(-50%);background: #000;z-index: 9999;}
.form-stock .form-control {max-width:70px;text-align:center;height: 30px;}
.form-stock .btn-sm {height: 30px;}
.stokTable a {color:#000}