#cart{
	display: none;
}

iframe[src*="youtube.com"],
iframe[src*="youtu.be"] {
    width: 100% !important;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}

.vxr_modal{
	background-color: rgba(18, 0, 33, 0.78);
}

.vxr_form_response{
	color: #fff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vxr_form_row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vxr_form_row label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.vxr_form_row label.vxr_form_rq::after {
    content: '*';
    color: #b26bff;
    margin-left: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(156, 107, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #9c6bff;
    background: rgba(156, 107, 255, 0.08);
    box-shadow: 0 0 20px rgba(156, 107, 255, 0.3);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="file"] {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(156, 107, 255, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: #9c6bff;
    background: rgba(156, 107, 255, 0.05);
}

input[type="file"]::file-selector-button {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(178, 107, 255, 0.2), rgba(154, 61, 255, 0.1));
    border: 1px solid rgba(156, 107, 255, 0.3);
    border-radius: 8px;
    color: #b26bff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, rgba(178, 107, 255, 0.3), rgba(154, 61, 255, 0.15));
    border-color: #9c6bff;
}

.vxr_form_description_field {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: -5px;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-option,
.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

input[type="checkbox"],
input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #9c6bff;
}

.checkbox-option label,
.radio-option label {
    cursor: pointer;
    margin: 0;
}

.gdpr-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    background: rgba(156, 107, 255, 0.05);
    border: 1px solid rgba(156, 107, 255, 0.2);
    border-radius: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 10px;
}

.vxr_modal .gdpr-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.gdpr-consent label {
    margin: 0;
    cursor: pointer;
    font-weight: normal;
}

.gdpr-consent a {
    color: #b26bff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(178, 107, 255, 0.3);
}

.gdpr-consent a:hover {
    color: #9c6bff;
    border-bottom-color: #9c6bff;
}

.vxr_form_submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #b26bff, #9a3dff);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(156, 107, 255, 0.4);
    margin-top: 10px;
}

.vxr_form_submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(156, 107, 255, 0.6);
}

.vxr_form_submit:active {
    transform: translateY(-1px);
}

.vxr_form_response {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(149, 107, 255, 0.15), rgba(103, 61, 255, 0.08));
    border-radius: 20px;
}

.vxr_form_response i {
    font-size: 60px;
    color: #9c6bff;
    margin-bottom: 20px;
    display: block;
}

.vxr_form_response p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    input[type="number"],
    input[type="password"],
    textarea,
    select {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .vxr_form_submit {
        padding: 16px 35px;
        font-size: 16px;
    }
    
    .gdpr-consent {
        padding: 18px 15px;
        font-size: 13px;
    }
    
    .vxr_form_response {
        padding: 30px 20px;
    }
    
    .vxr_form_response i {
        font-size: 50px;
    }
    
    .vxr_form_response p {
        font-size: 17px;
    }
}