
/*# sourceMappingURL=custom.min.css.map */
/* Pagination. */
/* .pagination {
	background: #333;
	padding: 1rem;
	margin-bottom: 1rem;
	text-align: center;
	display: flex;
	justify-content: center;
}

#numbers {
	padding: 0;
	margin: 0 2rem;
	list-style-type: none;
	display: flex;
}

#numbers li a {
	color: #fff;
	padding: .5rem 1rem;
	text-decoration: none;
	opacity: .7;
}

#numbers li a:hover {
	opacity: 1;
}

#numbers li a.active {
	opacity: 1;
	background: #fff;
	color: #333;
} */

.pagination {
    background: #333;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow pagination items to wrap */
}

#numbers {
    padding: 0;
    margin: 0 2rem;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap; /* Allow pagination items to wrap */
    justify-content: center;
}

#numbers li a {
    color: #fff;
    padding: 4.5px 1px 10px 4px;
    text-decoration: none;
    opacity: .7;
    margin: 0.5rem; /* Add some spacing between pagination items */
}

.text-orange{
	color: rgb(255 44 0);
}
.bg-orange{
	background-color: rgb(255 44 0);
}

.text-green{
	color: rgb(204 255 0);
}
.bg-green{
	background-color: rgb(204 255 0); 
}
.bg-purple{
	background-color: rgb(255 0 129);
}

.text-purple{
	color: rgb(255 0 129);
}

.text-sea-green{
	color: rgb(0, 255, 247, 1);
}
.bg-sea-green{
	background-color: rgb(0, 255, 247, 1);
}

.text-yellow{
	color: rgba(255, 193, 7, 1);
}

.bg-yellow{
	background-color: rgba(255, 193, 7, 1);
}

.text-red{
	color: rgba(84, 3, 3, 1);
}

.bg-red{
	background-color: rgba(84, 3, 3, 1);
}

.text-gray{
	color: rgba(68, 84, 92, 1);
}

.bg-gray{
	background-color: rgba(68, 84, 92, 1);
}

.text-olive{
	color: rgba(58, 58, 2, 1);
}

.bg-olive{
	background-color: rgba(58, 58, 2, 1);
}

input[type="color"] {
    background-color: #fff; 
    width: 200px;
    height: 30px;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 3px;
    margin: 20px;
}

b {
	background-color: #fff;
	padding: 16px;
	font-family: sans-serif;
}

code {
	font-size: 1.2rem;
	background-color: lightslategray;
	color: #fff;
	border-radius: 3px;
	padding: 5px;
}


.hide {
    /*visibility: hidden;*/
    height: 0;
    width: 0;
}
.qr-code-container {
    max-width: 100%;
    position: sticky !important;
    top: 0px; 
}

.qr-code canvas {
    max-width: 300px!important;
    width: 100%;
}

.auth-one-bg .bg-overlay {
    background: -webkit-gradient(linear,left top,right top,from(#4c7ee3),to(#6691e7));
    background: linear-gradient(to right,#000000,#393942);
    opacity: .9;
}