.eb-animate {
    -webkit-animation-duration: var(--animation_duration, 150ms);
    animation-duration: var(--animation_duration, 150ms);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes ebfadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes ebfadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.eb-fadeIn {
    -webkit-animation-name: ebfadeIn;
    animation-name: ebfadeIn
}

@-webkit-keyframes ebfadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes ebfadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.eb-fadeOut {
    -webkit-animation-name: ebfadeOut;
    animation-name: ebfadeOut
}

@media(print),(prefers-reduced-motion: reduce) {
    .eb-animate {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important
    }
}

.eb-close {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10000;
    background: none;
    color: var(--eb-close-button-color, rgb(174, 174, 174));
    font-size: var(--eb-close-button-font-size, 24px);
    font-weight: normal;
    font-family: Tahoma,Arial;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    margin: 0;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    visibility: var(--eb-close-button-visibility);
    -webkit-animation: var(--eb-close-button-animation);
    animation: var(--eb-close-button-animation);
    -webkit-animation-fill-mode: var(--eb-close-button-animation-fill-mode);
    animation-fill-mode: var(--eb-close-button-animation-fill-mode)
}

.eb-close:hover {
    color: var(--eb-close-button-hover-color)
}

.eb-close.placement-inside {
    display: var(--eb-close-button-inside, none)
}

.eb-close.placement-outside {
    display: var(--eb-close-button-outside, none)
}

.eb-close>img {
    display: var(--eb-close-button-image, none);
    padding: 10px
}

.eb-close:focus {
    outline: 0
}

.eb-close>span {
    display: var(--eb-close-button-icon, none);
    font-size: 1em;
    padding: .4em;
    line-height: .4em
}

.eb-rtl .eb-close {
    right: auto;
    left: 0
}

@-webkit-keyframes ebFadeIn {
    99% {
        visibility: hidden
    }

    100% {
        visibility: visible
    }
}

@keyframes ebFadeIn {
    99% {
        visibility: hidden
    }

    100% {
        visibility: visible
    }
}

.eb {
    font-family: Arial;
    line-height: 1.5;
    font-size: 14px
}

.eb svg {
    fill: currentColor
}

.eb a {
    color: #4285f4
}

.eb-row-flex {
    text-align: center;
    margin: -8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.eb-row-flex>* {
    margin: 8px
}

.eb .eb-btn {
    display: inline-block;
    background-color: #555;
    color: #fff;
    padding: .9em;
    line-height: .6em;
    border-radius: 3px;
    text-decoration: none;
    max-width: 100%;
    border: solid 1px rgba(0,0,0,0);
    font-size: 1em;
    text-align: center;
    cursor: pointer
}

.eb .eb-btn.eb-btn-medium {
    font-size: .9em;
    padding: .8em
}

.eb .eb-btn.eb-btn-small {
    font-size: .8em;
    padding: .7em
}

.eb .eb-btn.eb-btn-large {
    font-size: 1.2em
}

.eb .eb-btn.eb-btn-outline {
    background: none;
    color: inherit;
    border: solid 1px currentColor
}

.eb .eb-btn.eb-btn-primary {
    background-color: #4285f4
}

.eb .eb-btn.eb-btn-danger {
    background-color: #db4437
}

.eb .eb-btn.eb-btn-success {
    background-color: #0f9d58
}

.eb .eb-btn:hover {
    opacity: .9
}

.eb-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--buttons-gap)
}

.eb-btns.gap-8 {
    --buttons-gap: 8px
}

.eb-btns.gap-16 {
    --buttons-gap: 16px
}

.eb-btns.gap-24 {
    --buttons-gap: 24px
}

.eb-btns .eb-btn {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

@media only screen and (min-width: 576px) {
    .eb-btns.equal-sizes .eb-btn {
        -webkit-box-flex:1;
        -ms-flex: 1 0 21%;
        flex: 1 0 21%
    }

    .eb-btns.flex-dir-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media only screen and (max-width: 575px) {
    .eb-btns.m-gap-0 {
        --buttons-gap: 0
    }

    .eb-btns.m-gap-8 {
        --buttons-gap: 8px
    }

    .eb-btns.m-gap-16 {
        --buttons-gap: 16px
    }

    .eb-btns.m-gap-24 {
        --buttons-gap: 24px
    }

    .eb-btns.m-flex-dir-row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .eb-btns .eb-btn {
        width: 100%
    }
}

.eb-left {
    float: left
}

.eb-right {
    float: right
}

.eb-h1 {
    font-size: 24px
}

.eb-h2 {
    font-size: 20px
}

.eb-h3 {
    font-size: 18px
}

.eb-h4 {
    font-size: 16px
}

.eb-h1,.eb-h2,.eb-h3,.eb-h4 {
    line-height: 1.3;
    margin-bottom: 20px
}

.eb-p {
    padding: 0;
    margin-bottom: 20px
}

.eb-p:last-child {
    margin: 0
}

.eb-small {
    font-size: .9em
}

.eb-muted {
    opacity: .6
}

.text-success {
    color: #0f9d58
}

.eb-icon-warning,.eb-icon {
    font-size: 50px;
    line-height: 56px;
    border: solid 2px currentColor;
    width: 60px;
    height: 60px;
    display: inline-block;
    border-radius: 100%;
    color: #555;
    margin-bottom: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.eb-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -10px
}

.eb-row .eb-col {
    padding: 10px
}

.eb-label {
    display: inline-block;
    background-color: #555;
    padding: .7em;
    line-height: .8em;
    border-radius: 3px;
    color: #fff
}

.eb-label.eb-label-danger {
    background-color: #db4437
}

.eb-coupon-code {
    background-color: #4285f4;
    color: #fff;
    padding: 6px 18px;
    border-radius: 3px;
    display: inline-block;
    font-family: monospace;
    font-size: 16px;
    position: relative;
    text-align: center;
    letter-spacing: .1em
}

.eb-coupon-code:before {
    content: "✄";
    top: 6px;
    left: -6px;
    font-size: 34px;
    line-height: 13px;
    position: relative
}

.eb-coupon-code-simple {
    border: dashed 1px currentColor;
    padding: .5em;
    line-height: 1;
    font-family: monospace;
    font-weight: bold;
    letter-spacing: .1em
}

.eb-backdrop {
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
    background-color: var(--eb-overlay-background-color);
    backdrop-filter: blur(min(var(--eb-overlay-blur, 0) * 0.25px, 60px));
    -webkit-backdrop-filter: blur(min(var(--eb-overlay-blur, 0) * 0.25px, 60px))
}

.eb-floating-button {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    cursor: pointer
}

.eb-floating-button>* {
    pointer-events: all
}

.eb-floating-button div {
    font-size: var(--fontSize, "16px");
    font-weight: 500;
    color: var(--color);
    background-color: var(--bgColor);
    padding: .6em 1em;
    border-radius: 3px;
    margin: 30px;
    cursor: pointer;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,.2);
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,.2)
}

.eb-floating-button div:hover {
    opacity: .9
}

.eb-floating-button[class*=middle] div {
    margin: 0
}

.eb-columns-container {
    --base-metric: 8px;
    --columns: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: var(--gap)
}

.eb-columns-container.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.eb-columns-container.columns-2 {
    --columns: 2
}

.eb-columns-container.columns-3 {
    --columns: 3
}

.eb-columns-container.columns-4 {
    --columns: 4
}

.eb-columns-container.gap-1 {
    --gap: var(--base-metric)
}

.eb-columns-container.gap-2 {
    --gap: calc(2 * var(--base-metric))
}

.eb-columns-container.gap-5 {
    --gap: calc(5 * var(--base-metric))
}

.eb-columns-container .eb-column {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.eb-columns-container .eb-column:not(.flex-basis-auto) {
    -ms-flex-preferred-size: calc(100%/var(--columns));
    flex-basis: calc(100%/var(--columns))
}

.eb-columns-container .eb-column.flex-basis-auto {
    -ms-flex-preferred-size: auto;
    flex-basis: auto
}

@media only screen and (min-width: 992px) {
    .eb-columns-container .eb-column.md-flex-basis-auto {
        -ms-flex-preferred-size:auto;
        flex-basis: auto
    }
}

@media only screen and (max-width: 991px) {
    .eb-columns-container {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }

    .eb-columns-container.md-columns-1 {
        --columns: 1
    }

    .eb-columns-container.md-columns-2 {
        --columns: 2
    }

    .eb-columns-container.md-columns-3 {
        --columns: 3
    }

    .eb-columns-container.md-columns-4 {
        --columns: 4
    }

    .eb-columns-container.md-gap-1 {
        --gap: var(--base-metric)
    }

    .eb-columns-container.md-gap-2 {
        --gap: calc(2 * var(--base-metric))
    }
}

@media only screen and (min-width: 577px) {
    .eb-columns-container .eb-column.sm-flex-basis-auto {
        -ms-flex-preferred-size:auto;
        flex-basis: auto
    }
}

@media only screen and (max-width: 576px) {
    .eb-columns-container {
        --columns: 1 !important
    }

    .eb-columns-container.sm-gap-1 {
        --gap: var(--base-metric)
    }

    .eb-columns-container.sm-gap-2 {
        --gap: calc(2 * var(--base-metric))
    }

    .eb-columns-container .sm-align-items-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .eb-columns-container .sm-text-center {
        text-align: center
    }
}

.eb-acc {
    text-align: center
}

.eb-acr {
    text-align: right
}

.eb-acb .eb-container,.eb-acm .eb-container {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.eb-acb .eb-container {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.eb-acm .eb-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.eb-inst {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    pointer-events: none;
    z-index: 99999;
    text-align: left;
    padding: var(--eb-margin)
}

.eb-inst>* {
    pointer-events: all
}

.eb-inst,.eb-inst *,.eb-inst *:before,.eb-inst *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.eb-inst .eb-header {
    font-size: 1.6em;
    line-height: 1em;
    margin-bottom: 20px;
    opacity: .8
}

.eb-inst .eb-header ul {
    list-style: disc inside none;
    margin: 0;
    padding: 0
}

.eb-inst .eb-content {
    overflow: hidden
}

.eb-inst .eb-content .eb-input {
    border: 1px solid #aeaeae;
    padding: .6em .8em;
    width: 100%;
    height: auto;
    font-family: "Arial";
    line-height: normal;
    margin: 0
}

.eb-inst .eb-content input[type=checkbox] {
    margin: 0;
    position: relative;
    top: -1px
}

.eb-inst .eb-content .eb-field-row {
    margin-bottom: .5em
}

.eb-inst .eb-content .eb-field-row label {
    display: inline-block;
    margin-bottom: .5em
}

.eb-inst .eb-formHor .eb-container {
    margin: 0 auto;
    max-width: 1000px
}

@media(min-width: 768px) {
    .eb-inst .eb-formHor form {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 -5px
    }

    .eb-inst .eb-formHor .eb-content form>* {
        padding: 0 5px;
        margin: 0;
        width: 100%
    }

    .eb-inst .eb-formHor .eb-content form .eb-footer {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 150px
    }
}

.eb-inst .eb-formHor .eb-content button {
    width: 100%
}

.eb-inst img {
    max-width: 100%
}

.eb-inst.eb-image .eb-content>a {
    display: block
}

.eb-dialog {
    --eb-shadow-elevation: 0px 11px 15px -7px rgba(0,0,0,.2), 0px 24px 38px 3px rgba(0,0,0,.1), 0px 9px 46px 8px rgba(0,0,0,.1);
    --eb-shadow-1: 0 0 2px 2px rgba(0, 0, 1, 0.3);
    --eb-shadow-2: 6px 7px 4px 6px rgba(0, 0, 1, 0.3);
    --eb-shadow-3: 0 0 27px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: var(--eb-height, auto);
    max-height: 100%;
    z-index: 1;
    overflow: auto;
    padding: var(--eb-padding, 30px);
    -webkit-overflow-scrolling: touch;
    position: relative;
    max-width: var(--eb-max-width);
    border-radius: var(--eb-border-radius);
    -webkit-box-shadow: var(--eb-dialog-shadow);
    box-shadow: var(--eb-dialog-shadow);
    background-color: var(--eb-background-color);
    color: var(--eb-text-color);
    border: var(--eb-border-width) var(--eb-border-style) var(--eb-border-color);
    background-image: var(--eb-background-image);
    background-repeat: var(--eb-background-repeat);
    background-size: var(--eb-background-size);
    background-position: var(--eb-background-position)
}

.eb-dialog:focus {
    outline: 0
}

.eb-dialog.velocity-animating {
    -webkit-transition: none;
    transition: none
}

.eb-pageslide {
    position: relative;
    z-index: 1000000000000000000000
}

.eb-pageslide>.eb-inst {
    position: relative;
    height: auto
}

iframe.eboxFitFrame {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0
}

.eb-page_no_scroll,.eb-page_no_scroll body {
    overflow: hidden !important;
    position: relative
}

.eb-hide {
    display: none
}

*[data-ebox-cmd]>*,*[data-ebox]>* {
    pointer-events: none
}

.eb-top-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.eb-top-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.eb-middle-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.eb-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.eb-middle-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.eb-bottom-left {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.eb-bottom-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.eb-bottom-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}
