#cart{display:none;}
form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
form .vxr_form_rq::after {
    content: ' *';
    color: #e31e24;
}
form input, form select, form textarea {
    width: 100%;
    padding: 13px 18px;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 10px;
    color: #fff !important;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
form input::placeholder, form select::placeholder, form textarea::placeholder {
    color: rgba(255,255,255,0.2) !important;
}
form input:focus, form select:focus, form textarea:focus {
    border-color: #e31e24 !important;
    background-color: rgba(227,30,36,0.04);
    box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
}
form select.vxr_form_field {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
form select option {
    background: #1a1a1a;
    color: #fff;
}
form textarea {
    resize: vertical;
    min-height: 100px;
}