:root {
	--white-light: #f0f0f0;
	--delay: 0.1s;
}

.dark {
	--color: white;
	--back: #0e0e23;
	--front-back: #121635;
	--all-gradient-start: #1a2049;
	--all-gradient-end: #13162f;
	--back-opacity-25: #0e0e2325;
	--back-opacity-50: #0e0e2380;
	--back-opacity-75: #0f0f24bf;
	--light: #3f4247;
	--opposite-back: #0e0e23;
	--opposite-color: #8162bd;
	--opposite-link-color: #bfb4d5 ;
	--opposite-link-hover-color: #2196f3;
	--opposite-bar-color: #7259a3;
	--bar-gradient-start: #524075;
	--bar-gradient-end: #392c52;
}

.light {
	--color: #1f2227;
	--back: #f8f8f8;
	--front-back: #ffffff;
	--back-opacity-25: #22292f25;
	--back-opacity-50: #22292f80;
	--back-opacity-75: #22292fbf;
	--light: #f0f0f0;
	--opposite-back: #f8f8f8;
	--opposite-color: #191930;
	--opposite-link-color: #3ad08f;
	--opposite-link-hover-color: #097bed;/*2196f3*/
	--all-gradient-start: #ffffff;
	--all-gradient-end: #ffffff;
	--opposite-bar-color: #097bed;
	--bar-gradient-start: #ffffff;
	--bar-gradient-end: #ffffff;
}

/* .dark {
	--color: white;
	--back: #181818;
	--front-back: #202021;
	--all-gradient-start: #202021;
	--all-gradient-end: #202021;
	--back-opacity-25: #0e0e2325;
	--light: #3f4247;
	--opposite-back: #181818;
	--opposite-color: #dddddd;
	--opposite-link-color: #4e80a8;
	--opposite-bar-color: #dddddd;
} */

/* .dark {
	--color: white;
	--back: #161b1f;
	--front-back: #1b2227;
	--all-gradient-start: #1b2227;
	--all-gradient-end: #1b2227;
	--back-opacity-25: #0e0e2325;
	--light: #3f4247;
	--opposite-back: #161b1f;
	--opposite-color: #dddddd;
	--opposite-link-color: #4e80a8;
} */

.border {
	border-color: var(--opposite-color) !important;
}

* {
	outline: none;
	box-sizing: border-box;
}

button:focus {
	box-shadow: none !important;
}

html,
body {
	min-width: 100% !important;
	height: 100% !important;
}

body {
	background: var(--back);
	color: var(--color);
}



/**
* İstediğimiz elemanı tam ekran yaparız
*/
.full-screen {
	position: fixed !important;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1060;
}

/**
* Sayfalar için eklenenler
*/

.login-back {
	background: url("/files/jpg/loginBack.jpg") center center;
	background-size: cover;
}

/**
* Tema tanımlamaları
* Theme definitions
*/

.back {
	background: var(--front-back);
	background: radial-gradient(circle, var(--all-gradient-start) 0%, var(--all-gradient-end) 100%);
}

.back-opacity-25 {
	background: var(--back-opacity-25);
}

.back-opacity-50 {
	background: var(--back-opacity-50);
}

.back-opacity-75 {
	background: var(--back-opacity-75);
}

.back-opacity-50 .white, .back-opacity-75 .white {
	color: white;
}

.opposite-back {
	background: var(--opposite-back);
}

.opposite-color, .icon {
	background: var(--opposite-color);
}

.gradient-text {
	background-image: linear-gradient(
		90deg,
		rgb(118, 167, 63) 0%,
		rgb(51, 143, 118) 40%,
		rgb(55, 141, 167) 50%,
		rgb(117, 152, 242) 70%,
		rgb(144, 118, 236) 100%
	);
	color: transparent;
	background-size: contain;
	background-clip: text;
	-webkit-background-clip: text;
}

/**
* Kart tanımlamaları
* Card definitions
*/

.card,
.card-back,
input {
	background: var(--front-back);
	background: radial-gradient(circle, var(--all-gradient-start) 0%, var(--all-gradient-end) 100%);
}
input {
	border: 1px solid var(--opposite-bar-color);
}
input:focus, input:hover
{
	border: 1px solid var(--opposite-link-hover-color);
}

/**
* Icon tanımlamaları
* Icon definitions
*/
.icon {
	mask-size: cover;
	-webkit-mask-size: cover;
	width: 20px;
	height: 20px;
}

.maximize-icon {
	mask-image: url(/files/svg/sharp/maximize-bold.svg);
	-webkit-mask-image: url(/files/svg/sharp/maximize-bold.svg);
}

.minimize-icon {
	mask-image: url(/files/svg/sharp/minimize-bold.svg);
	-webkit-mask-image: url(/files/svg/sharp/minimize-bold.svg);
}

.mask-star {
	mask-image: url(/files/svg/sharp/star.svg);
	-webkit-mask-image: url(/files/svg/sharp/star.svg);
}

.login-icon {
	mask-image: url(/files/svg/shoft/login.svg);
	-webkit-mask-image: url(/files/svg/shoft/login.svg);
}

.logout-icon {
	mask-image: url(/files/svg/shoft/logout.svg);
	-webkit-mask-image: url(/files/svg/shoft/logout.svg);
}

.user-icon {
	mask-image: url(/files/svg/shoft/user.svg);
	-webkit-mask-image: url(/files/svg/shoft/user.svg);
}

/**
* Animasyon
* Animation
*/
.transition,
.transition::after,
.transition::before {
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
}

.transition-all,
.transition-all *,
.transition-all *::after,
.transition-all *::before {
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
}

/**
* Kaydırma çubuğu
* Scroolbar 
*/

*::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1) !important;
	background: radial-gradient(circle, var(--bar-gradient-start) 0%, var(--bar-gradient-end) 100%) !important;
	border-radius: 10px !important;
}

*::-webkit-scrollbar {
	width: 10px !important;
	background: radial-gradient(circle, var(--bar-gradient-start) 0%, var(--bar-gradient-end) 100%) !important;
	border-radius: 10px !important;
}

*::-webkit-scrollbar-thumb {
	border-radius: 10px !important;
	background-color: var(--opposite-bar-color) !important;
}

*::-webkit-scrollbar-button {
	display: none !important;
}

/**
* Özel eklenenler
* Special addons
*/

.clear {
	clear: both;
}

.border-bottom-animation-3 a {
	position: relative;
}

.border-bottom-animation-3 a:hover {
	animation-name: swing !important;
	animation-delay: 250ms !important;
	animation-duration: 500ms !important;
}

.border-bottom-animation-3 a::before {
	content: " ";
	position: absolute;
	left: 50%;
	width: 0;
	opacity: 0;
	bottom: -100px;
	height: 10px;
	border-radius: 50%;
}

.border-bottom-animation-3 a:hover::before {
	background: var(--opposite-link-color);
	width: 100%;
	left: 0;
	bottom: 0;
	opacity: 1;
	height: 3px;
}

.divider {
	border-color: var(--opposite-back) !important;
}

/**
* SweetAlert2 eklenenler
* SweetAlert2 additions 
*/

.swal2-popup {
	background: var(--back) !important;
}

.swal2-popup *:not(button) {
	color: var(--color) !important;
}

/**
* Yuvarlak, Yarıçap tanımalamaları
* Round, Radius definitions
*/

.rounded-xs {
	border-radius: 5px !important;
}

.rounded-sm {
	border-radius: 10px !important;
}

.rounded-md {
	border-radius: 15px !important;
}

.rounded-lg {
	border-radius: 20px !important;
}

.rounded-pill {
	border-radius: 50px !important;
}

.rounded-fifty-percent {
	border-radius: 50% !important;
}

/**
* Taşma tanımlamaları
* Overflow definitions
*/

.overflow-auto {
	overflow: auto;
}

.overflow-hidden {
	overflow: hidden;
}

/**
* Yükseklik tanımlamaları
* Height definitions
*/

.height-10 {
	height: 10px;
}

.height-15 {
	height: 15px;
}

.height-20 {
	height: 20px;
}

.height-25 {
	height: 25px;
}

.height-30 {
	height: 30px;
}

.height-40 {
	height: 40px;
}

.height-50 {
	height: 50px;
}

.height-60 {
	height: 60px;
}

.height-70 {
	height: 70px;
}

.height-80 {
	height: 80px;
}

.height-90 {
	height: 90px;
}

.height-100 {
	height: 100px;
}

.height-150 {
	height: 150px;
}

.height-170 {
	height: 170px;
}

.height-200 {
	height: 200px;
}

.height-250 {
	height: 250px;
}

.height-300 {
	height: 300px;
}

.height-350 {
	height: 350px;
}

.height-400 {
	height: 400px;
}

.min-h-10 {
	min-height: 10px;
}

.min-h-15 {
	min-height: 15px;
}

.min-h-20 {
	min-height: 20px;
}

.min-h-25 {
	min-height: 25px;
}

.min-h-30 {
	min-height: 30px;
}

.min-h-40 {
	min-height: 40px;
}

.min-h-50 {
	min-height: 50px;
}

.min-h-60 {
	min-height: 60px;
}

.min-h-70 {
	min-height: 70px;
}

.min-h-80 {
	min-height: 80px;
}

.min-h-90 {
	min-height: 90px;
}

.min-h-100 {
	min-height: 100px;
}

.min-h-150 {
	min-height: 150px;
}

.min-h-200 {
	min-height: 200px;
}

.min-h-250 {
	min-height: 250px;
}

.min-h-300 {
	min-height: 300px;
}

.min-h-350 {
	min-height: 350px;
}

.min-h-400 {
	min-height: 400px;
}

/**
* Genişlik tanımlamaları
* Width definitions
*/

.width-10 {
	width: 10px;
}

.width-15 {
	width: 15px;
}

.width-20 {
	width: 20px;
}

.width-25 {
	width: 25px;
}

.width-30 {
	width: 30px;
}

.width-40 {
	width: 40px;
}

.width-50 {
	width: 50px;
}

.width-60 {
	width: 60px;
}

.width-70 {
	width: 70px;
}

.width-80 {
	width: 80px;
}

.width-90 {
	width: 90px;
}

.width-100 {
	width: 100px;
}

.min-w-10 {
	min-width: 10px;
}

.min-w-15 {
	min-width: 15px;
}

.min-w-20 {
	min-width: 20px;
}

.min-w-25 {
	min-width: 25px;
}

.min-w-30 {
	min-width: 30px;
}

.min-w-40 {
	min-width: 40px;
}

.min-w-50 {
	min-width: 50px;
}

.min-w-60 {
	min-width: 60px;
}

.min-w-70 {
	min-width: 70px;
}

.min-w-80 {
	min-width: 80px;
}

.min-w-90 {
	min-width: 90px;
}

.min-w-100 {
	min-width: 100px;
}

.min-w-150 {
	min-width: 150px;
}

.min-w-200 {
	min-width: 200px;
}

.min-w-250 {
	min-width: 250px;
}

.min-w-300 {
	min-width: 300px;
}

.min-w-350 {
	min-width: 350px;
}

.min-w-400 {
	min-width: 400px;
}

.min-w-450 {
	min-width: 450px;
}

.min-w-500 {
	min-width: 500px;
}

.min-w-600 {
	min-width: 600px;
}

.min-w-700 {
	min-width: 700px;
}

.min-w-800 {
	min-width: 800px;
}

.min-w-900 {
	min-width: 900px;
}

.min-w-1000 {
	min-width: 1000px;
}

.min-w-1100 {
	min-width: 1100px;
}

.min-w-1200 {
	min-width: 1200px;
}

.max-w-10 {
	max-width: 10px;
}

.max-w-15 {
	max-width: 15px;
}

.max-w-20 {
	max-width: 20px;
}

.max-w-25 {
	max-width: 25px;
}

.max-w-30 {
	max-width: 30px;
}

.max-w-40 {
	max-width: 40px;
}

.max-w-50 {
	max-width: 50px;
}

.max-w-60 {
	max-width: 60px;
}

.max-w-70 {
	max-width: 70px;
}

.max-w-80 {
	max-width: 80px;
}

.max-w-90 {
	max-width: 90px;
}

.max-w-100 {
	max-width: 100px;
}

.max-w-150 {
	max-width: 150px;
}

.max-w-200 {
	max-width: 200px;
}

.max-w-250 {
	max-width: 250px;
}

.max-w-300 {
	max-width: 300px;
}

.max-w-350 {
	max-width: 350px;
}

.max-w-400 {
	max-width: 400px;
}

.max-w-450 {
	max-width: 450px;
}

.max-w-500 {
	max-width: 500px;
}

.max-w-600 {
	max-width: 600px;
}

.max-w-700 {
	max-width: 700px;
}

.max-w-800 {
	max-width: 800px;
}

.max-w-900 {
	max-width: 900px;
}

.max-w-1000 {
	max-width: 1000px;
}

.max-w-1100 {
	max-width: 1100px;
}

.max-w-1200 {
	max-width: 1200px;
}

/**
* Bootstrap eklenenler
* Bootstrap addons
*/

/* Animasyon kullanarak gel: slideIn */
.dropdown-menu.slide {
	animation: fadeUp .7s both;
}

/** Sağa dayalı ol */
.dropdown-menu.right {
	top: 100% !important;
	right: 0 !important;
	left: auto !important;
}

/** Sola dayalı ol */
.dropdown-menu.left {
	top: 100% !important;
	right: auto !important;
	left: 0 !important;
}

.border-1 { border-width: 1px !important; }
.border-2 { border-width: 2px !important; }
.border-3 { border-width: 3px !important; }
.border-4 { border-width: 4px !important; }
.border-5 { border-width: 5px !important; }

.top-0 {top: 0;}
.top-1 {top: 0.25rem;}
.top-2 {top: 0.5rem;}
.top-3 {top: 1rem;}
.top-4 {top: 2rem;}
.top-5 {top: 3rem;}

.bottom-0 {bottom: 0;}
.bottom-1 {bottom: 0.25rem;}
.bottom-2 {bottom: 0.5rem;}
.bottom-3 {bottom: 1rem;}
.bottom-4 {bottom: 2rem;}
.bottom-5 {bottom: 3rem;}

.right-0 {right: 0;}
.right-1 {right: 0.25rem;}
.right-2 {right: 0.5rem;}
.right-3 {right: 1rem;}
.right-4 {right: 2rem;}
.right-5 {right: 3rem;}

.left-0 {left: 0;}
.left-1 {left: 0.25rem;}
.left-2 {left: 0.5rem;}
.left-3 {left: 1rem;}
.left-4 {left: 2rem;}
.left-5 {left: 3rem;}

.m-n1 {
	margin: -0.25rem !important;
}

.mt-n1, .my-n1 {
	margin-top: -0.25rem !important;
}

.mr-n1, .mx-n1 {
	margin-right: -0.25rem !important;
}

.mb-1, .my-1 {
	margin-bottom: -0.25rem !important;
}

.ml-n1, .mx-n1 {
	margin-left: -0.25rem !important;
}

.m-n2 {
	margin: -0.5rem !important;
}

.mt-n2, .my-n2 {
	margin-top: -0.5rem !important;
}

.mr-n2, .mx-n2 {
	margin-right: -0.5rem !important;
}

.mb-n2, .my-n2 {
	margin-bottom: -0.5rem !important;
}

.ml-n2, .mx-n2 {
	margin-left: -0.5rem !important;
}

.m-n3 {
	margin: -1rem !important;
}

.mt-n3, .my-n3 {
	margin-top: -1rem !important;
}

.mr-n3, .mx-n3 {
	margin-right: -1rem !important;
}

.mb-n3, .my-n3 {
	margin-bottom: -1rem !important;
}

.ml-n3, .mx-n3 {
	margin-left: -1rem !important;
}

.m-n4 {
	margin: -1.5rem !important;
}

.mt-n4, .my-n4 {
	margin-top: -1.5rem !important;
}

.mr-n4, .mx-n4 {
	margin-right: -1.5rem !important;
}

.mb-n4, .my-n4 {
	margin-bottom: -1.5rem !important;
}

.ml-n4, .mx-n4 {
	margin-left: -1.5rem !important;
}

.m-n5 {
	margin: -3rem !important;
}

.mt-n5, .my-n5 {
	margin-top: -3rem !important;
}

.mr-n5, .mx-n5 {
	margin-right: -3rem !important;
}

.mb-n5, .my-n5 {
	margin-bottom: -3rem !important;
}

.ml-n5, .mx-n5 {
	margin-left: -3rem !important;
}

/**
* Yazı tipi tanımlalamarı
* Font definitions
*/

.font-sm-1 {
	font-size: 0.7rem;
}

.font-sm-2 {
	font-size: 0.8rem;
}

.font-sm-3 {
	font-size: 0.9rem;
}

.font-md-1 {
	font-size: 1.1rem;
}

.font-md-2 {
	font-size: 1.2rem;
}

.font-md-3 {
	font-size: 1.3rem;
}

.font-md-4 {
	font-size: 1.4rem;
}

.font-md-5 {
	font-size: 1.5rem;
}

.font-lg-1 {
	font-size: 2rem;
}

.font-lg-2 {
	font-size: 3rem;
}

.font-lg-3 {
	font-size: 4rem;
}

.font-lg-4 {
	font-size: 5rem;
}

.font-lg-5 {
	font-size: 6rem;
}

/**
* Metin tanımlamaları
* Text definitions
*/

.text-bold-300 {
	font-weight: 300;
}

.text-bold-400 {
	font-weight: 400;
}

.text-bold-500 {
	font-weight: 500;
}

.text-bold-600 {
	font-weight: 600;
}

.text-bold-700 {
	font-weight: 700;
}

.text-italic {
	font-style: italic;
}

/**
* Görüntü, obje tanımlamaları
* Image, Object definitions
*/

.object-fit-cover {
	object-fit: cover;
}

/**
* Ekran ön plan tanımlamaları
* Screen foreground definitions
*/

.z-index-front {
	z-index: 1000;
}

.z-index-back {
	z-index: 1;
}

/**
* İmleç tanımlamaları
* Cursor definitions
*/

.cursor-alias {
	cursor: alias;
}

.cursor-all-scroll {
	cursor: all-scroll;
}

.cursor-auto {
	cursor: auto;
}

.cursor-cell {
	cursor: cell;
}

.cursor-context-menu {
	cursor: context-menu;
}

.cursor-col-resize {
	cursor: col-resize;
}

.cursor-copy {
	cursor: copy;
}

.cursor-crosshair {
	cursor: crosshair;
}

.cursor-default {
	cursor: default;
}

.cursor-e-resize {
	cursor: e-resize;
}

.cursor-ew-resize {
	cursor: ew-resize;
}

.cursor-grab {
	cursor: -webkit-grab;
	cursor: grab;
}

.cursor-grabbing {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.cursor-help {
	cursor: help;
}

.cursor-move {
	cursor: move;
}

.cursor-n-resize {
	cursor: n-resize;
}

.cursor-ne-resize {
	cursor: ne-resize;
}

.cursor-nesw-resize {
	cursor: nesw-resize;
}

.cursor-ns-resize {
	cursor: ns-resize;
}

.cursor-nw-resize {
	cursor: nw-resize;
}

.cursor-nwse-resize {
	cursor: nwse-resize;
}

.cursor-no-drop {
	cursor: no-drop;
}

.cursor-none {
	cursor: none;
}

.cursor-not-allowed {
	cursor: not-allowed;
}

.cursor-pointer {
	cursor: pointer;
}

.cursor-progress {
	cursor: progress;
}

.cursor-row-resize {
	cursor: row-resize;
}

.cursor-s-resize {
	cursor: s-resize;
}

.cursor-se-resize {
	cursor: se-resize;
}

.cursor-sw-resize {
	cursor: sw-resize;
}

.cursor-text {
	cursor: text;
}

.cursor-w-resize {
	cursor: w-resize;
}

.cursor-wait {
	cursor: wait;
}

.cursor-zoom-in {
	cursor: zoom-in;
}

.cursor-zoom-out {
	cursor: zoom-out;
}

/**
* Ekran tanımlamaları
* Screen definitions
*/

@media screen and (max-width: 720px) {
	.screen-sm-flex-column {
		flex-direction: column;
	}
}

/**
* Animasyon tanımlamaları
* Animation definitions
*/

@keyframes hoverUp {
	0% {
		transform: none;
	}

	100% {
		transform: translateY(-3px);
	}
}

@keyframes fadeDown {
	0% {
		transform: translateY(-2rem);
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes fadeUp {
	0% {
		transform: translateY(2rem);
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.notification {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #ec5252;
	position: absolute;
	right: 1px;
	border: 1px solid var(--back);
	top: 2px;
	z-index: 1;
}
