/*
 * Component: Small Box
 * --------------------
 */
	.small-box {
		border-radius: 0.25rem;
		box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
		position: relative;
		display: block;
	}

	.small-box > .inner {
		padding: 10px;
	}

	.small-box > .small-box-footer {
		position: relative;
		text-align: center;
		padding: 3px 0;
		color: #ffffff;
		color: rgba(255, 255, 255, 0.8);
		display: block;
		z-index: 10;
		background: rgba(0, 0, 0, 0.1);
		text-decoration: none;
	}

	.small-box > .small-box-footer:hover {
		color: #ffffff;
		background: rgba(0, 0, 0, 0.15);
	}

	.small-box h3 {
		font-size: 38px;
		font-weight: bold;
		margin: 0 0 10px 0;
		white-space: nowrap;
		padding: 0;
	}
	.small-box h3:hover {
		color: black;
	}

	.small-box p {
		font-size: 15px;
	}

	.small-box p > small {
		display: block;
		color: #f9f9f9;
		font-size: 13px;
		margin-top: 5px;
	}

	.small-box h3, .small-box p {
		z-index: 5;
	}

	.small-box .icon {
		z-index: 0;
		color: rgba(0, 0, 0, 0.15);
	}

	.small-box .icon > i {
		transition: all 0.3s linear;
		position: absolute;
		top: 15px;
		right: 15px;
		font-size: 90px;
	}

	.small-box .icon > i.fa, .small-box .icon > i.fas, .small-box .icon > i.far, .small-box .icon > i.fab {
		font-size: 70px;
		top: 20px;
	}

	.small-box:hover {
		text-decoration: none;
		background-color: #181d38  !important;
	}

	.small-box:hover .icon > i {
		font-size: 95px;
	}

	.small-box:hover .icon > i.fa, .small-box:hover .icon > i.fas, .small-box:hover .icon > i.far, .small-box:hover .icon > i.fab {
		font-size: 75px;
	}

	@media (max-width: 767.98px) {
		.small-box {
			text-align: center;
		}
		.small-box .icon {
			display: none;
		}
		.small-box p {
			font-size: 12px;
		}
	}
	/*============*/
	input[type="date"]::-ms-clear {
		display: none;
		width: 0;
		height: 0;
	}
	.valign-center {
		width: 100%;
		margin: 0;
		position: absolute;
		top: 50%;
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}