@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

p {
	color: var(--light-blue);
	font-size: 12px;
}

h2{
	font: 700 24px "Verdana", sans-serif;
    color: var(--blue);
}

.blue-text{
  color: var(--dark-blue);
  text-align: left;
  font: 400 16px/24px "Verdana", sans-serif;
  position: relative;
  cursor: pointer;
}

.text1{
	color: var(--blue);
	text-align: left;
	font: 700 20px "Verdana", sans-serif;
	position: relative;
}

.textSecondary
{
	color: var(--darker-grey);
	font: 400 16px "Montserrat", sans-serif;
}

:root {
	--montserrat: 'Montsrrat', sans-serif;

	--light: #F9F9F9;
	--blue: #273C66;
	--light-blue:#A0A8D6;
	--darker-grey: #6e6f71;
	--dark-grey: #96979a;
	--dark: #342E37;
	--red: #DB504A;
	--yellow: #FFCE26;
	--light-yellow: #FFF2C6;
	--orange: #f38874;
	--dark-blue: #3d4aa3;
	--light-orange: #FFE0D3;
	--green: #759a5d;
}

html {
	overflow-x: hidden;
}

body.dark {
	--light: #0C0C1E;
	--grey: #060714;
	--dark: #FBFBFB;
}

body {
	background: var(--grey);
	overflow-x: hidden;
}





/* NAVBAR */
#content nav {
	height: 56px;
	background: var(--blue);
	padding: 0 24px;
	display: flex;
	align-items: center;
	grid-gap: 20px;
	font-family: var(--montserrat);
	position: sticky;
	top: 0;
	left: 0;
	z-index: 1000;
}
#content nav::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	bottom: -40px;
	left: 0;
}

#content nav .bx.bx-menu {
	cursor: pointer;
	color: var(--dark);
}
#content nav .nav-link {
	font-size: 14px;
	font-weight: 600;
	transition: .3s ease;
    color: var(--light-blue);
}
#content nav .nav-link:hover {
	color: var(--light);
	font-weight: 600;
	font-size: 14px;
}
#content nav form {
	max-width: 400px;
	width: 100%;
	margin-right: auto;
}
#content nav form .form-input {
	display: flex;
	align-items: center;
	height: 36px;
}
#content nav form .form-input input {
	flex-grow: 1;
	padding: 0 16px;
	height: 100%;
	border: none;
	background: var(--grey);
	border-radius: 36px 0 0 36px;
	outline: none;
	width: 100%;
	color: var(--dark);
}
#content nav form .form-input button {
	width: 36px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--blue);
	color: var(--light);
	font-size: 18px;
	border: none;
	outline: none;
	border-radius: 0 36px 36px 0;
	cursor: pointer;
}
#content nav .notification {
	font-size: 20px;
	position: relative;
}
#content nav .notification .num {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid var(--light);
	background: var(--red);
	color: var(--light);
	font-weight: 700;
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#content nav .profile img {
	width: 36px;
	height: 36px;
	object-fit: cover;
	border-radius: 10%;
}
#content nav .switch-mode {
	display: block;
	min-width: 50px;
	height: 25px;
	border-radius: 25px;
	background: var(--grey);
	cursor: pointer;
	position: relative;
}
#content nav .switch-mode::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	bottom: 2px;
	width: calc(25px - 4px);
	background: var(--blue);
	border-radius: 50%;
	transition: all .3s ease;
}
#content nav #switch-mode:checked + .switch-mode::before {
	left: calc(100% - (25px - 4px) - 2px);
}
/* NAVBAR */





/* MAIN */
#content main {
	width: 100%;
	padding: 30px 36px;
	font-family: var(--montserrat);
	max-height: calc(100vh - 56px);
	overflow-y: auto;
}
#content main .head-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 16px;
	flex-wrap: wrap;
}
#content main .head-title .left h1 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--dark);
}
#content main .head-title .left .breadcrumb {
	display: flex;
	align-items: center;
	grid-gap: 16px;
}
#content main .head-title .left .breadcrumb li {
	color: var(--dark);
}
#content main .head-title .left .breadcrumb li a {
	color: var(--dark-grey);
	pointer-events: none;
}
#content main .head-title .left .breadcrumb li a.active {
	color: var(--blue);
	pointer-events: unset;
}
#content main .head-title .btn-download {
	height: 36px;
	padding: 0 16px;
	border-radius: 36px;
	background: var(--blue);
	color: var(--light);
	display: flex;
	justify-content: center;
	align-items: center;
	grid-gap: 10px;
	font-weight: 500;
}




#content main .box-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	grid-gap: 24px;
	margin-top: 36px;
}
#content main .box-info li {
	padding: 24px;
	background: var(--light);
	border-radius: 10px;
	display: flex;
	align-items: center;
	grid-gap: 24px;
	font: 700 24px "Verdana", sans-serif;
}
#content main .box-info li .bx {
	width: 80px;
	height: 80px;
	border-radius: 10px;
	font-size: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#content main .box-info li:nth-child(1) .bx {
	background: var(--light-blue);
	color: var(--blue);
}
#content main .box-info li:nth-child(2) .bx {
	background: var(--light-yellow);
	color: var(--yellow);
}
#content main .box-info li:nth-child(3) .bx {
	background: var(--light-orange);
	color: var(--orange);
}
#content main .box-info li .text h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--dark);
}
#content main .box-info li .text p {
	color: var(--dark);	
}
#content main .box-info .btn-primary{
    width: 200px;
    height: 72px;
	padding: 0 16px;
	border-radius: 36px;
	background: var(--light-blue);
	color: var(--light);
	border-radius: 8px;
  	border-style: solid;
  	border-color: var(--light-blue);
  	border-width: 2px;
  	padding: 12px 20px 12px 20px;
  	display: flex;
  	flex-direction: row;
  	gap: 8px;
  	align-items: center;
  	justify-content: center;
  	position: relative;
	cursor: pointer; 
    font: 700 20px "Verdana", sans-serif;
}
#content main .box-info .btn-secondary{
	padding: 0 16px;
	border-radius: 10px;
	background: var(--light-blue);
	color: var(--dark);
  	border-style: solid;
  	border-color: var(--light-blue);
  	border-width: 2px;
  	padding: 12px 20px 12px 20px;
  	display: flex;
  	flex-direction: row;
  	gap: 8px;
  	align-items: center;
  	justify-content: center;
  	position: relative;
	cursor: pointer; 
    font: 400 14px/20px "Montserrat", sans-serif;
}

#content main .box-info .btn-icon{
    flex-shrink: 0;
  position: relative;
  overflow: visible;
}





#content main .table-data {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 24px;
	margin-top: 24px;
	width: 100%;
	color: var(--dark);
}
#content main .table-data > div {
	border-radius: 20px;
	background: var(--light);
	padding: 24px;
	overflow-x: auto;
}
#content main .table-data .head {
	display: flex;
	align-items: center;
	grid-gap: 16px;
	margin-bottom: 24px;
}
#content main .table-data .head h3 {
	margin-right: auto;
	font-size: 24px;
	font-weight: 600;
}
#content main .table-data .head .bx {
	cursor: pointer;
}

#content main .table-data .order {
	flex-grow: 1;
	flex-basis: 500px;
}
#content main .table-data .order table {
	width: 100%;
	border-collapse: collapse;
}
#content main .table-data .order table th {
	padding-bottom: 12px;
	font-size: 13px;
	text-align: left;
	border-bottom: 1px solid var(--grey);
}
#content main .table-data .order table td {
	padding: 16px 0;
}
#content main .table-data .order table tr td:first-child {
	display: flex;
	align-items: center;
	grid-gap: 12px;
	padding-left: 6px;
}
#content main .table-data .order table td img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
}
#content main .table-data .order table tbody tr:hover {
	background: var(--grey);
}
#content main .table-data .order table tr td .status {
	font-size: 10px;
	padding: 6px 16px;
	color: var(--grey);
	border-radius: 8px;
    font: 400 14px/20px "Montserrat", sans-serif;
}
#content main .table-data .order table tr td .status.completed {
	background: #e8eaf5;
}
#content main .table-data .order table tr td .status.process {
	background: var(--yellow);
}
#content main .table-data .order table tr td .status.pending {
	background: var(--orange);
}


#content main .table-data .todo {
	flex-grow: 1;
	flex-basis: 300px;
}
#content main .table-data .todo .todo-list {
	width: 100%;
}
#content main .table-data .todo .todo-list li {
	width: 100%;
	margin-bottom: 16px;
	background: var(--grey);
	border-radius: 10px;
	padding: 14px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#content main .table-data .todo .todo-list li .bx {
	cursor: pointer;
}
#content main .table-data .todo .todo-list li.completed {
	border-left: 10px solid var(--blue);
}
#content main .table-data .todo .todo-list li.not-completed {
	border-left: 10px solid var(--orange);
}
#content main .table-data .todo .todo-list li:last-child {
	margin-bottom: 0;
}
#content main .table-data .btn-secondary{
	padding: 0 16px;
	border-radius: 10px;
	background: var(--light-blue);
	color: var(--dark);
  	border-style: solid;
  	border-color: var(--light-blue);
  	border-width: 2px;
  	padding: 12px 20px 12px 20px;
  	display: flex;
  	flex-direction: row;
  	gap: 8px;
  	align-items: center;
  	justify-content: center;
  	position: relative;
	cursor: pointer; 
    font: 400 14px/20px "Montserrat", sans-serif;
}
#content main .table-data .text{
    color: #1b1c1e;
    text-align: center;
    font: 400 20px "Verdana", sans-serif;
    position: relative;
}
/* MAIN */
/* CONTENT */
.activity-status{
    color: lightblue;
    background-color: lightblue;
}










@media screen and (max-width: 768px) {
	#sidebar {
		width: 200px;
	}

	#content {
		width: calc(100% - 60px);
		left: 200px;
	}

	#content nav .nav-link {
		display: none;
	}
}






@media screen and (max-width: 576px) {
	#content nav form .form-input input {
		display: none;
	}

	#content nav form .form-input button {
		width: auto;
		height: auto;
		background: transparent;
		border-radius: none;
		color: var(--dark);
	}

	#content nav form.show .form-input input {
		display: block;
		width: 100%;
	}
	#content nav form.show .form-input button {
		width: 36px;
		height: 100%;
		border-radius: 0 36px 36px 0;
		color: var(--light);
		background: var(--red);
	}

	#content nav form.show ~ .notification,
	#content nav form.show ~ .profile {
		display: none;
	}

	#content main .box-info {
		grid-template-columns: 1fr;
	}

	#content main .table-data .head {
		min-width: 420px;
	}
	#content main .table-data .order table {
		min-width: 420px;
	}
	#content main .table-data .todo .todo-list {
		min-width: 420px;
	}
}

.carpet{
    position: relative;
    text-align: center;
    color: var(--dark-blue);
}

.carpet-text{
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--darker-grey);
  font-size: 14px;
  font-weight: 600;
  transition: .3s ease;
}

.fr5578,
.fr5578 * {
  box-sizing: border-box;
}
.fr5578 {
  background: var(--_100-secondary, #e8eaf5);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex: 1;
  position: relative;
  height: 550px;
}
._100-h-paragraph {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.text-status {
  color: var(--dark-grey);
  text-align: center;
  font: 600 16px "Montserrat", sans-serif;
  position: relative;
}

.btn-mini-menu-selected{
    padding: 0 16px;
	border-radius: 10px;
	background: var(--light);
	color: #1b1c1e;
  	border-style: solid;
  	border-color: var(--light);
  	border-width: 2px;
  	padding: 12px 20px 12px 20px;
  	display: flex;
  	flex-direction: row;
  	gap: 8px;
  	align-items: center;
  	justify-content: center;
  	position: relative;
	cursor: pointer; 
    font: 400 14px/20px "Montserrat", sans-serif;
    border-bottom: solid var(--dark-blue);
}

.btn-mini-menu{
    padding: 0 16px;
	border-radius: 10px;
	background: var(--light);
	color: var(--dark-grey);
  	border-style: solid;
  	border-color: var(--light);
  	border-width: 2px;
  	padding: 12px 20px 12px 20px;
  	display: flex;
  	flex-direction: row;
  	gap: 8px;
  	align-items: center;
  	justify-content: center;
  	position: relative;
	cursor: pointer; 
    font: 400 14px/20px "Montserrat", sans-serif;
}
.btn-mini-menu:hover {
	color: #1b1c1e;
	font-weight: 600;
	font-size: 14px;
}

.btn-primary{
    width: 180px;
    height: 72px;
	padding: 0 16px;
	border-radius: 36px;
	background: var(--light-blue);
	color: var(--light);
	border-radius: 8px;
  	border-style: solid;
  	border-color: var(--light-blue);
  	border-width: 2px;
  	padding: 12px 20px 12px 20px;
  	display: flex;
  	flex-direction: row;
  	gap: 8px;
  	align-items: center;
  	justify-content: center;
  	position: relative;
	cursor: pointer; 
    font: 700 20px "Verdana", sans-serif;
}

.btn-icon{
    flex-shrink: 0;
    position: relative;
    overflow: visible;
}

.button-variety,
.button-variety * {
  box-sizing: border-box;
}
.button-variety {
    width: 200px;
    height: 47px;
	padding: 0 16px;
	border-radius: 36px;
	background: var(--dark-blue);
	color: var(--light);
	border-radius: 8px;
  	border-style: solid;
  	border-color: var(--dark-blue);
  	border-width: 2px;
  	padding: 12px 20px 12px 20px;
  	display: flex;
  	flex-direction: row;
  	gap: 8px;
  	align-items: center;
  	justify-content: center;
  	position: relative;
	cursor: pointer; 
    font: 700 20px "Verdana", sans-serif;
}
.btn-icons {
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}
.text-button-variety {
  color: var(--light);
  text-align: left;
  font: 400 16px/24px "Verdana", sans-serif;
  position: relative;
}

.frame-9,
.frame-9 * {
  box-sizing: border-box;
}
.frame-9 {
  border-radius: 8px 8px 0px 0px;
  padding: 0px 40px 0px 40px;
  width: 1078.65px;
  height: 40px;
  position: relative;
}
._200-l-paragraph {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left: 67px;
  top: calc(50% - 8.5px);
}
.example {
  color: var(--_900-secondary, #2d368b);
  text-align: center;
  font: 500 14px "Montserrat", sans-serif;
  position: relative;
}
.plus-square-light-duotone {
  position: absolute;
  left: 29px;
  top: calc(50% - 11.5px);
  overflow: visible;
}

.text-table-th{
    font: 600 14px "Montserrat", sans-serif;
    color: var(--dark-blue);
}

.text-table-td{
    color: var(--darker-grey);
    font: 400 14px "Montserrat", sans-serif;
}

.xl-text{
color: #1b1c1e;
  text-align: left;
  font: 700 20px "Verdana", sans-serif;
  position: relative;
}

.containerBar{
    display: flex;
    width: 420px;
    padding: 50px 0;
    border-radius: 8px;
    background: #fff;
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
}
.circular-progress{
    position: relative;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    background: conic-gradient(#3C5787 3.6deg, #ededed 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.circular-progress::before{
    content: "";
    position: absolute;
    height: 210px;
    width: 210px;
    border-radius: 50%;
    background-color: #fff;
}
.progress-value{
    position: relative;
    font-size: 40px;
    font-weight: 600;
    color: #3C5787;
}
.textBar{
    font-size: 30px;
    font-weight: 500;
    color: #606060;
}