.vfm--fixed {
    position: fixed
}

.vfm--absolute {
    position: absolute
}

.vfm--inset {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.vfm--overlay {
    z-index: -1;
    background-color: #00000080
}

.vfm--prevent-none {
    pointer-events: none
}

.vfm--prevent-auto {
    pointer-events: auto
}

.vfm--outline-none:focus {
    outline: none
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fade-out {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.vfm-fade-enter-active {
    animation: fade-in .3s ease
}

.vfm-fade-leave-active {
    animation: fade-out .3s ease
}

.vfm-bounce-back {
    transition-property: transform;
    transition-duration: .3s
}

.vfm-slide-down-enter-active,
.vfm-slide-down-leave-active,
.vfm-slide-up-enter-active,
.vfm-slide-up-leave-active {
    transition: transform .3s ease
}

.vfm-slide-down-enter-from,
.vfm-slide-down-leave-to {
    transform: translateY(100vh) !important
}

.vfm-slide-up-enter-from,
.vfm-slide-up-leave-to {
    transform: translateY(-100vh) !important
}

.vfm-slide-left-enter-active,
.vfm-slide-left-leave-active,
.vfm-slide-right-enter-active,
.vfm-slide-right-leave-active {
    transition: transform .3s ease
}

.vfm-slide-right-enter-from,
.vfm-slide-right-leave-to {
    transform: translate(100vw) !important
}

.vfm-slide-left-enter-from,
.vfm-slide-left-leave-to {
    transform: translate(-100vw) !important
}

.vfm-swipe-banner-back,
.vfm-swipe-banner-forward {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 27px;
    z-index: 10
}

.vfm-swipe-banner-back {
    left: 0
}

.vfm-swipe-banner-forward {
    right: 0
}

[polo-tooltip] {
    position: relative
}

[polo-tooltip]>* {
    display: inline-block
}

[polo-tooltip][dashed=true] {
    border-bottom: .5px dashed #878787
}

[polo-tooltip]:after,
[polo-tooltip]:before {
    text-transform: none;
    font-size: .9em;
    line-height: 1;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0
}

[polo-tooltip]:before {
    content: "";
    border: 5px solid #0000;
    z-index: 1001
}

[polo-tooltip]:after {
    content: attr(polo-tooltip);
    min-width: 120px;
    padding: 10px 7px;
    z-index: 1060;
    text-align: left;
    line-height: 1.5;
    text-decoration: none;
    word-wrap: break-word;
    border-radius: 4px;
    background-color: #616161;
    box-shadow: 0 2px 8px #00000026;
    color: #fff
}

[polo-tooltip]:hover:after,
[polo-tooltip]:hover:before {
    display: block
}

[polo-tooltip]:not([position]):before,
[polo-tooltip][position^=top]:before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #616161
}

[polo-tooltip]:not([position]):after,
[polo-tooltip][position^=top]:after {
    bottom: calc(100% + 5px)
}

[polo-tooltip]:not([position]):after,
[polo-tooltip]:not([position]):before,
[polo-tooltip][position^=top]:after,
[polo-tooltip][position^=top]:before {
    left: 50%;
    transform: translate(-50%, -.5em)
}

[polo-tooltip][position^=bottom]:before {
    top: 105%;
    border-top-width: 0;
    border-bottom-color: #616161
}

[polo-tooltip][position^=bottom]:after {
    top: calc(105% + 5px)
}

[polo-tooltip][position^=bottom]:after,
[polo-tooltip][position^=bottom]:before {
    left: 50%;
    transform: translate(-50%, .5em)
}

[polo-tooltip][position^=left]:before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #616161;
    left: -5px;
    transform: translate(-.5em, -50%)
}

[polo-tooltip][position^=left]:after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-.5em, -50%)
}

[polo-tooltip][position^=right]:before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #616161;
    right: -5px;
    transform: translate(.5em, -50%)
}

[polo-tooltip][position^=right]:after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%)
}

[polo-tooltip]:not([position]):hover:after,
[polo-tooltip]:not([position]):hover:before,
[polo-tooltip][position^=bottom]:hover:after,
[polo-tooltip][position^=bottom]:hover:before,
[polo-tooltip][position^=top]:hover:after,
[polo-tooltip][position^=top]:hover:before {
    animation: tooltips-vert .3s ease-out forwards
}

[polo-tooltip][position^=left]:hover:after,
[polo-tooltip][position^=left]:hover:before,
[polo-tooltip][position^=right]:hover:after,
[polo-tooltip][position^=right]:hover:before {
    animation: tooltips-horz .3s ease-out forwards
}

[polo-tooltip=""]:after,
[polo-tooltip=""]:before {
    display: none !important
}

@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%)
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translateY(-50%)
    }
}

.uniframe-root.vfm__content {
    --border-radius: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--border-radius)
}

html[data-uniframe-theme=light] .uniframe-root.vfm__content {
    background-color: #fff;
    box-shadow: 0 6px 16px #0000004d
}

html[data-uniframe-theme=dark] .uniframe-root.vfm__content {
    background-color: #1f1f24
}

.uniframe-root.vfm__content>.icon-close {
    position: absolute;
    right: 24px;
    top: 24px;
    cursor: pointer;
    -webkit-appearance: none;
    outline: none;
    border: none;
    -webkit-user-select: none;
    user-select: none;
    background-color: #0000;
    width: 24px;
    height: 24px;
    transition: opacity .3s
}

html[data-uniframe-theme=light] .uniframe-root.vfm__content>.icon-close {
    color: #2b2b2e
}

html[data-uniframe-theme=dark] .uniframe-root.vfm__content>.icon-close {
    color: #e3e3e3
}

.uniframe-root.vfm__content>.icon-close:hover {
    opacity: .8
}

@keyframes ef1c903f {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.ce727619 {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    outline: 0;
    transition: background-color .2s, border-color .2s, color .2s;
    font-weight: 400;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle;
    -webkit-appearance: none;
    padding: 4px 16px;
    font-size: 14px;
    border-radius: 4px;
    color: var(--uniframe-button-text-color);
    background-color: var(--uniframe-button-bg-color);
    border: 1px solid var(--uniframe-button-bd-color)
}

.ce727619[data-size=mini] {
    height: 24px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px
}

.ce727619[data-size=small] {
    height: 28px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 12px
}

.ce727619[data-size=medium] {
    height: 36px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px
}

.ce727619[data-size=large] {
    height: 44px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 16px
}

.ce727619:hover:not([disabled]):not(.e95a1daa):not(.ffc61107) {
    color: var(--uniframe-button-hover-text-color);
    background-color: var(--uniframe-button-hover-bg-color);
    border: 1px solid var(--uniframe-button-hover-bd-color)
}

.ce727619.e95a1daa,
.ce727619[disabled] {
    pointer-events: none;
    cursor: not-allowed;
    color: var(--uniframe-button-disabled-text-color);
    background-color: var(--uniframe-button-disabled-bg-color);
    border: 1px solid var(--uniframe-button-disabled-bd-color)
}

html[data-uniframe-theme=light] .ce727619.cb6de6db {
    --uniframe-button-text-color: #fff;
    --uniframe-button-bg-color: #131316;
    --uniframe-button-bd-color: #131316;
    --uniframe-button-hover-text-color: #fff;
    --uniframe-button-hover-bg-color: #2b2b2e;
    --uniframe-button-hover-bd-color: #2b2b2e;
    --uniframe-button-disabled-text-color: #b8b8b8;
    --uniframe-button-disabled-bg-color: #f2f2f2;
    --uniframe-button-disabled-bd-color: #f2f2f2
}

html[data-uniframe-theme=dark] .ce727619.cb6de6db {
    --uniframe-button-text-color: #131316;
    --uniframe-button-bg-color: #fff;
    --uniframe-button-bd-color: #fff;
    --uniframe-button-hover-text-color: #131316;
    --uniframe-button-hover-bg-color: #fafafa;
    --uniframe-button-hover-bd-color: #fafafa;
    --uniframe-button-disabled-text-color: #878787;
    --uniframe-button-disabled-bg-color: #616161;
    --uniframe-button-disabled-bd-color: #616161
}

html[data-uniframe-theme=light] .ce727619.f95544fe {
    --uniframe-button-text-color: #131316;
    --uniframe-button-bg-color: #fff;
    --uniframe-button-bd-color: #616161;
    --uniframe-button-hover-text-color: #131316;
    --uniframe-button-hover-bg-color: #f2f2f2;
    --uniframe-button-hover-bd-color: #616161;
    --uniframe-button-disabled-text-color: #b8b8b8;
    --uniframe-button-disabled-bg-color: #fff;
    --uniframe-button-disabled-bd-color: #e3e3e3
}

html[data-uniframe-theme=dark] .ce727619.f95544fe {
    --uniframe-button-text-color: #fff;
    --uniframe-button-bg-color: #0000;
    --uniframe-button-bd-color: #b8b8b8;
    --uniframe-button-hover-text-color: #fff;
    --uniframe-button-hover-bg-color: #2b2b2e;
    --uniframe-button-hover-bd-color: #b8b8b8;
    --uniframe-button-disabled-text-color: #616161;
    --uniframe-button-disabled-bg-color: #131316;
    --uniframe-button-disabled-bd-color: #2b2b2e
}

html[data-uniframe-theme=light] .ce727619.f53365fb {
    --uniframe-button-text-color: #fff;
    --uniframe-button-bg-color: #1a8f5c;
    --uniframe-button-bd-color: #1a8f5c;
    --uniframe-button-hover-text-color: #fff;
    --uniframe-button-hover-bg-color: #106f44;
    --uniframe-button-hover-bd-color: #106f44;
    --uniframe-button-disabled-text-color: #b8b8b8;
    --uniframe-button-disabled-bg-color: #f2f2f2;
    --uniframe-button-disabled-bd-color: #f2f2f2
}

html[data-uniframe-theme=dark] .ce727619.f53365fb {
    --uniframe-button-text-color: #fff;
    --uniframe-button-bg-color: #106f44;
    --uniframe-button-bd-color: #106f44;
    --uniframe-button-hover-text-color: #fff;
    --uniframe-button-hover-bg-color: #1a8f5c;
    --uniframe-button-hover-bd-color: #1a8f5c;
    --uniframe-button-disabled-text-color: #616161;
    --uniframe-button-disabled-bg-color: #2b2b2e;
    --uniframe-button-disabled-bd-color: #2b2b2e
}

html[data-uniframe-theme=light] .ce727619.fc91b736 {
    --uniframe-button-text-color: #1a8f5c;
    --uniframe-button-bg-color: #fff;
    --uniframe-button-bd-color: #616161;
    --uniframe-button-hover-text-color: #1a8f5c;
    --uniframe-button-hover-bg-color: #f2f2f2;
    --uniframe-button-hover-bd-color: #616161;
    --uniframe-button-disabled-text-color: #b8b8b8;
    --uniframe-button-disabled-bg-color: #fff;
    --uniframe-button-disabled-bd-color: #e3e3e3
}

html[data-uniframe-theme=dark] .ce727619.fc91b736 {
    --uniframe-button-text-color: #119e5f;
    --uniframe-button-bg-color: #131316;
    --uniframe-button-bd-color: #b8b8b8;
    --uniframe-button-hover-text-color: #119e5f;
    --uniframe-button-hover-bg-color: #2b2b2e;
    --uniframe-button-hover-bd-color: #b8b8b8;
    --uniframe-button-disabled-text-color: #616161;
    --uniframe-button-disabled-bg-color: #131316;
    --uniframe-button-disabled-bd-color: #2b2b2e
}

html[data-uniframe-theme=light] .ce727619.cc6ea9c6 {
    --uniframe-button-text-color: #131316;
    --uniframe-button-bg-color: #f2f2f2;
    --uniframe-button-bd-color: #f2f2f2;
    --uniframe-button-hover-text-color: #131316;
    --uniframe-button-hover-bg-color: #e3e3e3;
    --uniframe-button-hover-bd-color: #e3e3e3;
    --uniframe-button-disabled-text-color: #b8b8b8;
    --uniframe-button-disabled-bg-color: #f2f2f2;
    --uniframe-button-disabled-bd-color: #f2f2f2
}

html[data-uniframe-theme=dark] .ce727619.cc6ea9c6 {
    --uniframe-button-text-color: #fff;
    --uniframe-button-bg-color: #2b2b2e;
    --uniframe-button-bd-color: #2b2b2e;
    --uniframe-button-hover-text-color: #fff;
    --uniframe-button-hover-bg-color: #616161;
    --uniframe-button-hover-bd-color: #616161;
    --uniframe-button-disabled-text-color: #616161;
    --uniframe-button-disabled-bg-color: #2b2b2e;
    --uniframe-button-disabled-bd-color: #2b2b2e
}

html[data-uniframe-theme=light] .ce727619.b189b815 {
    --uniframe-button-text-color: #fff;
    --uniframe-button-bg-color: #c44749;
    --uniframe-button-bd-color: #c44749;
    --uniframe-button-hover-text-color: #fff;
    --uniframe-button-hover-bg-color: #9a2c2e;
    --uniframe-button-hover-bd-color: #9a2c2e;
    --uniframe-button-disabled-text-color: #b8b8b8;
    --uniframe-button-disabled-bg-color: #f2f2f2;
    --uniframe-button-disabled-bd-color: #f2f2f2
}

html[data-uniframe-theme=dark] .ce727619.b189b815 {
    --uniframe-button-text-color: #fff;
    --uniframe-button-bg-color: #9a2c2e;
    --uniframe-button-bd-color: #9a2c2e;
    --uniframe-button-hover-text-color: #fff;
    --uniframe-button-hover-bg-color: #c44749;
    --uniframe-button-hover-bd-color: #c44749;
    --uniframe-button-disabled-text-color: #616161;
    --uniframe-button-disabled-bg-color: #2b2b2e;
    --uniframe-button-disabled-bd-color: #2b2b2e
}

.ce727619.ffc61107 {
    pointer-events: none
}

.ce727619.ffc61107>span {
    visibility: hidden
}

.ce727619.ffc61107:after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -8px;
    margin-top: -9px;
    display: inline-block;
    vertical-align: middle;
    animation: ef1c903f 1s linear infinite;
    font-size: 0;
    border-radius: 50%;
    border-style: solid;
    border-top-color: #0000 !important;
    border-bottom-color: #0000 !important;
    border-width: 2px;
    overflow: hidden
}

.c61b1a8b {
    -webkit-user-select: none;
    user-select: none;
    display: inline-flex;
    align-items: flex-start;
    white-space: normal;
    line-height: 20px
}

html[data-uniframe-theme=light] .c61b1a8b {
    --uni-frame-checkbox-text-color: #616161;
    --uni-frame-checkbox-text-hover-color: #616161;
    --uni-frame-checkbox-text-disabled-color: #b8b8b8;
    --uni-frame-checkbox-text-checked-color: #616161;
    --uni-frame-checkbox-bd-color: #616161;
    --uni-frame-checkbox-bd-hover-color: #131316;
    --uni-frame-checkbox-bd-disabled-color: #616161;
    --uni-frame-checkbox-bd-checked-color: #131316;
    --uni-frame-checkbox-bg-color: #0000;
    --uni-frame-checkbox-bg-hover-color: #0000;
    --uni-frame-checkbox-bg-disabled-color: #b8b8b8;
    --uni-frame-checkbox-bg-checked-color: #131316;
    --uni-frame-checkbox-icon-color: #fff
}

html[data-uniframe-theme=dark] .c61b1a8b {
    --uni-frame-checkbox-text-color: #b8b8b8;
    --uni-frame-checkbox-text-hover-color: #b8b8b8;
    --uni-frame-checkbox-text-disabled-color: #616161;
    --uni-frame-checkbox-text-checked-color: #b8b8b8;
    --uni-frame-checkbox-bd-color: #b8b8b8;
    --uni-frame-checkbox-bd-hover-color: #fff;
    --uni-frame-checkbox-bd-disabled-color: #616161;
    --uni-frame-checkbox-bd-checked-color: #fff;
    --uni-frame-checkbox-bg-color: #0000;
    --uni-frame-checkbox-bg-hover-color: #0000;
    --uni-frame-checkbox-bg-disabled-color: #616161;
    --uni-frame-checkbox-bg-checked-color: #fff;
    --uni-frame-checkbox-icon-color: #000
}

.c61b1a8b .c27a3efc {
    cursor: pointer;
    display: inline-flex;
    width: 14px;
    height: 14px
}

.c61b1a8b .c27a3efc .ed67be5c {
    position: relative;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border: 1px solid var(--uni-frame-checkbox-bd-color);
    background-color: var(--uni-frame-checkbox-bg-color);
    transition: border-color .3s, background-color .3s
}

.c61b1a8b .c27a3efc .d061ffe2 {
    opacity: 0;
    outline: 0;
    position: absolute;
    margin: 0;
    width: 0;
    height: 0;
    z-index: -1
}

.c61b1a8b .be206971 {
    cursor: pointer;
    padding-left: 8px;
    line-height: 1;
    color: var(--uni-frame-checkbox-text-color)
}

.c61b1a8b[aria-checked=true] .c27a3efc .ed67be5c {
    border-color: var(--uni-frame-checkbox-bd-checked-color);
    background-color: var(--uni-frame-checkbox-bg-checked-color)
}

.c61b1a8b[aria-checked=true] .c27a3efc .ed67be5c:after {
    box-sizing: initial;
    content: "";
    border: 1px solid var(--uni-frame-checkbox-icon-color);
    border-left: 0;
    border-top: 0;
    height: 7px;
    left: 4px;
    position: absolute;
    top: 1px;
    width: 3px;
    transform-origin: center;
    transform: rotate(45deg) scaleY(1)
}

.c61b1a8b[aria-checked=true] .be206971 {
    color: var(--uni-frame-checkbox-text-checked-color)
}

.c61b1a8b[aria-disabled=true] .c27a3efc .ed67be5c {
    border-color: var(--uni-frame-checkbox-bd-disabled-color);
    background-color: var(--uni-frame-checkbox-bg-disabled-color)
}

.c61b1a8b[aria-disabled=true] .be206971 {
    color: var(--uni-frame-checkbox-text-disabled-color) !important
}

.c61b1a8b:hover:not([aria-checked=true]):not([aria-disabled=true]) .c27a3efc .ed67be5c {
    border-color: var(--uni-frame-checkbox-bd-hover-color);
    background-color: var(--uni-frame-checkbox-bg-hover-color)
}

.c61b1a8b:hover:not([aria-checked=true]):not([aria-disabled=true]) .be206971 {
    color: var(--uni-frame-checkbox-text-hover-color)
}

.b26b640a {
    position: relative;
    padding: 24px;
    width: 420px
}

.b26b640a .a777dc19 {
    line-height: 26px;
    font-size: 18px;
    font-weight: 600
}

html[data-uniframe-theme=light] .b26b640a .a777dc19 {
    color: #131316
}

html[data-uniframe-theme=dark] .b26b640a .a777dc19 {
    color: #fff
}

.b26b640a .bcaf1dea {
    padding-top: 24px;
    font-size: 14px;
    line-height: 24px
}

html[data-uniframe-theme=light] .b26b640a .bcaf1dea {
    color: #131316
}

html[data-uniframe-theme=dark] .b26b640a .bcaf1dea {
    color: #e3e3e3
}

.b26b640a .bcaf1dea a {
    text-decoration: underline;
    color: #1a8f5c
}

.b26b640a .d4d49013 {
    padding-top: 24px
}

.b26b640a .ef7d8eba {
    display: flex;
    justify-content: space-between;
    padding-top: 24px
}

.b26b640a .ef7d8eba>button {
    display: flex;
    width: 100%
}

.b26b640a .ef7d8eba>button+button {
    margin-left: 12px
}

.b26b640a .d43c3839 {
    position: absolute;
    left: 50%;
    top: 32px;
    width: 40px;
    height: 40px;
    transform: translateX(-50%)
}

.b26b640a.f7829a1e {
    padding-top: 96px
}

.b26b640a.ad5b7515 .d43c3839,
.b26b640a.d18f1a18 .d43c3839 {
    color: #e59940
}

html[data-uniframe-theme=light] .b26b640a.bc0c78eb .d43c3839 {
    color: #c44749
}

html[data-uniframe-theme=dark] .b26b640a.bc0c78eb .d43c3839 {
    color: #9a2c2e
}

html[data-uniframe-theme=light] .b26b640a.d182c854 .d43c3839 {
    color: #1a8f5c
}

html[data-uniframe-theme=dark] .b26b640a.d182c854 .d43c3839 {
    color: #106f44
}

.b26b640a.e98feda7 .a777dc19,
.b26b640a.e98feda7 .bcaf1dea {
    text-align: center
}

.b26b640a.d47fb2b7 .a777dc19,
.b26b640a.d47fb2b7 .bcaf1dea {
    text-align: left
}

@media screen and (max-width:500px) {
    .b26b640a {
        max-width: 95vw;
        padding-left: 12px;
        padding-right: 12px
    }
}