.textarea-base {
    resize: none;
    min-width: 100%; 
    min-height: 168px;
    padding: 12px 21px 12px 21px;
    border-radius: var(--border-radius-input-fields);
    border: var(--border-input-fields);
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-16-20);
}
  
.textarea-base::placeholder {
    transform: translateY(2px);
    display: flex;
    align-items: center;
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-16-20);
    color: var(--light-gray-placeholder);
}
  
.textarea-base:focus-visible {
    outline: none;
    border: 1px solid var(--blue);
    opacity: 1;
}

.prio {
    flex: 1;
    height: 48px;
    border-radius: var(--border-radius-input-fields);
    border: var(--border-input-fields);
    background-color: white;
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-16-20);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prio:hover {
    scale: var(--scale-hover);
    box-shadow: var(--box-shadow-button);
}
  
.prio-buttons {
    display: flex;
    width: 100%;
    gap: 10px;
}
  
.prio-icon {
    width: 20px;
    height: 14px;
    margin-left: 5px;
}
  
.orange-prio {
    background-color: #ffa800;
}
  
.red-prio {
    background-color: #ff3d00;
}
  
.green-prio {
    background-color: #7ae229;
}

.input-base:focus {
    outline: none;
    border: 1px solid var(--blue);
    opacity: 1;
}

.active-prio {
    color: white;
    font-weight: bold;
}
  
.input-base[type='date'] {
    background-image: url(../assets/icons/event.svg);
    background-repeat: no-repeat;
    background-position: 95%;
    color: var(--primary-color-gray);
}
  
.input-base[type='date']::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}
  
.input-base[type='date']::-moz-appearance {
    appearance: textfield;
}
  
.input-base[type='date']::-ms-clear {
    display: none;
}

.input-base-icon-active:hover,
.input-base-icon:hover {
  background-color: var(--light-gray-bg);
  border-radius: 50%;
}

.input-base-icon-active {
  position: static;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  object-fit: scale-down;
  cursor: pointer;
}

.input-base-V2 {
    color: black;
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-16-20);
    width: 100%;
    height: 32px;
    padding: 12px 21px 12px 21px;
    border-bottom: var(--border-input-fields);
}
  
.input-base-V2:focus {
    outline: none;
    border-bottom: 1px solid var(--blue);
    opacity: 1;
}
  
.input-base-V2-icon-active {
    position: static;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    margin-left: 5px;
    object-fit: scale-down;
    cursor: pointer;
}

.custom-select {
    padding: 12px 21px 12px 21px;
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-16-20);
    background-color: white;
    height: 48px;
    border-radius: var(--border-radius-input-fields);
    border: var(--border-input-fields);
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
  
.custom-select:hover {
    border: 1px solid grey;
}

.red-star {
    color: var(--red);
    font-size: var(--font-size-16-20);
    font-weight: var(--font-weight-400);
}

.input-base-icon {
    cursor: pointer;
}

.subtask-icon {
    cursor: pointer;
}

label {
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-16-20);
}

.vertical-line {
    width: 2px;
    background-color: var(--light-gray-placeholder);
    margin: 0 40px;
    height: auto;
}

.vertical-line-subtask {
    width: 1px;
    background-color: var(--light-gray-placeholder);
    margin-left: 5px;
    height: auto;
}
  
.vertical-line-subtask-dark {
    width: 1px;
    background-color: grey;
    height: 20px;
}
  
.circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid white;
    box-sizing: border-box;
}

.edit-icon {
    width: 18px;
    height: 18px;
}
  
.delete-icon {
    width: 22px;
    height: 22px;
}

.red-border {
    border: 1px solid red !important;
}

.close-and-check {
    position: absolute;
    top: 50%;
    right: 0px;
    padding-right: 21px;
    transform: translateY(-50%);
    display: flex;
}

.contacts-custom-options::-webkit-scrollbar {
    width: var(--scollbar-width-thin);
}

@media screen and (max-width: 1150px) {
    .vertical-line {
        display:none;
    }
}

@media screen and (max-width: 380px) {
    .prio-buttons {
      gap: 5px;
    }
}