/*
* Created by CeLa
* Copyright 2024 by CeLa 
* Theme styles
*/

/*
 * Default vars
 */
:root {
	--base-color: #222222;
	--pri-color: #3b7eff;
	--sec-color: #1f212c;
	--thd-color: #2a2c38;
	--fourth-color: #e8eaed;
	
	--pri-font: 'Arial';
	--sec-font: 'Helvetica';
}

html, body {
	height: 100%;
}

/*
 * Breadcrumb
 */
.breadcrumb-outer {
	padding: 1rem 0;
	border-bottom: 1px solid var(--fourth-color);
}
.breadcrumb-outer ol.breadcrumb {
	margin: 0;
}
.breadcrumb-outer ol.breadcrumb > li.breadcrumb-item {}
.breadcrumb-outer ol.breadcrumb > li.breadcrumb-item > a {
	text-decoration: none;
}

/*
 * Process circle
 */
.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(255,255,255,0.2);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap:before {
	position: absolute;
	content: '\ea76';
	text-align: center;
	line-height: 45px;
	font-size: 24px;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
	font-family: 'remixicon' !important;
	font-style: normal;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: #ddd;
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}