.custom-date-input {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.custom-date-input input[type="date"] {
    width: 100%;
    max-width:100%;
    padding-right: 30px;
    padding-top: 16px;
    padding-bottom: 16px;
    min-height: 56px;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    /* пространство для иконки */
}

.custom-date-input input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    /* скрыть стандартный значок */
    pointer-events: none;
}

.custom-date-input .icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: url('/img/calendar2.png') no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 20;
    /* курсор "указатель" */
}

/* Для браузеров на основе WebKit (Chrome, Safari, Edge) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Для Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* Общий стиль, если необходимо */
input[type="number"] {
    appearance: textfield;
}

.bronForm .custom-date-input {
position: relative;
max-width:100%;
}

.bronForm .form-feedback-wrapper-label {
top: -15px !important;
left: 10px !important;
transform: translate(0, 50%) !important;
font-size: 12px !important;
}

.bronForm .form-feedback-wrapper-label {
margin: 0;
position: absolute;
left: 15px;
top: 50%;
transform: translate(0, -50%);
z-index: 3;
transition: all .3s ease;
}

section {
scroll-margin-top: 120px; /* Adjust based on header height */
}

@media screen and (max-width: 520px) {
.inputBox , .inputBox-2, .inputBox input, .custom-date-input{
max-width: 280px!important;
display:block;
margin:auto;
width:100%;
}
}
