input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

input {
	outline: none;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

body {
	font-family: "Muli", sans-serif;
	font-size: 14px;
	font-weight: 400;
    color: #646464;
    background-color: #FEFEFE;
}

#content {
	height: 98vh;
	width: 98vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#options-container {
	display: flex;
	justify-content: space-evenly;
}

.option {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly !important;
	font-weight: 600;
	font-size: 1.2em;
	color: #FEFEFE;
	height: 20vh;
	width: 20vw;
	background-color: #512F2E;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	border-radius: 30px;
	box-shadow: 4px 4px 10px 6px rgba(161, 161, 161, 0.5);
	transition: all ease-in .15s;
}

.option:hover {
	transform: scale(1.1);
}

.option i {
	font-size: 5rem;
}

/* HEADER */

.header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: auto;
	height: 10vh;
	min-height: 5rem;
	padding-left: 2rem;
	background-color: #512F2E;
	border-radius: 2rem 2rem 2rem 2rem;
	z-index: 2;
}

.header .home {
	height: 3rem;
	width: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 1.8rem;
	color: #FEFEFE;
	border-radius: 2rem;
	cursor: pointer;
	transition: all .5s;
	margin-right: 2rem;
}

.header .home:hover {
	color: #CCC;
}

/* NAME SECTION */
.header .name-section {
	color: #fff;
	width: 100%;
}

.header .name-section .title {
	font-size: 1.4rem;
	font-weight: 500;
}

.header .name-section .sub-title {
	font-size: 0.8rem;
	font-weight: 300;
}

.header .options-section {
	display: flex;
	width: 40vw;
	justify-content: space-around;
	align-items: center;
}

/* SEARCH BLOCK */
.header .options-section .search-block {
	display: flex;
	align-items: center;
	height: 2rem;
	width: 70%;
}

.header .options-section .search-block input {
	height: 100%;
	width: 100%;
	background-color: #FEFEFE;
	border-radius: 10rem;
	outline: none;
	padding: 10px;
	border: 0 solid;
}

.header .options-section .add-button-block {
	background-color: #A64942;
	color: #FEFEFE;
	height: 3rem;
	width: 3rem;
	border-radius: 2rem;
	cursor: pointer;
	transition: all .5s;
}

.header .options-section .add-button-block:hover {
	color: #A64942;
	background-color: #FEFEFE;
}

.header .options-section .add-button-block .add-button {
	height: 100%;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 2rem;
}

.add-button.fa {
	font-size: 1.5rem !important;
}

/* END HEADER */

/* ITEMS */

.item-container {
	margin-top: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.item-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	height: 3rem;
	width: 95%;
	background-color: #C5C5C5;
	border-radius: 2rem;
	margin-bottom: 1rem;
	cursor: pointer;
	transition: all ease-in .2s;
	font-size: 1.1rem;
	font-weight: 500;
}

.item-row .left-wrapper {
	display: flex;
}

.item-row .right-wrapper {
	display: flex;
}

.item-row:hover {
	transform: scale(1.03);
	background-color: rgba(173, 87, 80, .5);
	color: #B1605A;
}

.separator {
	width: 5rem;
}

.selected {
	background-color: rgba(173, 87, 80, .5) !important;
	color: #B1605A;
}

/* END ITEMS */

/* MODAL */

#add-inventory-modal {
	display: none;
	flex-direction: column;
	height: 15rem;
	width: 40rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #FEFEFE;
	border-radius: 2rem;
	z-index: 3;
}

#add-inventory-modal .header-modal {
	display: flex;
	flex-direction:column;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 3rem;
}

#add-inventory-modal .header-modal .modal-title {
	font-size: 1.2rem;
	color: #A64942;
}

#add-inventory-modal .header-modal .modal-subtitle {
	font-size: .8rem;
	margin-top: 5px;
	color: rgba(0, 0, 0, .5);
}

#add-inventory-modal .body-modal {
	display: flex;
	flex-direction:column;
	justify-content: flex-start;
	/* margin-left: 2rem; */
	padding: 0 4rem;
}

#add-inventory-modal .body-modal .field-input {
	margin-bottom: 1rem;
}

#add-inventory-modal .body-modal .field-input input {
	border-radius: 2rem;
	padding: .5rem;
	border: .5px solid #CCC;
}

#add-inventory-modal .body-modal .body-modal-top, #add-inventory-modal .body-modal .body-modal-bottom {
	width: 100%;
}

#add-inventory-modal .body-modal .body-modal-top .reference-input {
	width: 100%;
}

#add-inventory-modal .body-modal .body-modal-top .reference-input input {
	width: 100%;
}

#add-inventory-modal .body-modal .body-modal-bottom {
	display: flex;
	justify-content: space-between;
}

#add-inventory-modal .body-modal .body-modal-bottom .name-input {
	width: 60%;
}

#add-inventory-modal .body-modal .body-modal-bottom .name-input input {
	width: 100%;
}

#add-inventory-modal .body-modal .body-modal-bottom .price-input {
	width: 15%;
}

#add-inventory-modal .body-modal .body-modal-bottom .price-input input {
	width: 100%;
}

#add-inventory-modal .body-modal .body-modal-bottom .units-input {
	width: 15%;
}

#add-inventory-modal .body-modal .body-modal-bottom .units-input input {
	width: 100%;
}

#add-inventory-modal .accept-modal {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 2rem;
	width: 10rem;
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%, -50%);
	border-radius: 2rem;
	background-color: #A64942;
	color: #FEFEFE;
	cursor: pointer;
	font-size: 600;
	transition: all .2s;
}

#add-inventory-modal .accept-modal:hover {
	background-color: #FEFEFE;
	color: #A64942;
}










#add-item-modal {
	display: none;
	flex-direction: column;
	min-height: 15rem;
	max-height: 40rem;
	width: 40rem;
	padding-bottom: 2rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #FEFEFE;
	border-radius: 2rem;
	z-index: 3;
}

#add-item-modal .header-modal {
	display: flex;
	flex-direction:column;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 3rem;
}

#add-item-modal .header-modal .modal-title {
	font-size: 1.2rem;
	color: #A64942;
}

#add-item-modal .header-modal .modal-subtitle {
	font-size: .8rem;
	margin-top: 5px;
	color: rgba(0, 0, 0, .5);
}

#add-item-modal .body-modal {
	padding: 0 4rem;
	overflow-y: auto;
}

#add-item-modal .body-modal .item-selected {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .8rem 2rem;
	background-color: rgba(173, 87, 80, .5);
	color: #B1605A;
	border-radius: 1rem;
	margin-bottom: .5rem;
}

#add-item-modal .body-modal .item-selected .units-selected {
	display: flex;
	align-items: center;
	justify-content: space-between;
    width: 8rem;
    font-size: 1.1rem;
}

#add-item-modal .body-modal .item-selected .units-selected input {
    width: 100%;
    padding: .5rem;
    border-radius: .5rem;
    border: 1px solid #CCC;
}

#add-item-modal .body-modal .item-selected .remove-item-selected {
	width: 2rem;
	cursor: pointer;
	transition: all .2s;
}

#add-item-modal .body-modal .item-selected .remove-item-selected:hover {
	color: rgb(201, 36, 25);
}

#add-item-modal .accept-modal {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 2rem;
	width: 10rem;
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%, -50%);
	border-radius: 2rem;
	background-color: #A64942;
	color: #FEFEFE;
	cursor: pointer;
	font-size: 600;
	transition: all .2s;
}

#add-item-modal .accept-modal:hover {
	background-color: #FEFEFE;
	color: #A64942;
}

#employees-modal .accept-modal {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 2rem;
	width: 10rem;
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%, -50%);
	border-radius: 2rem;
	background-color: #A64942;
	color: #FEFEFE;
	cursor: pointer;
	font-size: 600;
	transition: all .2s;
}

#employees-modal .accept-modal:hover {
	background-color: #FEFEFE;
	color: #A64942;
}

#employees-modal {
	display: none;
	flex-direction: column;
	min-height: 15rem;
	max-height: 40rem;
	width: 40rem;
	padding-bottom: 2rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #FEFEFE;
	border-radius: 2rem;
	z-index: 3;
}

#employees-modal .header-modal {
	display: flex;
	flex-direction:column;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 3rem;
}

#employees-modal .header-modal .modal-title {
	font-size: 1.2rem;
	color: #A64942;
}

#employees-modal .header-modal .modal-subtitle {
	font-size: .8rem;
	margin-top: 5px;
	color: rgba(0, 0, 0, .5);
}

#employees-modal .body-modal {
	padding: 0 4rem;
	overflow-y: auto;
}

#employees-modal .body-modal .employee-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .8rem 2rem;
	background-color: #F0F0F0;
	border-radius: 1rem;
	margin-bottom: .5rem;
	cursor: pointer;
	transition: all ease-in .1s;
}

#employees-modal .body-modal .employee-info:hover {
	background-color: rgba(173, 87, 80, .5);
	color: #B1605A;
	transform: scale(1.03);
}










#assign-project-modal .accept-modal {
	display: flex;
	justify-content: center;
	position: absolute;
	height: 2rem;
	width: 100%;
	left: 50%;
	top: 100%;
	transform: translate(-50%, -50%);
	border-radius: 2rem;
	font-size: 600;
	transition: all .2s;
}

#assign-project-modal .accept-modal .add-items, #assign-project-modal .accept-modal .remove-items {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 2rem;
	width: 9rem;
	border-radius: 2rem;
	background-color: #A64942;
	color: #FEFEFE;
	cursor: pointer;
	transition: all .2s;
}

#assign-project-modal .accept-modal .add-items:hover, #assign-project-modal .accept-modal .remove-items:hover {
	background-color: #FEFEFE;
	color: #A64942;
}

#assign-project-modal {
	display: none;
	flex-direction: column;
	min-height: 15rem;
	max-height: 40rem;
	width: 40rem;
	padding-bottom: 2rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #FEFEFE;
	border-radius: 2rem;
	z-index: 3;
}

#assign-project-modal .header-modal {
	display: flex;
	flex-direction:column;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 3rem;
}

#assign-project-modal .header-modal .modal-title {
	font-size: 1.2rem;
	color: #A64942;
}

#assign-project-modal .header-modal .modal-subtitle {
	font-size: .8rem;
	margin-top: 5px;
	color: rgba(0, 0, 0, .5);
}

#assign-project-modal .body-modal {
	padding: 0 4rem;
	overflow-y: auto;
}

#assign-project-modal .body-modal .project-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .8rem 2rem;
	background-color: #F0F0F0;
	border-radius: 1rem;
	margin-bottom: .5rem;
	cursor: pointer;
	transition: all ease-in .1s;
}

#assign-project-modal .body-modal .project-info:hover {
	background-color: rgba(173, 87, 80, .5);
	color: #B1605A;
	transform: scale(1.03);
}












.projects-modal {
	display: none;
	flex-direction: column;
	min-height: 35rem;
	max-height: 55rem;
	width: 80rem;
	padding-bottom: 2rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #FEFEFE;
	border-radius: 2rem;
	z-index: 3;
}

.projects-modal .header-modal {
	display: flex;
	flex-direction:column;
	align-items: center;
	margin-top: 1rem;
	margin-bottom: 3rem;
}

.projects-modal .header-modal .modal-title {
	font-size: 1.2rem;
	color: #A64942;
}

.projects-modal .header-modal .modal-benefit {
	font-size: 1.4rem;
	margin-top: 5px;
	color: rgb(119, 52, 47);
}

.projects-modal .body-modal {
	padding: 0 4rem;
	overflow-y: auto;
	display: flex;
	justify-content: space-between;
}

.projects-modal .body-modal .column-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #A64942;
	margin-bottom: 1.5rem;
}

.projects-modal .body-modal .column-content .column-content-title {
	font-size: 1rem;
	color: #A64942;
	margin-bottom: .5rem;
}

.projects-modal .body-modal .column-content .column-content-fields {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.projects-modal .body-modal .column-content .column-content-fields input {
	padding: .6rem;
	width: 20%;
	height: 1rem;
	border-radius: .8rem;
	border: 1px solid #CCC;
	align-items: center;
}

.projects-modal .add-button-block {
	background-color: #A64942;
	color: #FEFEFE;
	height: 2rem;
	width: 2rem;
	border-radius: 2rem;
	cursor: pointer;
	transition: all .5s;
}

.projects-modal .add-button-block:hover {
	color: #A64942;
	background-color: #CCC;
}

.projects-modal .add-button-block .add-button {
	height: 100%;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 1rem;
}

.projects-modal .body-modal .column-content .column-content-fields div.static {
	text-align: right;
	padding: .6rem;
	width: 20%;
	border-radius: .8rem;
	align-items: center;
	background-color: rgba(173, 87, 80, .2);
	border: 0;
}

.projects-modal .accept-modal {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 2rem;
	width: 10rem;
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%, -50%);
	border-radius: 2rem;
	background-color: #A64942;
	color: #FEFEFE;
	cursor: pointer;
	font-size: 600;
	transition: all .2s;
}

.projects-modal .accept-modal:hover {
	background-color: #FEFEFE;
	color: #A64942;
}

.projects-modal .hidden-button {
	width: 2rem;
	height: 2rem;
}