
@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Light.ttf") format("truetype"),
         url("fonts/Poppins-Regular.ttf") format("truetype"),
         url("fonts/Poppins-Medium.ttf") format("truetype"),
         url("fonts/Poppins-SemiBold.ttf") format("truetype");

}

body {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	color: white;
	background: grey;
	overflow: hidden;
}

#output {
	border: 1px solid black;
	overflow: hidden;
}

#titlebar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 25px;
	background: #292ab7;
	-webkit-app-region: drag;
}

#window-controls {
	display: grid;
	grid-template-columns: repeat(3, 46px);      
	position: absolute;
	top: 0;
	right: 0;
	height: 25px;
	-webkit-app-region: no-drag;        
}

	#window-controls .button {
		grid-row: 1 / span 1;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		user-select: none;     
	}

		#window-controls .button:hover {
			background: rgba(255,255,255,0.1);
		}

		#window-controls .button:active {
			background: rgba(255,255,255,0.2);
		}

#min-button {
	grid-column: 1;
}

#max-button, #restore-button {
	grid-column: 2;
 }

#close-button {
	grid-column: 3;
}

	#close-button:hover {
		background: #E81123 !important;
	}

	#close-button:active {
		background: #F1707A !important;
	}

		#close-button:active .icon {
			filter: invert(100%);                
		}

#restore-button {
	display: none !important;
}

#window-title {
	grid-column: 1;
	display: flex;
	align-items: center;
	margin: auto;
	padding-right: 5px;
	overflow: hidden;
	font-family: 'Poppins';
	font-size: 14px;
}

#directory:hover, #thumbs:hover, #assets:hover, #stats:hover, #admin:hover {
	cursor: pointer;
} 

#dir_list_label:hover{
	cursor: pointer;
}

	#window-title span {
		overflow: hidden;
		text-overflow: ellipsis;            
		white-space: nowrap;
		line-height: 1.5;
	}

.maximized #restore-button {
	display: flex !important;
}

.maximized #max-button {
	display: none;
}

.content::-webkit-scrollbar {     
	display: none;
}

.selectDisable {      
	-webkit-user-select: none;
	user-select: none;
}

.text {
	color: white;
	font: 14px Poppins;
}

#block {
	position: absolute;
	top: 25px;
	left: 0px;
	width: calc(100vw);
	height: calc(100vh - 25px);
	display: none;
	z-index: 50;
}

#message, #message1 {
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 300px;
	height: 200px;
	top: calc(95vh + 112px); 
	left: calc(50vw - 113px); 
	margin-left: -150px;
	margin-top: -150px;
	background-color: #040F39;
	border-radius: 16px;
	box-shadow: 7px 7px 14px 0px rgba(0, 0, 0, 0.39);
	z-index: 110;
	display: none;
	color: #c5feb9;
	font: 14px Poppins;
}

#login, #new_pass {
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 400px;
	height: 300px;
	top: calc(45vh + 43px); 																	   
	left: calc(52.5vw - 104px); 																   
	margin-left: -150px;
	margin-top: -150px;
	background-color: #040F39;
	border-radius: 20px;
	box-shadow: 7px 7px 14px 0px rgba(0, 0, 0, 0.39);
	z-index: 110;
	display: none;
	color: #ffffff;
	font: 16px Poppins;
}

input {
	color: #000000;
	font: 16px Poppins;
	font-weight: 600;
	border-radius: 8px;
	border: 1px solid transparent;																	        
	background-color: #909090;
	outline: none;
	transition: 0.2s ease;
}

input:focus {
	border-color: #c5fbe9;
}

label {
	color: #ffffff;
	font-family: 'Poppins';
	font-size: 14px;
	font-weight: 100;
	margin-left: 17px;
}

.buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	cursor: default;
	width: 80px;
	height: 25px;
	background-color: #292ab7;
	color: #ffffff;
	font-family: 'Poppins';
	font-weight: 100;
	font-size: 14px;
	border: 1px solid #ffffff;																							        
	border-radius: 10px;
}

.buttons:hover {
	color: #000000;
	background-color: #c5fbe9;
}

#clfunbut:hover, #clPrevWin:hover, #clTenEditWin:hover, #clTenAlertWin:hover {																            	
	background: #E81123 !important;
}

#clfunbut:active, #clPrevWin:active, #clTenEditWin:active, #clTenAlertWin:active {
	background: #F1707A !important;
}

	#clfunbut:active .icon, #clPrevWin:active .icon, #clTenEditWin:active .icon {
		filter: invert(100%);                
	}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.content {
	position: absolute;
	top: 27px;
	left: 0;																					    
	width: 100%;
	height: 100%;
	max-width: 900px; 
	margin-left: 50%;
	transform: translateX(-50%);							
}

.box {
	position: relative;
	background-color: grey;                                                                                     	 
	width: 100%;  
	height: 100%;  
	top: 0px;
	left: 0px;	
}

::-webkit-scrollbar {
	height: 10px;
	width: 10px;
}
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
}
::-webkit-scrollbar-thumb {
	background: #9000ffa1;
	border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
	background: #9000ff;
}

::-webkit-scrollbar-corner {
	background-color: transparent;
}

.list {
	position: absolute;
	height: calc(52vh - 4px);																	
	width: calc(37.2vw - 25px);
	background-color: #040F39;
	overflow:hidden;
	border-radius: 12px;
	box-shadow: 7px 7px 14px 0px rgba(0, 0, 0, 0.39);
	font-family: 'Poppins';
	font-weight: normal;
	font-size: 13px;
	color: #ffffff;
}

.droplist {
	position: absolute;
	background: #040F39;
	border: 1px solid #292ab7;                                                                         
	border-radius: 12px;
	box-shadow: 7px 7px 14px 0px rgba(0, 0, 0, 0.39);
	font-family: 'Poppins';
	font-weight: normal;
	font-size: 13px;
	color: #ffffff;
}

.popout_1 {
	position: absolute;
	height: calc(52vh - 4px);
	width: calc(37.2vw - 25px);
	top: 50%;
	left: 50%;
	margin-left: -300px;
	margin-top: -240px;
	background-color: #373737;
	border-radius: 12px;
	box-shadow: 12px 12px 25px black;
	font-family: 'Poppins';
	font-weight: normal;
	font-size: 13px;
	color: white;
	z-index: 100;
	display: none;
}

.popout_1_label {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 25px;
	overflow: hidden; 
	font-family: 'Poppins';
	font-weight: 100;
	font-size: 14px;
	color: #ffffff;
	background-color: #292AB7;
}

.checkbox {
	display: flex;
	position: absolute;
	width: 20px;
	height: 18px;
	top: 0px;
	left: 0px;
	z-index: 5;
	background-color: #ffffff;																	     
	color: #292ab7;
	font-family: 'Poppins';
	font-weight: normal;
	font-size: 13px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

.displayed {
	background-color: green;
	text-align: center;
	border-radius: 12px;
	font: 12px Poppins;
}

.pending {
	color: black;
	font-weight: 800;
	background-color: yellow;
	text-align: center;
	border-radius: 12px;
	font: 12px Poppins;
}

.expired {
	background-color: red;
	text-align: center;
	border-radius: 12px;
	font: 12px Poppins;
}

.orient {
	background-color: grey;
	text-align: center;
	border-radius: 12px;
	font: 12px Poppins;
}

.list::-webkit-scrollbar {     
	display: none;
}

.chooseBtns,
.chooseBtnsTemp
 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 60px;
	background-color: #ffffff;
	border-radius: 30px;
}

.chooseBtns:hover {
	background-color: #c5feb9;
}

.content-table {
	width: 200%;              
	height: 100%;
	border-collapse: collapse;           
	margin: 0;            
	background-color: transparent;
	overflow: hidden;          
}

.content-table thead tr {
	display: block;               
	background-color: transparent;
	border-bottom: 1px solid #4631a3;
	color: #C5FBE9;   
	font-size: 16pt;
	text-align: left;
	height: 70px;
}

.content-table th {
	padding-top: 20px;       
	padding-bottom: 0;
}

.header-th0 {
	padding-left: 38px);       
}

.header-th1 {
	padding-left: 0px;       
}

.content-table tbody tr {
	height: 40px;
	font-size: 12pt;
}

.content-table tbody tr td {                 
	padding-right: 10px; 
	color: #ffffff;
}

.table-icons {
	position: relative;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: #0c0d8a;
	overflow: hidden;
}

.table-icons:hover {
	cursor: pointer;
	background-color: #292ab7;
}

.table-icon-img {
	position: absolute;
	width: 70%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.6;
}



.content-table tbody tr {
	--delay: .1s;              
	transition: .5s ease-in-out var(--delay);
}

.tbody-table {                   
	display: block;
	overflow-x: hidden;          
	transition: 1s ease-in-out;
	height: auto;
}

.tbody-table::-webkit-scrollbar {
	width: 4px;       
	background-color: transparent;       
}

.tbody-table::-webkit-scrollbar-thumb {
	background-color: #4631a3;																	        
	visibility: visible;																		           
}

.editTenant-Win {																				        
	display: none;
	flex-direction: column;
	position: absolute;
	width: 600px;
	height: auto;
	top: 53%;
	left: 80%;
	transform: translate(-50%, -50%);
	background-color: #040F39;
	border-radius: 12px;
	border: 1px solid #292ab7;
	overflow: hidden;
	z-index: 10;
}

.editTenant-DataCon {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 455px;
	padding: 30px;
}

.editTenant-Row {
	position: relative;
	display: flex;
	width: 100%;
	height: 50px;
	margin-bottom: 20px;
}

.editTenant-FieldName {
	position: relative;
	display: flex;
	font-family: 'Poppins';
	width: 100px;
	height: 35px;
	font-size: 16px;
	color: #c5fbe9;
	align-items: center; 
	justify-content: start;
}

.editTenant-FieldDataCon {
	position: relative;
	width: 440px;
	height: 35px;
	background-color: #a7a7a7;
	border: 1px solid #040F39;
	border-radius: 15px;
	overflow: hidden;
	transition: 0.6s ease;
}

.editTenant-FieldDataCon:focus-within {										               
	border-color: #c5feb9;													    
}

.editTenant-FieldInput {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: transparent;
	border: none;
	padding-left: 12px;
	padding-right: 12px;
	color: #000000;
	box-sizing: border-box;													             
}

.editTenant-TextAreaInput {													                         
	position: relative;
	width: 100%;
	height: 100%;
	font-family: 'Poppins';
	font-size: 12pt;
	font-weight: 600;
	background-color: transparent;
	border: none;
	outline: none;
	padding: 6px 12px 6px 12px;
	color: #000000;
	box-sizing: border-box;													      
	resize: none;															    
	overflow: hidden;
}

.editTenant-BtnRow {
	position: relative;
	width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	color: #ffffff;
	font-family: 'Poppins';
	font-weight: 100;
	font-size: 14px;
}

.editTenant-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	width: 80px;
	height: 25px;
	background-color: #292ab7;
	color: #ffffff;
	font-family: 'Poppins';
	font-weight: 100;
	font-size: 14px;
	border: 1px solid #ffffff;												     
	border-radius: 10px;
	margin-left: 20px;
}

.editTenant-buttons:hover {
	color: #000000;
	background-color: #c5fbe9;
}

.editTenant-addBtnsCon {
	position: relative;
	display: flex;
	align-items: center;
	width: 308px;
	height: 25px;
	font-family: 'Poppins';
	font-weight: 100;
	font-size: 14px;
	color: #ffffff;
	visibility: hidden;
}

.editTenant-chkBtns {
	position: relative;
	width: 26px;														          
	height: 26px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	margin-left: 6px;
	margin-right: 30px;
}

.editTenant-chkBtns:hover {
	border-color: #c5feb9;
	cursor: pointer;
}

.saveTenants-chkBtns {
	position: relative;
	width: 26px;														          
	height: 26px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	margin-left: 6px;
	margin-right: 30px;
}


.saveTenants-chkBtns:hover {
	border-color: #c5feb9;
	cursor: pointer;
}


.dot {
	position: absolute;
	width: 18px;														          
	height: 18px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: none;
	background-color: #c5feb9;
	box-sizing: border-box;
}

.delTenant-Win {														        
	display: none;
	flex-direction: column;
	position: absolute;
	font-family: 'Poppins';
	font-weight: 100;
	color: #c5feb9;
	align-items: center;												         
	width: 600px;
	height: 200px;
	top: 53%;
	left: 80%;
	transform: translate(-50%, -50%);
	background-color: #040F39;
	border-radius: 12px;
	border: 1px solid #292ab7;
	overflow: hidden;
	z-index: 10;
}

.delTenant-Con {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 580px;
	height: auto;
	padding-top: 38px;
	justify-content: center;
	align-items: center;
	margin: 0;
	overflow: hidden;
}







