.h1 {
    font-size: 61px;
    font-weight: 700;
    font-family: "Inter_bold";
}

.add-task-content {
    margin-top: 80px;
    font-family: "Inter";
}

.task-details {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
}

.input-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-form input {
    font-size: 20px;
    line-height: 120%;
    font-weight: 400;
}

.input-form label {
    font-size: 20px;
    line-height: 120%;
    font-weight: 400;
}

.separator {
    width: 1px;
    background-color: #D1D1D1;
    margin: 0px 40px;
}

.priority-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 10px;
    border: solid 1px;
    border-color: #D1D1D1;
    background-color: white;
    flex: 1;
    cursor: pointer;
    font-family: "Inter";
}

.priority-button:hover {
    box-shadow: 2px 4px 8px rgba(0, 0, 0, .2);
}

.priority-section {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.bg-red {
    background-color: #ff3d00;
    color: white;
}

.bg-red img {
    filter: saturate(0) brightness(100);
}

.bg-yellow {
    background-color: #FFA800;
    color: white;
}

.yellow-filter img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(61%) saturate(3093%) hue-rotate(357deg) brightness(98%) contrast(110%);
}

.bg-green {
    background-color: #7AE229;
    color: white;
}

.bg-green img {
    filter: saturate(0) brightness(100);
}

.task-input {
    border: solid 1px;
    border-radius: 10px;
    border-color: #D1D1D1;
    padding: 12px 21px;
    font-family: "Inter";
}

/* Make inputs (and textarea) fill their container width and include padding
   in width calculation. Textarea should only resize vertically. */
.task-input {
    box-sizing: border-box;
    width: 100%;
}

textarea.task-input {
    resize: vertical;
    min-height: 120px;
}

.task-input ::placeholder {
    opacity: 1;
    color: #D1D1D1;
}

.required {
    color: #ff3d00;
}

.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    line-height: 120%;
    border-radius: 10px;
    gap: 4px;
    font-family: "Inter";
    padding: 10px;
    border: solid 1px;
    border-color: #2A3647;
    cursor: pointer;
    background-color: transparent;
}

.action-button-section {
    display: flex;
    justify-content: space-between;
    margin-top: 64px;
    margin-bottom: 24px;
}

.task-detail-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.create-button {
    background-color: #2A3647;
    color: white;
    font-weight: 700;
}

.create-task :hover {
    background-color: #29ABE2;
    border-color: #29ABE2;
}

.clear-button :hover {
    border-color: #29ABE2;
    color: #29ABE2;
}

.description {
    font-size: 20px;
    line-height: 120%;
    font-family: "Inter";
}

.select-input {
    padding: 12px 40px 12px 16px;
    border: solid 1px;
    border-radius: 10px;
    border-color: #D1D1D1;
    font-size: 20px;
    line-height: 120%;
    background-image: url('../../assets/icons/addTask/dropdown.svg');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.button-section {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.required-text {
    font-size: 20px;
    line-height: 120%;
}

.required-info {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: #ff3d00;
    opacity: 0;
}

.missing-input {
    border-color: #ff3d00;
}

.form-title {
    font-size: 20px;
    line-height: 120%;
    font-weight: 400;
    font-family: "Inter";
}

.filter-check {
    filter: brightness(0) saturate(100%) invert(19%) sepia(21%) saturate(782%) hue-rotate(175deg) brightness(92%) contrast(92%);
    ;
}

.checkbox-filter {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(9deg) brightness(107%) contrast(101%);
}

.article-bg {
    background-color: #F6F7F8;
}

.logo-responsive {
    display: none;
}

.show-767 {
    display: none;
}

.show-req-text-767 {
    display: none;
}

.hide-req-text-767 {
    display: block;
}

.d_none {
    display: none;
}

.subtask-check {
    filter: brightness(0) saturate(100%) invert(19%) sepia(6%) saturate(2981%) hue-rotate(177deg) brightness(93%) contrast(92%);
    height: 24px !important;
}

.clear-button:hover img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(94%) saturate(1792%) hue-rotate(165deg) brightness(90%) contrast(97%);
}

.assigned-contact button:hover {
    background-color: #3a4555 !important;
    color: white !important;
}

.order-middle{
    display: flex;
    justify-content: center;
}

.add-task-toast-adaption {
    margin-top: 40vh;
}