/*Cabinet html*/

/*Sidebar*/

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.input-wrapper {
	position: relative;
}

.hints-list {
	list-style: none;
	display: none;
	width: 100%;
	padding: 8px;
	top: 0;
	left: 0;
	/* position: absolute; */
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

	.hints-list > li {
		margin-bottom: 5px;
		cursor: pointer;
	}

#check {
	display: none;
}

.togglerNavscab #openNav,
.togglerNavscab #closeNav {
	cursor: pointer;
	display: none;
}

.cabinetNavbar {
	display: block;
	position: fixed;
	width: 20%;
	height: 100%;
	border-right: 3px solid #f1f1f1;
}

	.cabinetNavbar .navHeader {
		text-align: center;
		height: 100px;
		line-height: 100px;
		border-bottom: 3px solid #f1f1f1;
		user-select: none;
	}

		.cabinetNavbar .navHeader h5 {
			line-height: 100px;
		}

	.cabinetNavbar ul a {
		display: block;
		width: 100%;
		line-height: 65px;
		box-sizing: border-box;
		padding-left: 40px;
	}

		.cabinetNavbar ul a:hover {
			text-decoration: none;
		}

		.cabinetNavbar ul a span {
			transition: 0.4s;
			color: #000;
		}

		.cabinetNavbar ul a:hover span {
			color: #e77e1f;
		}

	.cabinetNavbar ul .navIcon {
		width: 25px;
		height: auto;
		margin-right: 15px;
	}

.activeLink {
	color: #e77e1f !important;
}

/*Sidebar End*/

.cabinetBody {
	position: relative;
	width: 80%;
	margin-left: 20%;
}

.cabinetHeader {
	background-color: #f1f1f1;
	padding: 0;
	height: 100px;
	line-height: 100px;
	display: flex;
	width: 100%;
}

	.cabinetHeader .cabinetTogler {
		display: block;
	}

	.cabinetHeader .cabinetLogo {
		width: 50%;
		padding: 0 5%;
	}

	.cabinetHeader .headerList {
		width: 50%;
		display: flex;
		justify-content: flex-end;
	}

	.cabinetHeader > .headerList ul {
		display: flex;
		padding: 0 15%;
	}

	.cabinetHeader > .headerList > ul li {
		list-style: none;
		padding: 0 25px;
	}

	.cabinetHeader > .headerList > ul > li a {
		display: flex;
		justify-content: center;
		align-items: center;
		color: #000;
	}

		.cabinetHeader > .headerList > ul > li a:hover {
			color: #e77e1f;
			text-decoration: none;
		}

	.cabinetHeader > .headerList .navIcon {
		width: 25px;
		height: auto;
		margin-right: 15px;
	}

.cabinetMain {
	padding: 20px 25px;
}

	.cabinetMain > .error-text {
		text-align: left;
	}

.cabinetMain {
	display: flex;
}

.languages {
	list-style: none;
}

	.languages li {
		margin-bottom: 5px;
	}

	.languages button {
		background-color: transparent;
		margin: 0;
		padding: 5px;
		color: #000;
		border: 1px solid transparent;
		width: 100%;
		display: block;
		text-decoration: none;
		transition: 0.1s ease-out;
	}

.fixedBtn {
	position: fixed;
	bottom: 2%;
	right: 2%;
	width: 280px;
}

button:focus {
	outline: none;
}

.languages li:hover button {
	color: #e77e1f;
}

.languages .active > button {
	border-color: rgba(0, 0, 0, 0.281);
	color: #e77e1f;
}

.cabinetTitle {
	padding: 0 15px;
}

	.cabinetTitle h3:first-child {
		width: 100%;
	}

	.cabinetTitle h3:last-child {
		color: #3d3d3d;
		font-weight: 400;
	}

.dropdown {
	display: inline-flex;
	align-items: center;
}

	.dropdown ul li {
		list-style: none;
		padding-left: 20px;
	}

.cabinetMain .searchInput {
	width: 50%;
	display: flex;
	justify-content: flex-end;
}

.myTable {
	border: 1px solid #ddd;
	border-collapse: separate;
	border-left: 0;
	border-radius: 10px;
	border-spacing: 0px;
	width: 100%;
	margin: 5% 0 0 0;
}

thead {
	background-color: #b8b8b8;
	display: table-header-group;
	vertical-align: middle;
	border-color: 1px solid #b8b8b8;
	border-collapse: separate;
}

tr {
	display: table-row;
	vertical-align: inherit;
	border-color: inherit;
}

th,
td {
	padding: 5px 4px 6px 4px;
	text-align: left;
	vertical-align: top;
	border-left: 1px solid #ddd;
	text-align: center;
}

td {
	border-top: 1px solid #ddd;
	vertical-align: middle;
}

	td a,
	td span {
		width: 100%;
		display: block;
		color: #e77e1f !important;
		cursor: pointer;
	}

	td form {
		display: none;
	}

		td form.active {
			display: block;
		}

/*Pagination*/

.pagination {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 10px;
}

.pages {
	display: inline-flex;
	padding: 10px;
	margin-left: 5px;
	border: 1px solid gray;
	border-radius: 50px;
}

	.pages li {
		list-style: none;
		line-height: 10px;
		margin: 0 10px;
		text-align: center;
	}

.prev a::before {
	content: "<";
	color: black;
	cursor: pointer;
}

.next a::after {
	content: ">";
	color: black;
	cursor: pointer;
}

.prev a:hover,
.next a:hover {
	text-decoration: none;
}

.pageNumber:hover,
.active {
	color: #e77e1f;
}

/*Pagination End*/

/*Invite*/

.cabinetInvite {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 15px;
	margin: 20px auto;
}

	.cabinetInvite * {
		margin-bottom: 15px;
	}

	.cabinetInvite .select label {
		margin: 0;
	}

	.cabinetInvite label {
		margin-bottom: 0;
	}

	.cabinetInvite input {
		background-repeat: no-repeat;
		background-position-y: center;
		background-position-x: 5%;
		background-size: auto;
		padding: 5px 0 5px 40px;
		border-radius: 10px;
	}



.inviteBtn {
	width: 100%;
	background-color: #e77e1f;
	color: #fff;
	border-radius: 10px;
}

.select .select-input {
	width: 100%;
	border-radius: 10px;
	border: 2px solid #e77e1f;
}

.select .select-role {
	background: none;
	padding-left: 5px;
}

.select select#lang {
	width: 100%;
	height: 40px;
	margin: 0;
	background-image: url("../images/Icon/language.png") !important;
	background-repeat: no-repeat;
	background-position-y: center;
	background-position-x: 7%;
	background-size: auto;
	padding: 5px 0 5px 40px;
	border-radius: 10px;
	text-indent: 5px;
	cursor: pointer;
}

.create-donor-form {
	width: 50%;
}

	.create-donor-form > .fixedBtn {
		width: 280px;
	}

@media (max-width: 768px) {
	.create-donor-form > .fixedBtn {
		right: 0;
		bottom: 1%;
		width: 100%;
	}
}

.create-donor-form .input-wrapper {
	margin-bottom: 20px;
}

.create-donor-form input,
select {
	background-image: none !important;
	height: unset !important;
}

.create-donor-form .input-wrapper > input,
.input-wrapper > select {
	padding: 10px 4px;
}

.create-donor-form .half-input {
	width: 30%;
	display: inline-block;
}

.create-donor-form label {
	display: inherit;
}

.create-donor-form .checkbox-wrapper > label {
	display: inline-block;
}

.create-donor-form textarea {
	resize: none;
}

.create-donor-form .health-label {
	display: inline-block;
}

/* .select select:focus {
  box-shadow: none;
  outline: none;
  border: none;
} */

/*Invite End*/

/*Invite Donor*/

/*Invite Donor End*/

@media screen and (max-width: 1024px) {
	.create-donor-form {
		width: 90%;
		margin: 0 auto;
	}

	.inviteTitle,
	.inviteDesc {
		display: flex;
		justify-content: center;
	}

		.inviteDesc .cabinetInvite {
			flex-direction: column;
			margin: 5px 0;
		}

			.inviteDesc .cabinetInvite * {
				margin: 5px 0;
			}
	/*Sidebar*/
	#check:checked ~ .cabinetNavbar {
		left: 0;
		position: fixed;
	}

	.togglerNavscab #openNav,
	.togglerNavscab #closeNav {
		display: block;
	}

	.togglerNavscab #openNav {
		font-size: 30px;
		margin-left: 20px;
		line-height: 100px;
		transition: all 0.5s;
	}

	.togglerNavscab #closeNav {
		position: relative;
		font-size: 30px;
		line-height: 100px;
		padding-left: 20px;
	}

	.cabinetNavbar {
		position: absolute;
		left: -100%;
		width: 270px;
		height: 100%;
		border-right: 3px solid #b8b8b8;
		z-index: 2;
		transition: all 0.5s ease;
	}

		.cabinetNavbar .navHeader {
			display: flex;
			justify-content: center;
		}
	/*Sidebar End*/
	.cabinetBody {
		position: relative;
		width: 100%;
		margin: 0;
	}

	.cabinetHeader .cabinetLogo {
		width: 100%;
		padding: 0 5%;
		text-align: center;
	}

	.cabinetHeader .headerList {
		width: 0;
		display: flex;
		justify-content: flex-end;
	}
}

@media screen and (max-width: 425px) {
	/*Sidebar*/
	.create-donor-form {
		width: 100%;
	}

	.cabinetNavbar {
		position: absolute;
		left: -100%;
		width: 100%;
		height: 100%;
		border-right: 3px solid #b8b8b8;
		z-index: 2;
		transition: all 0.5s ease;
	}

		.cabinetNavbar .navHeader {
			display: flex;
			justify-content: flex-start;
			padding-left: 40px;
		}

		.cabinetNavbar > .navHeader .togglerNavscab {
			position: absolute;
			right: 20px;
		}
	/*Sidebar End*/
	/*Pagination*/
	.pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 10px;
	}

	.pages {
		display: inline-flex;
		padding: 5px;
		margin-left: 5px;
		border: 1px solid gray;
		border-radius: 50px;
	}

		.pages li {
			list-style: none;
			line-height: 10px;
			margin: 0 5px;
			text-align: center;
		}
	/*Pagination End*/
}

@media screen and (max-width: 320px) {
	.cabinetHeader > .cabinetLogo .img_logo {
		max-height: 60px;
	}
}
