main, .days {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.habbit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 40px 0;
    height: 56px;
    border: none;
    background: #fff;
    border-radius: 10px;
}

.habbit__day {
    min-width: 100px;
    text-align: center;
    padding: 19px 40px;
    background: var(--side_bar_background);
    border-right: 1px solid var(--border_day);
    border-radius: 10px 0 0 10px;
}

.habbit__comment {
    margin: 7px 25px 7px;
    width: 100%;
    display: flex;
    gap: 10px;
}

.habbit__form {
    margin: 7px 5px 7px 25px;
    width: 100%;
    display: flex;
    gap: 14px;
    position: relative;
}

.input_icon{
    border: 1px solid #E7EBFB;
    width: 100%;
    border-radius: 9px;
    border-width: 1px;
    padding: 12px 20px 12px 45px;
    font-family: "Comfortaa", cursive;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

input.error {
    border: 1px solid red;
}

.input__icon {
    position: absolute;
    top: 12px;
    left: 20px;
}

.habbit__delete {
    display: flex;
    align-items: center;
    padding: 5px;
    margin: 10px;
    cursor: pointer;
    transition: 0.8s ease;
}

.habbit__delete:hover {
    background: #eaeaef;;
    border-radius: 10px;
}

.form__button {
    padding: 15px 30px;
    border-radius: 9px;
    background: var(--form_button_background);
    color: #5051F9;
    font-family: "Comfortaa", cursive;
    font-weight: 500;
    font-style: Medium;
    font-size: 13px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    transition: 0.8s ease;
}

.form__button:hover {
    background-color: var(--side_bar_hover);
    color: #ffffff;;
}

.cover {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(243, 246, 253, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover_hidden {
    display: none;
}

.popup {
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 8px 14px 12px rgba(56, 56, 56, 0.05);
    max-width: 800px;
    text-align: center;
    position: relative;
}

.icon-label {
    font-family: 'Comfortaa';
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(118, 131, 150, 1);
}

.popup h2 {
    margin: 25px;
}

.icon-select {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.icon-select .menu__item {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(80, 81, 249, 1);
}

.icon-select .menu__item img {
    width: 25px;
    height: 25px;
}

.popup__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.popup__form .input_icon {
    box-sizing: border-box;
    width: 600px;
    margin: 0 24px;
    padding-left: 20px;
}

.popup__form .input_icon:nth-child(3n) {
    margin-bottom: 20px;
}

.popup__form .form__button {
    max-width: 120px;
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.close__button {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}