/*================================================================================
	Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
	Version: 2.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */

/*   loading bar*/

body {
	background-color: white;
}

.loader {
	position: relative;
	width: 100px;
	height: 100px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.circular {
	animation: rotate 2s linear infinite;
	height: 100px;
	position: relative;
	width: 100px;
}

.path {
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	stroke: #B6463A;
	animation:
		dash 1.5s ease-in-out infinite,
		color 6s ease-in-out infinite;
	stroke-linecap: round;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35;
	}

	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -124;
	}
}

@keyframes color {

	100%,
	0% {
		stroke: #26A628;
	}

	40% {
		stroke: #26A628;
	}

	66% {
		stroke: #26A628;
	}

	80%,
	90% {
		stroke: #26A628;
	}
}

/*   loading bar*/

.clickable-image {
	width: 50vw;
}

.image-open {
	animation: scaleUp 2s forwards linear;
}

.clickable-image:hover {
	cursor: pointer;
}

@keyframes scaleUp {
	from {
		width: 50vw;
	}

	to {
		width: 100vw;
	}
}


.form-control {
	border: 1px solid #afb3b3;
	height: 45px;
}

.text-size-16{
	font-size: 16;
	font-weight: 700;
}
.text-size-18{
	font-size: 18;
	font-weight: 700;
}
.btn-sm{
height: 30px;  
font-size: 15;
}
.card{
	background-color: white;
}