.indi-block .wrapper {
    display: flex;
    gap: 30px;
}
.indi-block .info-holder {
    display: flex;
    flex-direction: column;
    width: 58%;
    background: var(--background-fourthly);
    padding: 60px;
    border-radius: 30px;
    height: fit-content;
}
.indi-block .form-holder {
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    width: 40.5%;
    background: var(--primary);
    padding: 30px;
}
.indi-block .mark {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--main-text-primary);
    padding: 10px 20px;
    background: var(--primary);
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 20px;
}
.indi-block .desc-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 110%;
    margin-bottom: 10px;
}
.indi-block .desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--main-text-primary);
    margin-bottom: 60px;
}
.indi-block .time-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 110%;
    margin-bottom: 20px;
    display: none;
}
.indi-block .time-title:has(+#timer.active) {
    display: block;
}
.indi-block #timer {
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    display: none;
    gap: 20px;
    margin-bottom: 60px;
    transition: 0.5s;
}
.indi-block #timer.active {
    display: flex;
}
.indi-block .seconds {
    transition: 1s;
    opacity: 0.2;
}
.indi-block .time-hours {
    display: flex;
}
.indi-block #timer span {
    font-size: 16px;
}
.indi-block .hours {
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
}
.indi-block .notes-holder {
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.indi-block .notes-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 110%;
}
.indi-block .note-item {
    display: flex;
    position: relative;
    justify-content: space-between;
    gap: 10px;
}
.indi-block .note-item:before {
    content: "";
    width: 100%;
    height: 1px;
    bottom: 7px;
    left: 0;
    position: absolute;
    border-bottom: 1px dashed var(--background-thirdly);
}
.indi-block .note-name {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    padding-right: 20px;
    background: var(--background-fourthly);
    padding-bottom: 5px;
    position: relative;
}
.indi-block .note-value {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    padding-left: 20px;
    background: var(--background-fourthly);
    padding-bottom: 5px;
    position: relative;
}
.indi-block .form-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
    margin-bottom: 10px;
}
.indi-block .form-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    color: var(--main-text-primary);
    margin-bottom: 20px;
}
.indi-block option {
    color: var(--primary);
}
.indi-block .form-top {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.indi-block .form-top input {
    width: 50%;
}
.indi-block .select-wrapper {
    width: 50%;
    position: relative;
}
.indi-block select {
    width: 100%;
    border-radius: 100px;
    outline: none;
    border: unset;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: var(--main-text-secondary);
    padding: 19px 28px;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
.indi-block .select-wrapper:before {
    content: "";
    width: 12px;
    height: 8px;
    top: 25px;
    right: 30px;
    position: absolute;
    background-image: url(images/select.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.indi-block .btn {
    background: var(--head-secondary);
    width: 100%;
    margin-top: 10px;
}
.indi-block .btn:hover {
    background: var(--head-primary);
    color: var(--primary);
}
.indi-block .date-wrapper {
    position: relative;
}
.indi-block .date-wrapper:before {
    content: "";
    width: 16px;
    height: 16px;
    top: 21px;
    left: 30px;
    background-image: url(images/calendar.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
}
.indi-block input[type="date"] {
    padding-left: 56px;
}
.indi-block input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-appearance: none;
}

@media (max-width: 1400px) {
    .indi-block .info-holder {
        padding: 15px;
    }
    .indi-block .form-holder {
        padding: 15px;
    }
    .indi-block .form input,
    .indi-block select {
        padding: 10px;
    }
    .indi-block .select-wrapper:before {
        top: 17px;
        right: 10px;
    }
    .indi-block input[type="date"]  {
        padding-left: 30px;
    }
    .indi-block .date-wrapper:before {
        top: 14px;
        left: 10px;
    }
    .indi-block .form-desc {
        font-size: 14px;
        margin-bottom: 5px;
    }
}

@media (max-width: 996px) {
    .indi-block .wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .indi-block .info-holder {
        width: 100%;
    }
    .indi-block .mark {
        padding: 5px 10px;
        margin-bottom: 10px;
        font-size: 12px;
    }
    .indi-block .desc {
        margin-bottom: 10px;
    }
    .indi-block #timer {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .indi-block .hours {
        font-size: 32px;
    }
    .indi-block .form-holder {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .indi-block .desc-title,
    .indi-block .time-title {
        font-size: 20px;
    }
    .indi-block .desc {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .indi-block .note-name,
    .indi-block .note-value {
        font-size: 14px;
    }
    .indi-block .note-name {
        padding-right: 5px;
    }
    .indi-block .note-value {
        padding-left: 5px;
    }
}

@media (max-width: 498px) {
    .indi-block .form-top {
        flex-direction: column;
    }
    .indi-block .select-wrapper,
    .indi-block .form-top input {
        width: 100%;
    } 
    .indi-block .form-title {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .indi-block .note-item {
        flex-direction: column;
        gap: 0px;
    }
    .indi-block .notes {
        gap: 10px;
        display: flex;
        flex-direction: column;
    }
    .indi-block .note-name {
        padding-right: unset;
        padding-bottom: unset;
    }
    .indi-block .note-value {
        padding-left: unset;
    }
    .indi-block .note-item:before {
        display: none;
    }
}