.login-box{
    max-width: 500px;
}
a.login-logo {
    width: 130px;
    display: block;
    margin: 0 auto;
}
footer.main-footer {
    position: fixed;
    width: 100%;
    bottom: 0;
}
.set_card_desc {
    font-size: 16px;
    color: #6d6d6d;
    margin-top: -10px;
    padding-left: 48px;
}
.set_card_title {
    font-size: 18px;
    font-weight: 600;
}
.set_card {
    padding: 10px 20px;
}
.set_icon {
    background: #40404042;
    color: #001f3f;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.set_title {
    margin-top: -15px;
}
label.preview_wrapper {
    border: 1px dashed gray;
    padding: 18px;
    border-radius: 5px;
    color: gray;
    font-weight: 100;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.file_name {
    font-family: sans-serif;
    font-weight: 100;
    font-size: 15px;
    text-align: center;
}

.info_wrapper{
    width: 300px;
}
.save_changes{
    width: 200px;
    margin: 0 auto;
    text-align: center;
    padding: 5px;
    font-size: 18px;
}

/*=== Loader ===*/
/* HTML: <div class="loader"></div> */

@keyframes l32-1 {
  0%,100% {width:45px;height: 45px}
  35%,65% {width:65px;height: 65px}
}
@keyframes l32-2 {
  0%,40%  {background-position: 0 0,0 50%, 0 100%,50% 100%,100% 100%,100% 50%,100% 0,50% 0,  50% 50% }
  60%,100%{background-position: 0 50%, 0 100%,50% 100%,100% 100%,100% 50%,100% 0,50% 0,0 0,  50% 50% }
}
.loader {
    position: absolute;
    z-index: 999;
}

.loader-wrapper {
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.212);
    align-items: center;
    justify-content: center;
    top: 0;
    bottom: 0;
    display: none;
    overflow: hidden;
}
.message {
    font-size: 17px;
}
.card-header::after {
    content: "";
    position: absolute;
    width: 100%;
}


/*****=== DataTables ===****/
div#DataTables_Table_0_length {
    float: left;
}

div#DataTables_Table_0_filter {
    float: right;
    margin-bottom: 15px;
}

div#DataTables_Table_0_info {
    float: left;
}

div#DataTables_Table_0_paginate {
    float: right;
    margin-top: 15px;
}

a#DataTables_Table_0_previous {
    background: #1a1a1a;
    padding: 6px 10px;
    border-radius: 5px;
    color: white;
}

div#DataTables_Table_0_paginate {
    display: flex;
    overflow: hidden;
    align-items: center;
    gap: 20px;
}

a#DataTables_Table_0_next {
    background: #1a1a1a;
    padding: 6px 17px;
    border-radius: 5px;
    color: white;
}

div#DataTables_Table_0_paginate>span {
    display: flex !important;
    flex-direction: row;
    gap: 11px;
}
a.paginate_button {
    background: #e9e9e9;
    padding: 6px 10px;
    color: black;
    border-radius: 5px;
    cursor: pointer;
}
a.paginate_button.current {
    background: #1a1a1a;
    color: white !important;
    padding: 5px 10px;
    border-radius: 4px;
}
div#DataTables_Table_0_filter>label>input[type='search'] {
    border: 1.5px solid #424242;
    border-radius: 3px;
    padding: 4px;
}

div#DataTables_Table_0_filter>label>input[type='search']:focus {
    outline: none;
    border: 2px solid;
}

div#DataTables_Table_0_length>label>select {
    padding: 3px 8px;
}

/* radio button css  */
.radio-item [type="radio"] {
	display: none;
}

.radio-item label {
	display: block;
	padding: 11px 60px;
	background: #eeeeff;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 400;
	min-width: 250px;
	white-space: nowrap;
	position: relative;
	transition: 0.4s ease-in-out 0s;
}
.radio-item label:after,
.radio-item label:before {
	content: "";
	position: absolute;
	border-radius: 50%;
}
.radio-item label:after {
	height: 19px;
	width: 19px;
	border: 2px solid #524eee;
	left: 19px;
	top: calc(50% - 12px);
}
.radio-item label:before {
	background: #524eee;
	height: 20px;
	width: 20px;
	left: 18px;
	top: calc(51%-5px);
	transform: scale(5);
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease-in-out 0s;
}
.radio-item [type="radio"]:checked ~ label {
	border-color: #524eee;
}
.radio-item [type="radio"]:checked ~ label::before {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.radio-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.page_item{
    padding: 8px 12px;
    border-radius: 4px;
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    transition: all 0.2s ease-in-out;
}
.page_item:hover{
    background: #4000d6;
    color: white !important;
}

.page_active{
    background: #4000d6;
    color: white !important;
    padding: 8px 12px;
    border-radius: 4px;
    display: block;
    font-size: 18px;
}

.bg-light>.page_active{
    color: white !important;
}

