#formular {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}
.star {
	color: red;
}
h1 {
	font-weight: 700;
	font-size: 61px;
	width: 100%;
	cursor: default;
}
span {
	font-weight: 400;
	font-size: 20px;
}
#title_input::placeholder {
	color: #D1D1D1;
}
#duedate {
	background-color: white;
	display: flex;
}
#duedate_input::placeholder {
	color: #D1D1D1;
}
#separator {
	height: 424px;
	border: 1px solid #d1d1d1;
}
input {
	font-size: 20px;
	flex: 1;
	outline: none;
}
input:hover {
	cursor: pointer;
}
textarea {
	font-size: 20px;
	max-width: 100%;
	min-width: 100%;
}
textarea:focus {
	border: none;
	outline-width: 1px;
	outline-style: solid;
	outline-color: #00c0dd;
}
textarea::placeholder {
	color: #d1d1d1;
}
textarea:hover {
	cursor: pointer;
}
.medium {
	background-color: #fda807;
}
.urgent {
	background-color: #fe3e00;
}
.low {
	background-color: #7ae229;
	fill: #d1d1d1;
}
#leftside {
	display: flex;
	flex-direction: column;
	/* max-width: 440px; */
	width: 100%;
	gap: 32px;
}
#rightside {
	display: flex;
	flex-direction: column;
	/* max-width: 440px; */
	width: 100%;
	gap: 24px;
}
#rightside button {
	width: 100%;
}
#description {
	min-height: 120px;
	max-height: 120px;
	width: 100%;
}
textarea:not([rows]) {
	min-height: auto;
}
.hidden {
	display: none !important;
}
#contactsList {
	display: flex;
	flex-direction: column;
	width: 100%;
	cursor: pointer;
}
.contact {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 6px;
	width: 100%;
	border-radius: 10px;
	background-color: white;
}
.contact:hover {
	background-color: #d1d1d1;
}
.highlight {
	background-color: #2a3547;
	color: white;
}
.highlight:hover {
	background-color: #091931;
}
.circle {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 42px;
	width: 42px !important;
	border-radius: 50%;
	margin: 6px;
}
.circle:hover {
	cursor: pointer;
}
.initial_name {
	display: flex;
	align-items: center;
	gap: 8px;
}
#category {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}
#category_btn {
	justify-content: space-between;
}
.category {
	display: flex;
	padding: 16px 10px;
	border-radius: 10px;
	background-color: white;
	width: 100%;
	cursor: pointer;
}
.category:hover {
	background-color: #d1d1d1;
}
.addSubtask_btn_div {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
#subtask_input::placeholder {
	color: #d1d1d1 !important;
}
.edittedSubtask {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	padding-left: 16px;
	padding-right: 8px;
	border-bottom-color: #00c0dd;
	border-bottom-style: solid;
	border-width: 1px;
	width: 100%;
}
.edittedSubtask input {
	font-size: 16px;
}
.confirmation_img {
	height: 26px;
	width: 22px;
}
#confirmation {
	display: flex;
	align-items: center;
	position: absolute;
	background-color: #2A3647;
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, 100%);
	border-radius: 20px;
	gap: 16px;
	padding: 26px 44px;
	color: white;
}
.addedSubtask {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
	padding: 8px 0;
	padding-left: 35px;
	padding-right: 8px;
	border-radius: 10px;
}
.addedSubtask:hover {
	background-color: #d1d1d1;
}
.addedSubtask:hover .addSubtask_btn_div.hidden {
	display: flex !important;
}
body {
	display: flex;
	flex-direction: column;
	padding-left: 328px;
}
#center-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 48px;
	max-width: 976px;
	padding-top: 196px;
	padding-right: 96px;
}
#addtask_button_div {
	display: flex;
	gap: 16px;
}
#confirm_btn {
	background-color: #2a3547;
	color: white;
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}
#confirm_btn:hover {
	background-color: #00c0dd;
}
#confirm_btn:hover span {
	cursor: not-allowed;
}
#clear_btn {
	color: #2a3547;
	display: flex;
	align-items: center;
	outline: auto;
}
#clear_btn:hover {
	outline-color: #00c0dd;
	color: #00c0dd;
}
.btn_bigFont {
	font-size: 21px !important;
	font-weight: 700 !important;
	color: white;
}
.btn_smallFont {
	font-size: 20px;
	font-weight: 400;
}
.icon:hover {
	background-color: #d1d1d1;
	border-radius: 50px;
	cursor: pointer;
}
ul {
	width: 100%;
}
#rightside input::placeholder {
	color: black;
}
.listitem {
	position: relative;
}
.listitem::after {
	content: "";
	width: 5px;
	height: 5px;
	position: absolute;
	left: calc(0% - 10px);
	bottom: 50%;
	border-radius: 50%;
	background-color: black;
	transform: translate(0, 50%);
}
li span {
	font-size: 16px;
	font-weight: 400;
}
li {
	cursor: pointer;
}
#subtask_input_icons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.rotate {
	transform: rotate(180deg);
}
#required_and_taskbuttons {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 90px;
	width: 100%;
}
#selected_contacts_div {
	display: flex;
}
.formular-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.formular-element {
	padding: 12px 21px;
	border-radius: 10px;
	border-color: #ecedee;
	border-style: solid;
	border-width: 1px;
}
.formular-element:focus {
	border-color: #00c0dd;
}
#priority_button_div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}
#priority_button_div button {
	border-style: solid;
	border-color: #D1D1D1;
	border-width: 1px;
}
button:hover #clear_btn_img {
	fill: #00c0dd;
}
button {
	padding: 16px 10px;
	border-radius: 10px;
	background-color: white;
	gap: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}
button:focus-within {
	border-color: #00c0dd;
	border-style: solid;
	border-width: 1px;
}
button:hover {
	box-shadow: 0px 4px 4px 0px #00000040;
}
button:disabled {
	background-color: #ccc !important;
	cursor: not-allowed;
}
button:disabled:hover {
	box-shadow: none;
	transform: none;
}
.no-shadow {
	box-shadow: none !important;
	outline: auto;
	outline-style: solid;
	outline-width: 1px;
	outline-color: #d1d1d1;
}
.no-shadow:hover {
	outline: auto;
	outline-style: solid;
	outline-width: 1px;
	outline-color: #A8A8A8;
}
.btn_bigFont:hover {
	box-shadow: none !important;
}

#dueDateInput{
    position: absolute;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
    height: 48px;
    opacity: 0;
	top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-right: 21px;
}

#dueDateInput:hover{
    cursor: pointer;
}
#customDueDateDiv{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
	background-color: white;
}

#customDueDateDiv:hover{
    cursor: pointer;
}

#shownDateDiv{
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}

#duedate_input{
  flex-grow: 1;
  border: none;
  z-index: 10;
  width: 20px;
   
}
#duedate_input:focus{
    border: none;
    outline: none;
}
#duedate_input::placeholder{
    color:#D1D1D1
}
#calendarIcon:hover{
    cursor: pointer;
}
.redborder {
	border-color: red !important;
	outline-color: red !important;
}
.zIndex {
	z-index: 1000;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media(max-width: 1100px) {
	body {
		padding-left: calc(120px + 10vw);
	}
}

@media(max-width: 850px){
	body {
		padding-left: 0;
	}
	#center-content {
		padding-inline: 1rem !important;
	}
	h1 {
		padding-inline: 1rem !important;
		left: 0 !important;
		top: 80px !important;
	}
	#addtask_button_div {
		padding-bottom: 20px !important;
		padding-inline: 1rem !important;
		bottom: 140px !important;
	}
}

@media(max-width: 1000px) {
	body {
		align-items: center;
	}
	h1 {
		position: fixed;
		z-index: 50;
		top: 96px;
		font-size: 47px;
		left: calc(120px + 10vw);
		padding-top: 48px;
		background-color: #f6f7f8;
	}
	span {
		font-size: 16px;
	}
	#required_and_taskbuttons {
		flex-direction: column;
		margin: 0;
		gap: 22px;
		position: relative;
	}
	#addtask_button_div {
		justify-content: flex-end;
		gap: 32px;
		position: fixed;
		z-index: 50;
		bottom: 0;
		padding-bottom: 20px;
		background-color: #f6f7f8;
		width: 100%;
		padding-right: 2rem;
		right: 0;
	}
	#separator {
		display: none;
	}
	#formular {
		flex-direction: column;
	}
	#center-content {
		padding-top: 224px;
		padding-right: 2rem;
		gap: 32px;
		align-items: center;
	}
	button {
		padding: 10px;
	}
	input {
		font-size: 16px;
	}
	.btn_smallFont {
		font-size: 16px;
	}
	.no-shadow {
		padding-left: 16px;
		padding-right: 16px;
	}
	.btn_bigFont {
		font-size: 16px !important;
	}
	#description {
		min-height: 88px;
		max-height: 88px;
		font-size: 16px;
	}
	#clear_btn span {
		font-size: 20px;
	}
	#confirm_btn span {
		font-size: 21px;
		font-weight: 700;
	}
	#addtask_button_div button {
		padding: 16px;
		max-height: 57.2px;
	}
	#required_hint {
		margin-bottom: 200px;
	}
}
@media(max-width:640px){
	#addtask_button_div {
		bottom: 80px !important;
	}
}
@media(max-width: 427px) {
	#priority_button_div {
		gap: 10px;
	}
	#priority_button_div svg {
		display: none;
	}
}