.wh-withdrawal-root {
    box-sizing: border-box;
    width: 100%;
    max-width: 900px;
    margin: 0 10px 24px;
    padding: 0;
    color: #18211d;
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color-scheme: light;
}

.wh-withdrawal-root *,
.wh-withdrawal-root *::before,
.wh-withdrawal-root *::after {
    box-sizing: border-box;
}

.wh-withdrawal-root .wh-panel {
    overflow: hidden;
    border: 1px solid #dce6e0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(23, 35, 31, .10), 0 2px 8px rgba(23, 35, 31, .05);
}

.wh-withdrawal-root .wh-header {
    position: relative;
    padding: 26px 28px 22px;
    border-bottom: 1px solid #e6eee9;
    background: #fbfdfc;
}

.wh-withdrawal-root .wh-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--wh-header-color, #33cc33);
}

.wh-withdrawal-root .wh-header h1 {
    margin: 0;
    color: #101915;
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.wh-withdrawal-root .wh-content {
    padding: 28px;
}

.wh-withdrawal-root .wh-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 20px;
}

.wh-withdrawal-root .wh-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.wh-withdrawal-root .wh-field-full {
    grid-column: 1 / -1;
}

.wh-withdrawal-root .wh-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.wh-withdrawal-root .wh-label {
    margin: 0;
    color: #26342e;
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.wh-withdrawal-root .wh-input,
.wh-withdrawal-root .wh-textarea {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    border: 1px solid #d7e2dc;
    border-radius: 8px;
    padding: 13px 14px;
    color: #18211d;
    background: #fbfdfc;
    box-shadow: none;
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    appearance: auto;
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.wh-withdrawal-root .wh-textarea {
    min-height: 132px;
    resize: vertical;
}

.wh-withdrawal-root .wh-input:focus,
.wh-withdrawal-root .wh-textarea:focus {
    outline: 0;
    border-color: var(--wh-button-color, #2f8052);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(var(--wh-accent-rgb, 47, 128, 82), .14);
}

.wh-withdrawal-root .wh-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
}

.wh-withdrawal-root .wh-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 48px;
    margin: 0;
    border: 0;
    border-radius: 8px;
    padding: 13px 20px;
    cursor: pointer;
    color: #fff;
    background: var(--wh-button-color, #2f8052);
    box-shadow: 0 10px 22px rgba(47, 128, 82, .23);
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0;
    appearance: none;
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.wh-withdrawal-root .wh-button:hover,
.wh-withdrawal-root .wh-button:focus {
    color: #fff;
    background: var(--wh-button-hover-color, #246941);
    box-shadow: 0 14px 28px rgba(47, 128, 82, .28);
    transform: translateY(-1px);
}

.wh-withdrawal-root .wh-button:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
    box-shadow: none;
}

.wh-withdrawal-root .wh-button-secondary {
    border: 1px solid #d7e2dc;
    color: #18211d;
    background: #fff;
    box-shadow: none;
}

.wh-withdrawal-root .wh-button-secondary:hover,
.wh-withdrawal-root .wh-button-secondary:focus {
    color: #18211d;
    background: #f5f8f6;
    box-shadow: none;
}

.wh-withdrawal-root .wh-text,
.wh-withdrawal-root .wh-note,
.wh-withdrawal-root .wh-success-box p {
    margin: 0;
    color: #5c6a64;
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

.wh-withdrawal-root .wh-success-box p + p {
    margin-top: 8px;
}

.wh-withdrawal-root .wh-note {
    margin-top: 18px;
    padding: 13px 14px;
    border: 1px solid #dfe9e4;
    border-radius: 8px;
    background: #f7faff;
    color: #42504a;
    margin-bottom: 18px;
}

.wh-withdrawal-root .wh-error {
    display: none;
    margin: 0 0 20px;
    padding: 13px 14px;
    border: 1px solid rgba(179, 38, 30, .28);
    border-radius: 8px;
    color: #b3261e;
    background: #fff5f3;
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.wh-withdrawal-root .wh-error-visible {
    display: block;
}

.wh-withdrawal-root .wh-success-box {
    border: 1px solid rgba(47, 128, 82, .28);
    border-radius: 8px;
    background: #f2fbf6;
    padding: 20px;
}

.wh-withdrawal-root .wh-success-box strong {
    display: block;
    margin-bottom: 8px;
    color: #18211d;
    font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.wh-withdrawal-root .wh-hidden {
    display: none !important;
}

span.piros{
	color: RED;
}

@media (max-width: 680px) {
    .wh-withdrawal-root {
        margin-bottom: 18px;
    }

    .wh-withdrawal-root .wh-header,
    .wh-withdrawal-root .wh-content {
        padding: 18px;
    }

    .wh-withdrawal-root .wh-grid {
        grid-template-columns: 1fr;
    }

    .wh-withdrawal-root .wh-button {
        width: 100%;
    }
}

.wh-captcha{
    display:flex;
    align-items:center;
    gap:10px;
}

.wh-captcha-question{
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
}

.wh-captcha-input{
    width:80px !important;
    text-align:center;
}

/* preloader */
.spinner{
    width:20px;
    height:20px;
    margin:0 auto 10px auto;
    border:4px solid #ddd;
    border-top:4px solid #2196F3;
    border-radius:50%;
    animation:spin 0.8s linear infinite;
}

@keyframes spin{
    from{ transform:rotate(0deg); }
    to{ transform:rotate(360deg); }
}