@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap'); */


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* :root{
	--bg_main: aquamarine;
	--bg_aside: #DE6328;
	--bg_footer: #222;
	--header_font: #a03908;
	--bg_header: orange;
	--border_left: #171c21;
	--font_white: white;
	--bg_success: #02fa4c;
	--bg_error: #fa0202;	
	--border_success: #01200a;
	--border_error: #460702;
} */

:root{
	/* --bg_main: #000000; */
	--bg_main: #3f3f3f;
	--bg_aside: #000000;
	--bg_footer: #000000;
	--header_font: #a688fa;
	--bg_header: #000000;
	--border_left: #000000;
	--font_white: #FFFFFF;
	--bg_success: #03dac6;
	--bg_error: #cf6679;	
	--border_success: transparent;
	--border_error: transparent;


/** CSS DARK THEME PRIMARY COLORS */
--color-primary-100: #382bf0;
--color-primary-200: #5e43f3;
--color-primary-300: #7a5af5;
--color-primary-400: #9171f8;
--color-primary-500: #a688fa;
/* --color-primary-600: #ba9ffb; */
--color-primary-600: #d8c9fd;
/** CSS DARK THEME SURFACE COLORS */
--color-surface-100: #121212;
--color-surface-200: #282828;
--color-surface-300: #3f3f3f;
--color-surface-400: #575757;
--color-surface-500: #717171;
--color-surface-600: #8b8b8b;
/** CSS DARK THEME MIXED SURFACE COLORS */
--color-surface-mixed-100: #1a1625;
--color-surface-mixed-200: #2f2b3a;
--color-surface-mixed-300: #46424f;
--color-surface-mixed-400: #5e5a66;
--color-surface-mixed-500: #76737e;
--color-surface-mixed-600: #908d96;
/* --text-color: #1f1a24; */
}

body{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}   

header{
    background-color: var(--bg_header);
    height: 80px;
    font-family: "Roboto", sans-serif;
}

footer{
    background-color: var(--bg_footer);
    height: 80px;
    font-family: "Roboto", sans-serif;
}

main{
    display: flex;
    /* position: relative; */
    width: 100%;
    background-color: var(--bg_main);
}

.main_cont, .main_cont1{
    padding: 5px 30px;
    font-family: "Roboto", sans-serif;
	color: var(--font_white);
}

.aside {
	width: 300px;
	flex: 0 0 auto;
	background-color: var(--bg_aside);
	border-left: 10px solid var(--border_left);
	transition: 0.5s;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
	font-weight: 900;
}
.aside.active {
	flex: 0 0 auto;
	width: 80px;
}

.aside ul {
	padding-left: 5px;
	width: 100%;
}

.aside ul li {
	position: relative;
	width: 100%;
	list-style: none;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	/* transition: .3s; */
	margin-bottom: 1px;
}

.aside ul li:hover,
.aside ul li.hovered {
	background-color: var(--bg_main);}

.aside ul li:nth-child(1) {
	margin-top: 30px;
	/* pointer-events: none; */
}

.aside ul li a {
	position: relative;
	display: block;
	width: 100%;
	display: flex;
	text-decoration: none;
	color: var(--font_white);
}

.aside ul li.hovered a,
.aside ul li:hover a {
	color: var(--header_font);
}

.aside ul li a .icon {
	position: relative;
	display: block;
	min-width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
}

.aside ul li a .icon i {
	font-size: 1.75em;
}

.aside ul li a .title {
	position: relative;
	display: block;
	padding: 0 10px;
	height: 60px;
	line-height: 60px;
	text-align: start;
	white-space: nowrap;
}

#inactive_li {
	margin-bottom: 10px;
	margin-top: 10px;
	pointer-events: none;
}

.aside ul li.hovered a::before,
.aside ul li:hover a::before {
	content: '';
	position: absolute;
	top: -50px;
	right: 0;
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-radius: 50%;
	box-shadow: 35px 35px 0 10px var(--bg_main);
	pointer-events: none;
}

.aside ul li.hovered a::after,
.aside ul li:hover a::after {
	content: '';
	position: absolute;
	bottom: -50px;
	right: 0;
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-radius: 50%;
	box-shadow: 35px -35px 0 10px var(--bg_main);
	pointer-events: none;
}

.main_content {
	/* position: absolute; */
	width: calc(100% - 300px);
	flex: 0 0 auto;
	/* left: 300px; */
	/* min-height: 100vh; */
	background-color: var(--bg_main);
	transition: 0.5s;
	/* z-index: 1; */
}

.main_content.active {
	width: calc(100% - 80px);
	flex: 0 0 auto;
	/* left: 80px; */
}

.topbar {
	/* width: 100%; */
	width: 80px;
	height: 60px;
	/* display: flex;
	justify-content: space-between;
	align-items: center; */
	padding: 0 10px;
	position: absolute;
}

.toggle {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.5em;
	cursor: pointer;
	color: var(--header_font);
}

.search_clients_div {
	font-size: 20px;
	display: flex;
	margin: 0 auto;
	display: none;
}

#search_clients {
	font-size: 20px;
	padding: 10px;
}

#search_clients_button {
	font-size: 20px;
	padding: 10px;
}

/* .bi{
    font-weight: 900;
} */

.logo{
    font-family: "Roboto", sans-serif;
    /* font-weight: 900; */
    font-size: clamp(20px, 6.5vw, 40px);
    text-align: center;
    line-height: 80px;
    text-transform: uppercase;
    color: var(--header_font);
}

footer address{
    line-height: 80px;
    color: var(--font_white);
    text-align: center;
}

.main_heading{
    font-size: 40px;
    text-align: center;
    margin: 20px;
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	color: var(--font_white);
}

#popup_message{
	position: fixed;
	/* top:50%;
	left: 50%;
	transform: translate(-50%, -50%); */
	margin-top: 15%;
	padding: 30px;
	z-index: 10;
	animation: popIn 0.5s forwards;
	color: var(--font_white);
	border-radius: 10px;
	max-width: 40%;
}

.success_msg{
	background-color: var(--bg_success);
	border: 2px solid var(--border_success);
}


.error_msg{
	background-color: var(--bg_error);
	border: 2px solid var(--border_error);
}

/* .name_display, .abbr_name{
	color: var(--font_white);
    text-align: center;
    margin: 10px 0;
}

.abbr_name{
	display: none;
} */

.ava{
	width: 100%;
	/* mix-blend-mode: multiply; */
}

.ava_cont, .icon_top{
	position: absolute;
	top: 6px;
	right: 15px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	color: var(--header_font);
}
.bi-box-arrow-in-right{
	font-size: 60px;
}

.body, .body1 {
	/* background-color: #eff3f4; */
	position: fixed;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	top: 0;
	font-size: 16px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
	visibility:hidden;
	z-index: 1;
	left: 0;
}

dialog::backdrop{
	/* background: rgba(0,0,0,.6); */
	backdrop-filter: blur(5px);
  }

  #modal{
	margin: auto;
	border-radius: 15px;
	background-color: #cf6679;
	border: none;
  }

#modal p{
  text-align: center;
  font-size: 25px;
  color: white;
  margin: 20px 0;
  padding: 20px;
}

.modal_buttons{
	display: flex;
	gap: 10px;
	padding: 10px;
}
   

/* .body1{
	width: 100%;
	height: 100%;
} */

.form {
	position: absolute;
	display: block;
	width: 100%;
	/* max-width: 500px; */
	background-color: var(--bg_aside);
	margin: 0;
	padding: 2.25em;
	box-sizing: border-box;
	border: solid 1px var(--bg_success);
	border-radius: .5em;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	transform: scale(0);
	transition: 0.5s;
}

.form1{

		position: absolute;
		display: block;
		background-color: var(--bg_aside);
		margin: 0;
		padding: 2.25em;
		box-sizing: border-box;
		border: solid 1px var(--bg_success);
		border-radius: .5em;
		font-family: 'Roboto', sans-serif;
		font-weight: 700;
		transform: scale(0);
		transition: 0.5s;

}

.narrow{
	max-width: 500px;
}
.icon-close, .icon-close1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: #162938;
    font-size: 2em;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 20px;
    cursor: pointer;
    z-index: 1;
 }

 .form.active{
	position: relative;
 }

.icon_name {
    font-weight: 900;
    font-size: 30px;
	background-color: darkgray;
	border-radius: 50%;
	opacity: 0;
	transition: 1s;
}

.aside.active .icon_name{
	opacity: 1;
}

.main_content {
    /* position: relative; */
  }

  #popup_container {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    /* padding: 30px; */
    /* border-radius: 5px; */
    /* color: white; */
    font-weight: bold;
    z-index: 9999;
    font-size: 22px;
	text-align: center;
	/* animation: popIn 0.5s forwards; */
	max-width: 40%;
	transition: 0.5s;
	/* max-height: 1000px; */
  }

  .popup {
    padding: 10px 20px;
    text-align: center;
  }

  #popup_container .success {
    background-color: green;
	color: white;
  }

  #popup_container .error {
    background-color: red;
	color: white;
  }

  #popup_container .warning {
    background-color: yellow;
	color: black;
  }

  #popup_container p{
	padding: 20px;
	margin-bottom: 10px;
	border-radius: 15px;
	transition: 0.5s;
  }

.user_table {
	width: 97%;
    border-collapse: collapse;
    border-spacing: 0;
    color: white;
	font-size: 25px;
	margin: 0 auto;
	font-family: 'Roboto', sans-serif;
}

.user_table th{
	border: 1px solid var(--bg_success);
	color: var(--bg_success);
}

.user_table tr{
	transition: 0.5s;
	height: 60px;
}

.user_table tr:nth-child(even){
	background-color: #000000;
}

.user_table td{
	padding: 5px;
}

.td_centre{
	text-align: center;
}

.disable_user, .user_level {
    height: 36px;
    background-color: transparent;
    color: white;
    width: 100%;
    font-size: 20px;
}

.ava_cont1{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
}

.switch {
	position: relative;
	display: inline-block;
	width: 110px;
	height: 34px;
	line-height: 34px;
  }

#switch{
	width: 110px;
	height: 34px;
}
  
  .switch input { 
	opacity: 0;
	width: 0;
	height: 0;
  }
  
  .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background-color: #ccc; */
	-webkit-transition: .4s;
	transition: .4s;
	text-align: right;
	padding: 0 26px 0 6px;
  }
  
  .slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
  }
  
  input:checked + .slider {
	/* background-color: #2196F3; */
  }
  
  input:focus + .slider {
	/* box-shadow: 0 0 1px #2196F3; */
  }
  
  input:checked + .slider:before {
	-webkit-transform: translateX(77px);
	-ms-transform: translateX(77px);
	transform: translateX(77px);
  }

  .centre{
	text-align: center;
  }

  .selectable tr.selectable1:hover{
	color: #000000;
	background-color: white;
	cursor: pointer;
  }


  #add_tenant_btn, #add_prop_btn{

	width: 97%;
	margin: 10px auto;
	display: block;

  }


  .btn{
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    font-size: 2rem;
    background-color: transparent;
    border: 2px solid var(--header_font);
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    color: var(--header_font);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: 1s;
    overflow: hidden;  /*add last*/
}

.btn:hover{
    background-color: var(--header_font);
    /* box-shadow: 0 0 25px var(--header_font), */
    /* 0 0 100px var(--header_font), */
    /* 0 0 150px var(--header_font); */
}

.btn span{
    position: relative;
    display: inline-block;
    transition: transform 0.5s;
    text-shadow: 0 50px #FFFFFF;
    transform: translateY(0px);
}

.btn:hover span.hover{
    transform: translateY(-50px);
}

.btn span.hover{
    transform: translateY(-50px);
}

.white{
	color: white;
	font-size: 30px;
}

.bi-dash-circle, .bi-plus-circle{
	cursor: pointer;
}

.fa-bed, .fa-bath, .fa-car-side{
	padding-right: 10px;
}

.input_group4 {
	display: flex;
	justify-content: space-between;
	gap: 0px;
	position: relative;
    margin: 15px;
}
.input_group5 {
	position: relative;
    margin: 15px;
}

#bedroom, #bath, #car{
	width: 100%;
    margin: 0 20px;
}

.disabled{
	color: gray;
	display: none;
}

.button_container{
	width: 100%;
    display: flex;
    /* justify-content: space-between; */
    gap: 50px;
	/* height: 100%; */
	padding: 50px;
}

.select_tenants{
	width: 100%;
    min-height: 500px;
}

.droppable{
	/* color: transparent;
	border: 2px solid #9171f8; */
	color: #9171f8;
	font-size: 150px;
	font-weight: 900;
	padding: 18px;
	border-radius: 25px;
}

.draggable{
	color: #03dac6;
	font-weight: 900;
	font-size: 80px;
	cursor: pointer;
} 

#select_tenants{
    margin: 25px;
	padding: 50px;
	border: 1px solid #9171f8;
	border-radius: 20px;
	display: flex;
	justify-content: space-around;
	
}

.tenants_icons, .prop_icons{
	display: flex;
	flex-direction: column;
	gap: 50px;
	justify-content: center;
	flex: 1;
    align-items: center;
}

.tiny_font{
	color: white;
	font-size: 10px;
	text-align: center;
	margin-bottom: 5px;
	cursor: pointer;
}

.left_panel{
	border-right: 1px solid white;
}

.right_panel{
	left:50%;
	border-left: 1px solid white;
}

.right_panel, .left_panel{
	position: absolute;
	width: 50%;
    height: 100%;
	backdrop-filter: blur(5px);
	padding: 40px;
	color: white;
	background-color: rgba(0,0,0,.9);
	overflow-y: auto;
	font-size: 20px;
}


.right_panel > *, .left_panel > *{
	margin-bottom: 20px;
}

.right_panel li, .left_panel li{
	margin-left: 40px;
}

.fa-xmark{
	float: right;
	font-size: 22px;
	position: absolute;
    right: 10px;
    top: 10px;
	transition: 0.5s;
	cursor: pointer;
}

.fa-xmark:hover{
	transform: rotate(-90deg);
}

button:disabled{
	opacity: 0.4;
}





@keyframes popIn {
	0% { transform: scale(0); }
	100% { transform: scale(1); }
}

@keyframes popOut {
	0% { transform: scale(1); }
	100% { transform: scale(0); }
}

@media (max-width: 991px) {
	.aside {
		width: 0px;
		border-left: none;
	}

	.aside.active {
		width: 300px;
	}

	.main_content {
		width: 100%;
		/* left: 0; */
		/* width: calc(100% - 300px); */
	}

	.main_content.active {
		/* left: 300px; */
		width: calc(100% - 300px);
	}
}

@media (max-width: 480px) {
	.aside {
		/* width: 100%;
    left: -100%; */
		width: 0;
		/* z-index: 1000; */
	}

	.aside.active {
		width: 100%;
		/* left: 0; */
		padding-left: 30px;
		padding-top: 25px;
	}

	.toggle {
		z-index: 1001;
		
	}

	.main_content.active .topbar {
		position: absolute;
		right: 0;
		left: initial;
		color: white;
	}

	.main_content.active{
		width: 0;
	}

	.logo{
		text-align: left;
		margin-left: 30px;
	}
	.icon_top{
		top: 24px;
		width:41px;
		height: 35px;
	}
	.bi-box-arrow-in-right{
		font-size: 30px;
		margin-top: 20px;
	}
	div.div_cont{
		min-width:100%;
	}
}