html,
body,
.container-fluid{
    width: 100%;
    height: 100%;
    margin: 0;
	padding: 0;
}

div[disabled]
{
  pointer-events: none;    
  opacity: 0.7;
  background: gray;
}

.container-fluid div {
    width: 100%;
    margin: 0;
	padding: 0;
}

#search_btn {
	margin-top: 10px;
    float: right;
    margin-right: 20px;
    color: white;
}

.alert {
	position: absolute;
	right: 10px;
	width: auto !important;
	height: 50px;
	bottom: 60px;
	line-height: 45px;
	display: none;
	z-index: 9999;
	animation: showToLeft 0.5s ease-in-out forwards;
}

.spinner-border {
	float: right;
	margin-left: 10px;
	display: none;
}

#navigation_div {
	background: white;
	height: 80px;
	border-bottom: 2px solid;
}

#footer {
	position: absolute;
	background: black;
	height: 50px;
	width: 100%;
	bottom: 0;
	display: none;
}

#footer_text {
	color: white;
	font-size: 12px;
	text-align: left;
	margin-top: 15px;
	margin-left: 10px;
}

.nav-link {
	color: black;
}

#notifications {
	position: relative;
}

#notify_icon {
	position: absolute;
	top: 0;
	right: 0;
	border: 1px solid;
	border-radius: 50%;
}

.btn:disabled {
	cursor: not-allowed;
    pointer-events: all !important;
}

.form-control:disabled {
	cursor: not-allowed;
}

.form-select:disabled {
	cursor: not-allowed;
}

textarea {
  resize: none;
}

.disabledClass {
    pointer-events:none; 
}

.disabledClass_cursor {
	cursor: not-allowed;
}

.modal-footer{
	background: #f2f2f2;
}

.modal-header {
	background: lightgray;
}

.icon, .sxolia_icon, .update_owner_button {
	cursor: pointer;
}


/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

#animation {
	display: flex;
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 99999;
	display: none;
}


#loading {
	width: 90px;
	height: 90px;
	border: 5px solid transparent; 
	border-radius: 50%;
	border-bottom: 5px solid #ff4d4d;
	animation: anim 2s linear infinite;
}
#loading:before {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	bottom: 10px;
	right: 10px;
	border: 5px solid transparent;
	border-radius: 50%;
	border-bottom: 5px solid #00cc00;
	animation: anim 4s linear infinite;
}
#loading:after {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	bottom: 20px;
	right: 20px;
	border: 5px solid transparent;
	border-radius: 50%;
	border-bottom: 5px solid #3333ff;
	animation: anim 2s linear infinite;
}


@keyframes anim {
	0% {
		transform: rotate(0deg);
	}	
	100% {
		transform: rotate(360deg);
	}
}


@keyframes showToLeft {
    0% {
        -webkit-clip-path: inset(0 0 0 100%);
        clip-path: inset(0 0 0 100%);
    }

    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}


.dataTables_wrapper{
	border: 1px solid;
	border-radius: 5px;
}

.dataTables_length, .dataTables_filter {
	display: none;
}

.dataTables_info {
	padding-left: 5px;
}

.paginate_button {
	border: 1px solid !important;
    border-radius: 5px;
    padding-bottom: 5px !important;
    width: 90px;
    margin-bottom: 4px;
	color: black !important;
}

.paginate_button.next{
	margin-right: 4px;
}

.paginate_button.disabled {
	cursor: not-allowed !important;
}


.different_bottom {
	bottom: 120px !important;
}