﻿body {
	font-family: 'Montserrat', sans-serif;
	-webkit-font-smoothing: antialiased;
}

#body-login {
	background: url("/assets/img/login_bg.gif");
	background-repeat: no-repeat;
	background-attachment: fixed;
	-o-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
}
.bg-soft {
	background: #fafafa !important;
}

.bg-glass {
	background-color: rgba(255, 255, 255, .3);
	backdrop-filter: blur(5px);
}

#login-div {
	border-radius: 3rem;
	padding: 2rem 3rem 2rem 3rem;
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%,-30%);
	width: 100%;
	max-width: 380px;
	background: rgba(255, 255,255,.80);
}
.pointer:hover {
	cursor: pointer;
}
.dashboard-item {
	font-weight: bold;
	padding: 1rem;
	margin: .25rem;
	margin-bottom: 30px;
	border-radius: 1rem;
	position: relative;
}
	.dashboard-item:hover {
		cursor: pointer;
		box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
		transform: scale(1.1);
		transition: transform .2s;
	}
.dashboard-item.bg-primary:hover {
	background: #f6ac0c!important;
}

	.dashboard-item.bg-secondary:hover {
		background: #a28c7a!important;
	}

	.dashboard-item.bg-info:hover {
		background: #ff703e!important;
	}

	.dashboard-item.bg-tertiary:hover {
		background: #f06447!important;
	}
	.dashboard-item.bg-fourty:hover {
		background: #00846b!important;
	}

	.dashboard-item.bg-muted:hover {
		background: rgb(206, 212, 218) !important;
	}

.bg-muted{
	background:rgb(206, 212, 218)!important;
}

.f-24 {
	font-size: 24px !important;
}
.more-rounded {
	border-radius: .5rem;
}
.category_menu_item {
	background: #f8bd3d;
	border-radius: .5rem;
	color: #fff;
	text-align: center;
	padding: .5rem;
}
.category_menu_item:hover {
	cursor: pointer;
	background: #e59f08;
}

.category_menu_item.bg-secondary {
	background: #b7a698;
	border-radius: .5rem;
	color: #fff;
	text-align: center;
	padding: .5rem;
}

.category_menu_item.bg-secondary:hover {
	cursor: pointer;
	background: #a99584!important;
}

	.category_menu_item.bg-tertiary {
		background: #ff703e;
		border-radius: .5rem;
		color: #fff;
		text-align: center;
		padding: .5rem;
	}

		.category_menu_item.bg-tertiary:hover {
			cursor: pointer;
			background: #f06447 !important;
		}

.category_banner {
	background: #f8bd3d;
	border: 1px solid rgb(206, 212, 218) !important;
	border-top-right-radius: .75rem;
	border-top-left-radius: .75rem;
	padding: 5px 1rem 0px 1rem;
	height: 100%;
	position: relative;
}
.category_banner:hover{
	cursor:pointer;
}
.category_table_container {
	border-bottom: 1px solid rgb(206, 212, 218) !important;
	border-right: 1px solid rgb(206, 212, 218) !important;
	border-left: 1px solid rgb(206, 212, 218) !important;
	border-bottom: 1px solid rgb(206, 212, 218) !important;
	border-bottom-right-radius: .75rem;
	border-bottom-left-radius: .75rem;
}
#space_footer {
	margin-bottom: 20px;
}
a:hover {
	text-decoration:none;
}
#footer {
	position: fixed;
	bottom: 0;
	left: 0;
	text-align: center;
	width: 100%;
	color: #fff !important;
	background: #242D65;
	z-index: 3;
}
#footer > a {
	font-weight: bold;
	color: #fff !important;
}
.loader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: rgba(255,255,255,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
}
.dock1 {
	animation: zoom-in-zoom-out 1s ease-out  infinite;
}
.dock2 {
	animation: zoom-in-zoom-out 1s ease-out 0.25s infinite;
}
.dock3 {
	animation: zoom-in-zoom-out 1s ease-out 0.5s infinite;
}

.absolutly-center{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
@keyframes zoom-in-zoom-out {
	0% {
		transform: scale(1, 1);
	}
	50%,100% {
		transform: scale(0.5, 0.5);
	}
}
@media screen and (max-width: 1024px) {
	.hide-mobile {
		display: none;
	}
}
@media screen and (max-width: 479px) {
	#name_user_lbl {
		display:none;
	}
}
@media screen and (max-width: 991px) {
	.category_menu_item{
		height:64px;

	}
}

.loader-modal{
	position:absolute;
	width:100%;
	height:100%;
	background:rgba(255,255,255,0.8);
	text-align:center;
}

.loader-modal>.content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
}
/*BOOTSTRAP EXTENSION*/
.border-tertiary {
	border: 1px solid #ff703e !important;
}

.bg-tertiary {
	background: #ff703e;
}
.bg-fourty {
	background: #009579;
}
.text-tertiary {
	color: #ff703e;
}

.text-fourty {
	color: #009579;
}

.btn-tertiary {
	color: #fff;
	background-color: #ff703e;
	border-color: #ff703e
}
	.btn-tertiary:hover {
		color: #fff;
		background-color: #f06447;
		border-color: #f06447;
	}
	.btn-tertiary.focus, .btn-tertiary:focus {
		color: #fff;
		background-color: #f06447;
		border-color: #f06447;
		box-shadow: 0 0 0 .2rem rgba(98,85,80,.5);
	}
	.btn-tertiary:active, .btn-tertiary:target {
		color: #fff;
		background-color: #f06447;
		border-color: #f06447!important;
	}

.btn-outline-tertiary {
	color: #ff703e;
	background-color:#fff;
	border-color: #ff703e
}

	.btn-outline-tertiary:hover {
		color: #fff;
		background-color: #f06447;
		border-color: #f06447;
	}

	.btn-outline-tertiary.focus, .btn-outline-tertiary:focus {
		color: #fff;
		background-color: #f06447;
		border-color: #f06447;
		box-shadow: 0 0 0 .2rem rgba(98,85,80,.5);
	}

	.btn-outline-tertiary:active, .btn-outline-tertiary:target {
		color: #fff;
		background-color: #f06447;
		border-color: #f06447 !important;
	}

.btn-fourty {
	color: #fff;
	background-color: #009579;
	border-color: #009579;
}

	.btn-fourty:hover {
		color: #fff;
		background-color: #009579;
		border-color: #009579;
	}

	.btn-fourty.focus, .btn-fourty:focus {
		color: #fff;
		background-color: #009579;
		border-color: #009579;
		box-shadow: 0 0 0 .2rem rgba(98,85,80,.5);
	}
