.sk-callback[hidden],
.sk-callback [hidden] {
    display: none !important;
}

.sk-callback {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 1rem;
    overflow-y: auto;
}

.sk-callback__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(25, 27, 20, 0.62);
    backdrop-filter: blur(1px);
}

.sk-callback__dialog {
    position: relative;
    width: min(30rem, 100%);
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    min-height: 26.875rem;
    padding: clamp(3.5rem, 7vw, 4.5rem) clamp(1.5rem, 5vw, 2.625rem) 2.625rem;
    border-radius: 0.875rem;
    background: #2c301f;
    color: #fff;
    box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.32);
    outline: none;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.sk-callback__x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font: 400 2rem/1 Arial, sans-serif;
    cursor: pointer;
}

.sk-callback__x:hover,
.sk-callback__x:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.sk-callback__title {
    max-width: 23rem;
    margin: 0 auto 2rem;
    color: #fff;
    font-family: var(--font-family-heading, Georgia, serif);
    font-size: clamp(2.25rem, 6vw, 3.125rem);
    font-weight: 400;
    line-height: 0.98;
    text-align: center;
    text-wrap: balance;
}

.sk-callback__form {
    display: grid;
    gap: 0.75rem;
}

.sk-callback__field {
    min-height: 3.75rem;
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.sk-callback__field:focus-within {
    border-color: #e5941a;
    box-shadow: 0 0 0 2px rgba(229, 148, 26, 0.24);
}

.sk-callback__field-icon {
    width: 4.5rem;
    flex: 0 0 4.5rem;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    color: #e5941a;
}

.sk-callback__field input,
.sk-callback__field select {
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font: 400 1rem/1.4 var(--font-family-base, Arial, sans-serif);
    outline: none;
}

.sk-callback__field input {
    width: 100%;
    padding: 0.875rem 1.25rem;
}

.sk-callback__field input::placeholder {
    color: rgba(255, 255, 255, 0.54);
    opacity: 1;
}

.sk-callback__field select {
    width: 6.75rem;
    flex: 0 0 6.75rem;
    padding: 0.75rem 0.65rem;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    cursor: pointer;
}

.sk-callback__field select option {
    background: #fff;
    color: #2c301f;
}

.sk-callback__error {
    margin: 0.125rem 0 0;
    color: #ffd6c9;
    font: 700 0.875rem/1.35 var(--font-family-base, Arial, sans-serif);
    text-align: center;
}

.sk-callback__submit {
    justify-self: center;
    min-width: 8.75rem;
    min-height: 3.25rem;
    margin-top: 0.625rem;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: 0.5rem;
    background: #e5941a;
    color: #fff;
    font: 700 1rem/1.25 var(--font-family-base, Arial, sans-serif);
    cursor: pointer;
}

.sk-callback__submit:hover,
.sk-callback__submit:focus-visible {
    background: #f0a229;
}

.sk-callback__submit:disabled {
    cursor: wait;
    opacity: 0.68;
}

.sk-callback__success {
    min-height: 17rem;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.25rem;
    text-align: center;
}

.sk-callback__success p {
    max-width: 22rem;
    margin: 0;
    color: #fff;
    font-family: var(--font-family-heading, Georgia, serif);
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.05;
    text-wrap: balance;
}

.sk-callback__trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body.sk-callback-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .sk-callback {
        padding: 0.75rem;
    }

    .sk-callback__dialog {
        max-height: calc(100vh - 1.5rem);
        max-height: calc(100dvh - 1.5rem);
        min-height: 0;
        padding: 3.75rem 1.125rem 2rem;
    }

    .sk-callback__title {
        margin-bottom: 1.5rem;
        font-size: clamp(2rem, 11vw, 2.625rem);
    }

    .sk-callback__field-icon {
        width: 3.75rem;
        flex-basis: 3.75rem;
    }

    .sk-callback__field select {
        width: 6.25rem;
        flex-basis: 6.25rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .sk-callback:not([hidden]) .sk-callback__backdrop {
        animation: sk-callback-fade 160ms ease-out both;
    }

    .sk-callback:not([hidden]) .sk-callback__dialog {
        animation: sk-callback-rise 180ms ease-out both;
    }
}

@keyframes sk-callback-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sk-callback-rise {
    from { opacity: 0; transform: translateY(0.5rem) scale(0.99); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
