@import"https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";

:root {
    --volet-primary: #00A261;
    --volet-primary-hover: #007a4d;
    --volet-primary-light: #d1f4dd;
    --volet-text: rgb(75 85 99);
    --volet-header-text: white;
    --volet-background: white;
    --volet-shadow: 0 10px 15px -3px rgb(0 0 0 / .1);
    --volet-shadow-large: 0 20px 25px -5px rgb(0 0 0 / .1);
    --volet-bubble-size: 3.5rem;
    --volet-panel-width: 24rem;
    --volet-spacing: 1rem;
    --volet-panel-height: 360px;
    --volet-font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --volet-font-size: 16px;
    --volet-line-height: 1.5
}

#volet .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

#volet .volet-container {
    position: fixed;
    bottom: var(--volet-spacing);
    right: var(--volet-spacing)
}

#volet .volet-button {
    padding: .5rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    color: var(--volet-background);
    background-color: var(--volet-primary);
    border-radius: .375rem;
    font-family: var(--volet-font-family);
    border: none;
    cursor: pointer;
    transition: background-color .15s
}

#volet .volet-bubble {
    height: var(--volet-bubble-size);
    width: var(--volet-bubble-size);
    border-radius: 9999px;
    background-color: var(--volet-primary);
    color: var(--volet-background);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--volet-shadow);
    transition-property: color, background-color, transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit
}

#volet .volet-bubble:hover {
    background-color: var(--volet-primary-hover);
    transform: scale(1.05)
}

#volet .volet-bubble:active {
    transform: scale(.95)
}

#volet .volet-bubble-icon {
    height: 1.5rem;
    width: 1.5rem
}

#volet .volet-bubble-has-tooltip {
    position: relative
}

#volet .volet-bubble-has-tooltip:before {
    content: attr(data-tooltip);
    position: absolute;
    top: 50%;
    right: calc(100% + .75rem);
    transform: translateY(-50%);
    padding: .5rem .75rem;
    border-radius: .375rem;
    background-color: var(--volet-background);
    color: var(--volet-text);
    font-size: .875rem;
    font-family: var(--volet-font-family);
    white-space: nowrap;
    box-shadow: var(--volet-shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
    pointer-events: none
}

#volet .volet-bubble-has-tooltip:hover:before {
    opacity: 1;
    visibility: visible
}

#volet .volet-panel {
    position: fixed;
    bottom: calc(var(--volet-bubble-size) + var(--volet-spacing) * 2);
    right: var(--volet-spacing);
    width: var(--volet-panel-width);
    background-color: var(--volet-background);
    border-radius: .5rem;
    box-shadow: var(--volet-shadow-large);
    overflow: hidden
}

#volet .volet-panel-enter-active,
#volet .volet-panel-leave-active {
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    transform-origin: bottom right
}

#volet .volet-panel-enter-from,
#volet .volet-panel-leave-to {
    opacity: 0;
    transform: scale(.95)
}

#volet .volet-panel-header {
    background-color: var(--volet-primary);
    padding: var(--volet-spacing);
    display: flex;
    justify-content: space-between;
    align-items: center
}

#volet .volet-panel-title {
    color: var(--volet-header-text);
    font-weight: 300;
    padding: 0;
    margin: 0;
    font-size: var(--volet-font-size);
    font-family: var(--volet-font-family)
}

#volet .volet-panel-close {
    color: var(--volet-header-text);
    display: flex;
    align-items: center;
    transition-property: color, transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit
}

#volet .volet-panel-close:hover {
    color: var(--volet-primary-light);
    transform: scale(1.1)
}

#volet .volet-panel-close:active {
    transform: scale(.9)
}

#volet .volet-panel-close-icon {
    height: 1.25rem;
    width: 1.25rem
}

#volet .volet-panel-header-back {
    display: flex;
    align-items: center;
    color: var(--volet-header-text);
    gap: calc(var(--volet-spacing) * .75);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--volet-font-family)
}

#volet .volet-panel-header-back-icon {
    height: 1.25rem;
    width: 1.25rem
}

#volet .volet-panel-header-feature-title {
    color: var(--volet-header-text);
    font-weight: 500;
    padding: 0;
    margin: 0;
    font-size: var(--volet-font-size);
    font-family: var(--volet-font-family)
}

#volet .volet-panel-content {
    padding: var(--volet-spacing);
    height: var(--volet-panel-height);
    overflow: auto
}

#volet .volet-panel-content-inner>*+* {
    margin-top: var(--volet-spacing)
}

#volet .volet-panel-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(var(--volet-spacing) * .75);
    padding: calc(var(--volet-spacing) * 2)
}

#volet .volet-loading-icon {
    width: 2rem;
    height: 2rem;
    color: var(--volet-text);
    animation: spin 1s linear infinite
}

#volet .volet-loading-text {
    color: var(--volet-text)
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

#volet .volet-panel-features {
    display: flex;
    flex-direction: column;
    gap: calc(var(--volet-spacing) * .5)
}

#volet .volet-feature-button {
    display: flex;
    align-items: center;
    gap: calc(var(--volet-spacing) * .75);
    padding: calc(var(--volet-spacing) * .75);
    border-radius: .375rem;
    text-align: left;
    color: var(--volet-text);
    background-color: var(--volet-background);
    transition: background-color .15s;
    border: none;
    cursor: pointer
}

#volet .volet-feature-button:hover {
    background-color: #f3f4f6
}

#volet .volet-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0
}

#volet .volet-feature-label {
    font-size: .875rem;
    font-weight: 500
}

#volet .volet-feedback {
    background-color: var(--volet-background);
    display: flex;
    flex-direction: column
}

#volet .volet-feedback-back {
    display: flex;
    align-items: center;
    gap: calc(var(--volet-spacing) * .5);
    color: var(--volet-text);
    transition: color .15s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit
}

#volet .volet-feedback-back:hover {
    color: #374151
}

#volet .volet-feedback-back svg {
    width: 1.25rem;
    height: 1.25rem
}

#volet .volet-feedback-categories {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: calc(var(--volet-spacing) * .5)
}

#volet .volet-feedback-category {
    width: 100%;
    display: flex;
    align-items: center;
    gap: calc(var(--volet-spacing) * .75);
    padding: calc(var(--volet-spacing) * .75);
    border-radius: .375rem;
    text-align: left;
    color: var(--volet-text);
    background-color: var(--volet-background);
    transition: background-color .15s;
    border: none;
    cursor: pointer
}

#volet .volet-feedback-category:hover {
    background-color: #f3f4f6
}

#volet .volet-feedback-category-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0
}

#volet .volet-feedback-category-name {
    font-size: .875rem;
    font-weight: 500
}

#volet .volet-feedback-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--volet-spacing);
    gap: var(--volet-spacing)
}

#volet .volet-feedback-change-category {
    display: flex;
    align-items: center;
    gap: calc(var(--volet-spacing) * .5);
    font-size: .875rem;
    background: none;
    font-weight: 500;
    color: var(--volet-text);
    transition: color .15s;
    width: 100%;
    border: none;
    cursor: pointer
}

#volet .volet-feedback-change-category:hover {
    color: #374151
}

#volet .volet-feedback-change-category svg {
    width: 1rem;
    height: 1rem
}

#volet .volet-feedback-input {
    flex: 1
}

#volet .volet-feedback-textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgb(209 213 219);
    border-radius: .375rem;
    padding: .75rem;
    font-size: .875rem;
    color: var(--volet-text);
    box-sizing: border-box;
    box-shadow: 0 1px 2px #0000000d;
    font-family: var(--volet-font-family)
}

#volet .volet-feedback-textarea:focus {
    outline: none;
    border-color: var(--volet-primary);
    box-shadow: 0 0 0 1px var(--volet-primary)
}

#volet .volet-feedback-actions {
    display: flex;
    flex-direction: column;
    gap: calc(var(--volet-spacing) * .5)
}

#volet .volet-feedback-error {
    font-size: .875rem;
    color: #dc2626;
    margin-bottom: calc(var(--volet-spacing) * .5)
}

#volet .volet-feedback-submit:hover {
    background-color: var(--volet-primary-hover)
}

#volet .volet-feedback-submit:disabled {
    opacity: .5;
    cursor: not-allowed
}

#volet .volet-feedback-success {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--volet-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--volet-font-family);
    justify-content: center;
    gap: var(--volet-spacing);
    padding: calc(var(--volet-spacing) * 2);
    text-align: center
}

#volet .volet-feedback-success-icon {
    width: 3rem;
    height: 3rem;
    color: #22c55e
}

#volet .volet-feedback-success h4 {
    font-size: 1.25rem;
    font-family: var(--volet-font-family);
    margin: 0;
    color: var(--volet-text);
    font-weight: 500
}

#volet .volet-feedback-success p {
    color: var(--volet-text);
    font-family: var(--volet-font-family)
}

#volet .volet-feedback-reset {
    margin-top: var(--volet-spacing);
    padding: .5rem 1rem;
    font-size: .875rem;
    border: none;
    background: none;
    font-family: var(--volet-font-family);
    font-weight: 500;
    cursor: pointer;
    color: var(--volet-primary);
    transition: color .15s
}

#volet .volet-feedback-reset:hover {
    color: var(--volet-primary-hover)
}