:root {
    --lightgray: #efefef;
    --blue: steelblue;
    --white: #fff;
    --black: rgba(0, 0, 0, 0.8);
    --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}
* {
    padding: 0;
    margin: 0;
}
.fl-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--black);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.15s ease-in;
    font-size: 16px;
}
.fl-modal-dialog {
    width: 95%;
    position: relative;
    max-width: 800px;
    max-height: 95vh;
    border-radius: 5px;
    background: var(--white);
    overflow: auto;
    cursor: default;
}
.fl-modal-dialog > * {
    padding: 1rem;
}
.fl-modal-header,
.fl-modal-footer {
    background: var(--lightgray);
}
.fl-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fl-modal-header .fl-modal-close {
    font-size: 1.5rem;
}
.fl-modal p + p {
    margin-top: 1rem;
}
.fl-modal {
    visibility: hidden;
    opacity: 0;
    transition: all 0.15s ease-in;
    z-index: 3000;
}
.fl-modal.is-visible {
    visibility: visible;
    opacity: 1;
}
.fl-modal-footer {
    display: flex;
    justify-content: space-around;
}
.fl-modal-button {
    border: 1px black solid;
    text-align: center;
    font-size: 22px;
    vertical-align: middle;
    border-radius: 6px;
    width: 64px;
    height: 48px;
    position: relative;
}
.fl-modal-button-small {
    border: 1px black solid;
    text-align: center;
    font-size: 16px;
    vertical-align: middle;
    border-radius: 4px;
    width: 36px;
    height: 28px;
    position: relative;
}
.fl-modal-close {
    font-size: 18px;
    color: #b3b3b3;
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 10;
}
#jsModalPopupYes {
    border-color: #4caf50;
}
#jsModalPopupNo {
    border-color: #f44336;
}
.fl-modal-button > i::before {
    font-size: 36px;
}
.fl-modal-label {
    font-size: 1.3em;
}
.fl-modal-form {
    text-align: center;
}
.fl-modal-form input {
    font-size: 1.5em;
    text-align: center;
    width: 100%;
    border: 0;
    border-bottom: 1px #dddddd solid;
}
.fl-modal-form input.input-highlight {
    background-color: #fbe9e9;
}
.fl-modal-form input:focus {
    border-bottom-color: #1E88E5;
    border-bottom-width: 1px;
}
.fl-modal-form p {
    position: relative;
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 10vw;
    padding-right: 10vw;
}
.fl-modal-form label {
    position: absolute;
    pointer-events: none;
    color: #b3b3b3;
    font-size: 0.7em;
    top: -0.8em;
    left: 10vw;
    cursor: text;
}
.fl-modal-form select[name="price_1"] {
    position: absolute;
    right: 6px;
}
.fl-modal-form .helptext {
    display: block;
    color: #999999;
    font-size: 12px;
}
.tokenfield .token .token-label {
    padding-right: 16px;
    padding-left: 8px;
    padding-bottom: 10px !important;
    padding-top: 3px !important;
}
@media (max-width: 768px) {
    #jsModalPopupContainerGlobalSearch > .fl-modal-dialog {
        top: 10px;
        position: absolute;
    }
}
