.row-frm {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
}


/* calendar input wrapper */

.wed_form {
    position: relative;
}


/* hide default placeholder behavior */

.wed_form input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}


/* floating label fix for date input */

.wed_form input[type="date"]:focus~span,
.wed_form input[type="date"]:valid~span {
    top: -8px;
    left: 10px;
    font-size: 12px;
    padding: 0 6px;
    color: #000;
}


/* calendar icon styling (Chrome / Edge / Safari) */

.wed_form input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 15px;
    cursor: pointer;
    opacity: 0.8;
}


/* remove clear & spin buttons */

.wed_form input[type="date"]::-webkit-clear-button,
.wed_form input[type="date"]::-webkit-inner-spin-button {
    display: none;
}


/* dropdown base */

.wed_select select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}


/* custom dropdown arrow */

.wed_select::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #5d5d5d;
    border-bottom: 2px solid #5d5d5d;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}


/* floating label for select */

.wed_select select:focus~span,
.wed_select select:valid~span {
    top: -8px;
    left: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #5d5d5d;
    padding: 0 6px;
    background-color: #eae7e5;
}


/* remove default arrow (IE) */

.wed_select select::-ms-expand {
    display: none;
}

.wed_form .input-one:focus-visible {
    outline: none;
    border-color: #303030cb;
    box-shadow: none !important;
}

.cap_char_custm {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 20px;
    max-width: 650px;
}

.cap_char_box {
    background: #ffffff;
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: 22px;
    letter-spacing: 3px;
    padding: 10px 18px;
    border-radius: 3px;
    user-select: none;
}

.cap_char_input_wrap {
    flex: 1;
}

.cap_char_input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #666;
    padding: 8px 4px;
    font-size: 16px;
    color: #000000;
    outline: none;
}

.cap_char_input::placeholder {
    color: #000000;
}

.cap_char_refresh {
    background: transparent;
    border: none;
    color: #000000;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cap_char_refresh:hover {
    transform: rotate(180deg);
}

.shoot-spcl {
    font-size: 14px !important;
    line-height: 20px !important;
    color: #5d5d5d !important;
    background-color: #ece5e1 !important;
}

@media (max-width:575px) {
    .row-frm {
        width: 100%;
        flex-direction: column;
    }
    .shoot-spcl {
        background-color: #f2efec !important;
    }
    .wed_select select:focus~span,
    .wed_select select:valid~span {
        background-color: #efe5e2;
    }
    .extra-ht {
        height: 80px;
    }
    .cap_char_custm {
        display: flex;
        align-items: center;
        gap: 18px;
        padding-bottom: 20px;
        max-width: 350px;
    }
}