@font-face {
    font-family: "JosefinSans";
    src: url(/fonts/JosefinSans-Regular.ttf?6762afeccd02d16a80409b78fb85251c);
}

@font-face {
    font-family: "JosefinSans-Bold";
    src: url(/fonts/JosefinSans-SemiBold.ttf?22108cbbdb8b3ab5b505fdedcd334efa);
}

@font-face {
    font-family: "Helvetica-Now-Display";
    src: url(/fonts/HelveticaNowDisplay-Medium.ttf?53b5d05abde1c9192de6f6a954a5fef9);
}

@font-face {
    font-family: "Helvetica-Now-Display-Bold";
    src: url(/fonts/HelveticaNowDisplay-Bold.ttf?be1fe3134d5bff7fb99d621201de9aed);
}

button {
    outline: none !important;
}

* {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
    display: block;
}

template {
    display: none;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
    max-width: 100%;
}

img,
iframe {
    border: 0 none;
}

img {
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.bold {
    font-weight: bold;
}

.text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25),
        -1px -1px 1px rgba(254, 252, 252, 0.25);
}

.josefin-bold {
    font-family: JosefinSans-Bold;
}

.link {
    text-decoration: underline !important;
    text-underline-position: under !important;
    cursor: pointer !important;
    color: inherit !important;
}

.background-gray,
.background-orange,
.background-white {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 15px;
}

.background-orange {
    background-color: #f4994d;
}

.background-gray {
    background-color: #0000004d;
}

.background-white {
    background-color: white;
}

.background-lightgray {
    background-color: #f3f4f8;
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 20px 15px;
}

input {
    border: none;
    outline: none;
}

.body {
    width: 300px;
    background: white;
}

.orange-red-gradient-toRight {
    background: linear-gradient(to right, #f4994d, #f37370);
}

.red-blue-gradient-toRight {
    background: linear-gradient(
        254.93deg,
        #6fc0f0 2.34%,
        #4ecaec 38.93%,
        #83a3f0 68.26%,
        #f37370 103.03%
    );
}

.header {
    border-radius: 0 0 20px 20px;
    width: 100%;
    padding: 20px;
}

.header-options {
    background: #d8d8d8;
    box-shadow: -3px -3px 8px rgba(255, 255, 255, 0.2),
        4px 4px 8px rgba(0, 0, 0, 0.15),
        inset -6px -8px 6px rgba(255, 255, 255, 0.25),
        inset 4px 6px 8px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    margin: 0 auto;
    padding: 7px 12px;
    position: absolute;
    left: 0;
    right: 0;
    width: 92%;
}

.body > div {
    margin-bottom: 50px;
}

.back {
    cursor: pointer;
}

/* Input */

.input-container {
    width: 100%;
    display: flex;
    margin-bottom: 5px;
    position: relative;
}

.input-container zzzzzzz img {
    width: 25px;
    text-align: center;
}

.input-container .icon {
    display: inline-block;
    margin-right: 10px;
    width: 25px;
    height: 25px;
}

.input-container .password-toggle,
.input-container .password-toggle-admin {
    position: absolute;
    right: 0;
}

.error {
    color: #f37370 !important;
}

.success {
    color: #689e5c !important;
}

.orange {
    color: #f4994d !important;
}

.input-error {
    padding-left: 35px;
    font-size: 12px;
    line-height: 0;
    position: relative;
    top: -7px;
}

.input {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #737373;
    font-size: 20px;
    color: #000000;
    background-color: transparent;
    -webkit-text-fill-color: #000000;
    -webkit-opacity: 1;
    padding: 0;
}

.input.admin-input {
    border-bottom: 1px solid white;
    color: white;
    -webkit-text-fill-color: white;
}

.input::-moz-placeholder {
    color: #bdbcbc !important;
    -webkit-text-fill-color: #bdbcbc !important;
}

.input:-ms-input-placeholder {
    color: #bdbcbc !important;
    -webkit-text-fill-color: #bdbcbc !important;
}

.input::placeholder {
    color: #bdbcbc !important;
    -webkit-text-fill-color: #bdbcbc !important;
}

.input:disabled {
    border-bottom: none !important;
}

.input.error {
    border-bottom: 1px solid #f37370 !important;
    color: #f37370 !important;
    -webkit-text-fill-color: #f37370 !important;
}

.input.error::-moz-placeholder {
    color: #f37370 !important;
    -webkit-text-fill-color: #f37370 !important;
}

.input.error:-ms-input-placeholder {
    color: #f37370 !important;
    -webkit-text-fill-color: #f37370 !important;
}

.input.error::placeholder {
    color: #f37370 !important;
    -webkit-text-fill-color: #f37370 !important;
}

.partitioned-input {
    display: block;
    border: none;
    padding: 0;
    width: 9ch;
    background: repeating-linear-gradient(
            90deg,
            dimgrey 0,
            dimgrey 1ch,
            transparent 0,
            transparent 1.5ch
        )
        0 100%/10ch 2px no-repeat;
    font: 5ch droid sans mono, consolas, monospace;
    letter-spacing: 0.5ch;
}

/* --Input-- */

/* Select */

.select {
    display: inline-block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #737373;
    background-color: transparent;
    outline: none;
    font-size: 14px;
    color: #737373;
    height: 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(/images/select-arrow.svg?197af3c7192a2523801ea6b5068317cb);
    background-repeat: no-repeat, repeat;
    background-position: right 2px top 10px, 0 0;
}

.select:focus {
    outline: none;
}

/* --Select-- */

/* --Transaction Box-- */

.transaction-box {
    background: linear-gradient(106.12deg, #fdfcfa 1.9%, #cdccca 101.23%);
    box-shadow: 12px 16px 60px rgba(0, 0, 0, 0.25),
        -6px -8px 12px rgba(255, 255, 255, 0.4),
        6px 8px 12px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 10px 16px;
}

.transaction-box .inner {
    background: #e5e4e2;
    box-shadow: inset 6px 8px 12px rgba(0, 0, 0, 0.25),
        inset -6px -8px 12px rgba(255, 254, 254, 0.6);
    border-radius: 12px;
    padding: 25px 10px 10px;
}

.transaction-box .inner .text-1 {
    font-size: 25px;
    color: #878787;
    margin-bottom: -5px;
}

.transaction-box .inner .text-2 {
    font-size: 14px;
    color: #737373;
}

.transaction-box .inner * {
    text-align: center;
}

/* Main Container */

.box {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 20px;
    background-color: #ededee;
    position: relative;
}

.box .checkout-box {
    background: #ededee;
    box-shadow: none;
    border-radius: 40px 0 20px 20px;
}

.box.small {
    border-radius: 8px;
    font-weight: normal;
    font-size: unset;
}

.box-header {
    width: 100%;
    display: flex;
    margin-bottom: 5px;
    align-items: center;
}

.box-header > img {
    position: absolute;
}

.box-title {
    display: inline-block;
    text-align: center;
    width: 100%;
    color: #737373;
}

.orange-red-gradient-toRight > .box-header > .box-title {
    color: white;
}

.box-information {
    margin-bottom: 10px;
}

.box-footer {
    margin-top: 20px;
}

.orange-red-gradient-toRight .modal-title {
    color: white;
}

/* --Main Container-- */

/* Buttons */

.button-primary,
.button-secondary,
.button-inset {
    cursor: pointer;
    position: relative;
}

.button-primary {
    padding: 1px;
    background: linear-gradient(to bottom, #8b8b8b, #eaeaea);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
    border-radius: 11px;
    white-space: nowrap;
    outline: none;
    border: none;
    width: 100%;
}

.button-primary.small .outer {
    padding: 4px 6px;
}

.button-primary.small .inner {
    font-size: 13px;
    padding: 2px;
}

.button-primary .outer {
    border-radius: 10px;
    padding: 6px 8px;
    background: linear-gradient(to bottom, #f37370, #f4994d);
}

.button-primary .inner {
    background: linear-gradient(to right, #f6f6f6, #cecece);
    padding: 4px;
    text-align: center;
    color: #4e4b4b;
    border-radius: 8px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
    font-family: Helvetica-Now-Display-Bold;
    transition: background-color 5s;
    font-size: 14px;
}

.button-primary:active .inner {
    background: linear-gradient(to right, #d2cece, #a4a2a2);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25),
        -1px -1px 1px rgba(254, 252, 252, 0.25);
}

.button-secondary {
    padding: 0.5px;
    background: #fdfdfd;
    border-radius: 10px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15),
        -4px -4px 5px rgba(255, 255, 255, 0.6);
    outline: none;
    border: none;
    width: 100%;
}

.button-secondary .outer {
    background: #f2f3f7;
    border-radius: 10px;
    padding: 7px 8px;
}

.button-secondary .inner {
    color: #a5a5a5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25),
        -1px -1px 1px rgba(254, 252, 252, 0.25);
    text-align: center;
    font-size: 13px;
}

.button-secondary img {
    position: absolute;
    top: 4px;
    left: 12px;
}

.button-secondary:active {
    background: linear-gradient(to right, white, #f37370);
}

.button-secondary:active .outer {
    background: linear-gradient(to right, #f4994d, #f37370);
}

.button-secondary:active .inner {
    color: #ededee;
}

.button-secondary.small .outer {
    padding: 5px 8px;
}

.button-inset {
    padding: 0.5px;
    background: linear-gradient(to bottom, #cecece, #f4994d);
    box-shadow: -4px -4px 8px rgba(255, 255, 255, 0.25),
        3px 3px 8px rgba(0, 0, 0, 0.15), inset 1px 1px 6px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    min-width: 150px;
    outline: none;
    border: none;
    width: 100%;
}

.button-inset .outer {
    box-shadow: inset 1px 1px 6px rgba(0, 0, 0, 0.15);
    background: #f2f3f7;
    border-radius: 6px;
    padding: 9px;
}

.button-inset .inner {
    color: #848484;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25),
        -1px -1px 1px rgba(254, 252, 252, 0.25);
    text-align: center;
    font-size: 13px;
}

.button-inset img {
    position: absolute;
    top: 6px;
    left: 12px;
}

.button-inset:active {
    background: linear-gradient(to right, white, #f37370);
}

.button-inset:active .outer {
    background: linear-gradient(to right, #f4994d, #f37370);
}

.button-inset:active .inner {
    color: #ededee;
}

.button-admin {
    background: #f2f3f7;
    border: 1px solid #fdfdfd;
    box-sizing: border-box;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    color: #7d7d7d;
    font-size: 11px;
    text-align: center;
    padding: 7px 8px;
    min-width: 110px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25),
        -1px -1px 1px rgba(254, 252, 252, 0.25);
}

/* --Buttons-- */

/* Switch Checkbox */

.switch {
    position: relative;
    display: inline-block;
}

.switch input {
    display: none;
}

.switch label {
    display: block;
    width: 54px;
    height: 24px;
    text-indent: -150%;
    clip: rect(0 0 0 0);
    color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.switch label::before,
.switch label::after {
    content: "";
    display: block;
    position: absolute;
    cursor: pointer;
    box-shadow: inset 1px 1px 14px -3px rgba(0, 0, 0, 0.45),
        3px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.switch label::before {
    width: 100%;
    height: 100%;
    background-color: #dedede;
    border-radius: 9999em;
    transition: background-color 0.25s ease;
    border: 3px solid #eaebef;
}

.switch label:after {
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
    transition: left 0.25s ease;
    background: url(/images/toggle.svg?75ec1562a03445074d4f142000531282);
}

.switch input:checked + label::before {
    background-color: #f4994d;
}

.switch input:checked + label::after {
    left: 26px;
}

/* --Switch Checkbox-- */

/* Checkbox */

.checkbox {
    position: absolute;
    opacity: 0;
}

.checkbox + label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    margin: 0;
}

.checkbox + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: sub;
    width: 18px;
    height: 18px;
    background: #f2f3f7;
    border: 1px solid #fdfdfd;
    box-sizing: border-box;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}

.checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}

.checkbox:checked + label:after {
    content: "";
    position: absolute;
    left: 2px;
    top: 3px;
    height: 20px;
    width: 20px;
    background: url(/images/check.svg?8a84addb3201424633dfeb316086c343)
        no-repeat;
}

/* --Checkbox-- */

/* Selection Box */

.selection-group {
    width: 100%;
}

.selection-group .selection-box {
    border-radius: 8px;
    background-color: #f2f3f7;
    border: 1px solid #fdfdfd;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15),
        -4px -4px 5px rgba(255, 255, 255, 0.6);
    display: flex;
    cursor: pointer;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #a5a5a5;
    height: 100%;
    max-height: 50px;
}

.selection-group .selection-box.square:before {
    content: "";
    float: left;
    padding-top: 100%;
}

.selection-group .selection-box.rect:before {
    content: "";
    float: left;
    padding-top: 56.25%;
}

.selection-group .selection-box.inset {
    color: #9b9ea8;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.25);
    background: #ededed;
}

.selection-group .selection-box.filter-active {
    color: #f4994d;
}

.selection-group .selection-box.selected,
.selection-group .selection-box:active {
    background: linear-gradient(to bottom, #e9bcbb, #ffa152);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25),
        -1px -1px 1px rgba(254, 252, 252, 0.25);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.25),
        -3px -3px 3px rgba(255, 255, 255, 0.1);
    color: white !important;
}

.selection-group .selection-box.disabled {
    background-color: #d2d2d2;
    opacity: 0.4;
}

/* --Selection Box */

/* Image Selector Button */

.image-container {
    position: relative;
    cursor: pointer;
}

.image-container .image-selector {
    position: absolute;
    top: 5px;
    left: 3px;
    width: 80px;
    height: 80px;
}

.image-container .image-selector .image-selector-img {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
}

/* --Image Selector Button */

/* Credit Card */

.credit-card {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.25),
        -4px -4px 4px rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background: linear-gradient(109.5deg, #ffffff 2.48%, #f1f1f1 99.17%);
    padding: 2px;
    max-width: 317px;
    width: 100%;
    height: 190px;
}

.credit-card .inner {
    background: #ededee;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 15px 17px 19px 15px;
    box-shadow: inset -0.5px -0.5px 2px 0px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    /* Images */
    /* --Images-- */
    /* Text Fields */
    /* --Text Fields-- */
    /* Input Containers */
    /* --Input Containers-- */
}

.credit-card .inner input {
    border-bottom: 1px solid #e0e0e0;
    color: #4f4f4f;
    text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.25),
        1px 1px 1px rgba(0, 0, 0, 0.15);
}

.credit-card .inner .credit-card-label {
    color: #f4994d;
    font-size: 7px;
}

.credit-card .inner #img1 {
    position: absolute;
    top: 28px;
    left: 15px;
    width: 40px;
    height: 42px;
}

.credit-card .inner #img2 {
    position: absolute;
    top: 35px;
    right: 20px;
    width: 45px;
    height: 35px;
}

.credit-card .inner #zip-code-text {
    position: absolute;
    top: 27px;
    left: 70px;
}

.credit-card .inner #your-bank {
    position: absolute;
    right: 22px;
    font-size: 10px;
}

.credit-card .inner #name-text {
    position: absolute;
    top: -8px;
}

.credit-card .inner #valid-thru-text {
    position: relative;
    width: 25px;
}

.credit-card .inner #cvv-text {
    width: 25px;
    margin-bottom: -5px;
}

.credit-card .inner .zip-container {
    width: 50px;
    position: absolute;
    top: 36px;
    left: 70px;
}

.credit-card .inner .zip-container #credit-card-zip {
    font-size: 12px;
    letter-spacing: 0.5px;
}

.credit-card .inner .number-container {
    width: 100%;
    position: relative;
    top: 40%;
}

.credit-card .inner .number-container #credit-card-number {
    font-size: 17px;
    letter-spacing: 2px;
}

.credit-card .inner .name-container {
    bottom: 15px;
    width: 90%;
}

.credit-card .inner .name-container #credit-card-name {
    font-size: 12px;
}

.credit-card .inner .exp-date-container {
    width: 70px;
    position: relative;
    bottom: 4px;
}

.credit-card .inner .exp-date-container #credit-card-exp {
    font-size: 12px;
}

.credit-card .inner .exp-date-container #credit-card-exp::-moz-placeholder {
    font-size: 10px;
}

.credit-card .inner .exp-date-container #credit-card-exp:-ms-input-placeholder {
    font-size: 10px;
}

.credit-card .inner .exp-date-container #credit-card-exp::placeholder {
    font-size: 10px;
}

.credit-card .inner .cvv-container {
    width: 30px;
}

.credit-card .inner .cvv-container #credit-card-cvv {
    font-size: 12px;
}

.event-item {
    width: 100%;
    background: linear-gradient(89.96deg, #eeecec 0.03%, #f3f3f3 99.97%);
    border: 1px solid #ffffff;
    box-sizing: border-box;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1),
        -5px -5px 8px rgba(255, 255, 255, 0.4);
    border-radius: 7px;
    padding: 9px;
}

/*   Slider   */

.slider {
    transform: rotate(-90deg) translate(0, -27px);
    border: transparent;
    align-self: center;
    width: 140px;
    background-origin: border-box;
    cursor: pointer;
    background: transparent;
    /* slider components */
}

.slider,
.slider::-webkit-slider-runnable-track,
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
}

.slider::-webkit-slider-runnable-track {
    box-sizing: border-box;
    border: none;
    padding: 6px;
    width: 19.5em;
    height: 1.8em;
    border-radius: 0.9em;
    box-shadow: -3px 3px 5px 1px #b9b9b9, inset 0 -1px 1px #ababab,
        inset 0 5px 3px 2px #c5c5c5, inset 0 0 0 8px #dedede,
        inset -1px 2px 2px -1px #dadada;
    background: #94918a;
}

.slider-container .slider::-webkit-slider-runnable-track {
    background: linear-gradient(90deg, #f37370, #f4994d) no-repeat, #94918a;
    background-size: 0% 100%, 100% 100%;
}

.slider::-moz-range-track {
    box-sizing: border-box;
    border: none;
    padding: 6px;
    width: 19.5em;
    height: 1.8em;
    border-radius: 0.9em;
    box-shadow: -3px 3px 5px 1px #b9b9b9, inset 0 -1px 1px #ababab,
        inset 0 5px 3px 2px #c5c5c5, inset 0 0 0 8px #dedede,
        inset -1px 2px 2px -1px #dadada;
    background: #94918a;
}

.slider-container .slider::-moz-range-track {
    background: linear-gradient(90deg, #f37370, #f4994d) no-repeat, #94918a;
    background-size: 0% 100%, 100% 100%;
}

.slider::-ms-track {
    box-sizing: border-box;
    border: none;
    padding: 6px;
    width: 19.5em;
    height: 1.8em;
    border-radius: 0.9em;
    box-shadow: -3px 3px 5px 1px #b9b9b9, inset 0 -1px 1px #ababab,
        inset 0 5px 3px 2px #c5c5c5, inset 0 0 0 8px #dedede,
        inset -1px 2px 2px -1px #dadada;
    background: #94918a;
    color: transparent;
}

.slider::-ms-fill-lower {
    border-radius: 0.9em;
    box-shadow: inset 0 1px 0.25em #777;
    background: linear-gradient(90deg, #f37370, #f4994d) no-repeat;
}

.slider::-ms-tooltip,
.slider::-ms-fill-upper {
    display: none;
}

.slider::-webkit-slider-thumb {
    margin-top: -0.945em;
    box-sizing: border-box;
    border: none;
    padding: 8px;
    width: 2.7em;
    height: 2.7em;
    border-radius: 50%;
    box-shadow: 0 0.375em 20px -0.125em #808080;
    background: linear-gradient(-130deg, #aaaaa8, #f3f3f3) content-box,
        linear-gradient(-130deg, #fdfcfa, #c3c2c0) border-box;
}

.slider::-moz-range-thumb {
    box-sizing: border-box;
    border: none;
    padding: 8px;
    width: 2.7em;
    height: 2.7em;
    border-radius: 50%;
    box-shadow: 0 0.375em 20px -0.125em #808080;
    background: linear-gradient(-130deg, #aaaaa8, #f3f3f3) content-box,
        linear-gradient(-130deg, #fdfcfa, #c3c2c0) border-box;
}

.slider::-ms-thumb {
    box-sizing: border-box;
    border: none;
    padding: 8px;
    width: 2.7em;
    height: 2.7em;
    border-radius: 50%;
    box-shadow: 0 0.375em 20px -0.125em #808080;
    background: linear-gradient(-130deg, #aaaaa8, #f3f3f3) content-box,
        linear-gradient(-130deg, #fdfcfa, #c3c2c0) border-box;
}

.slider::-webkit-slider-runnable-track,
.slider #track {
    position: relative;
}

.slider::-webkit-slider-runnable-track:before,
.slider::-webkit-slider-runnable-track:after,
.slider #track:before,
.slider #track:after {
    position: absolute;
    bottom: 1.98em;
    text-transform: uppercase;
}

.slider::-webkit-slider-runnable-track:before,
.slider #track:before {
    left: 1em;
    content: "min";
}

.slider::-webkit-slider-runnable-track:after,
.slider #track:after {
    right: 1em;
    text-align: right;
    content: "max";
}

.slider:focus {
    outline: none;
}

/* --Slider-- */

/* --Camera Frame-- */

.camera-frame {
    background: linear-gradient(
        89.83deg,
        #ededee 0.16%,
        #d3d3d3 47.95%,
        #ededee 99.9%
    );
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 6px;
}

.camera-frame img {
    box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
    border-radius: 12px;
}

.progress {
    background: #c4c4c4;
    border-radius: 8px 8px 0 0;
    padding: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.progress .progress-bar {
    transition: width 0.5s ease;
    width: 0%;
    height: 100%;
    background: linear-gradient(180deg, #f4994d 0%, #f37370 100%);
}

.progress .progress-bar #progress-bar-text {
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: white;
    font-weight: bold;
    padding-left: 10px;
    padding-top: 2px;
    font-family: JosefinSans-Bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}

.progress-2 {
    background: #d8d8d8;
    box-shadow: 6px 8px 12px rgba(0, 0, 0, 0.15),
        inset -6px -8px 6px rgba(255, 255, 255, 0.25),
        inset 4px 6px 8px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 8px;
}

.progress-2 .progress-track {
    background-color: #94918a;
    box-shadow: inset -2px -4px 4px rgba(255, 253, 253, 0.6),
        inset 2px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.progress-2 .progress-track .progress-bar {
    transition: width 0.5s ease;
    width: 0%;
    height: 100%;
    background: linear-gradient(180deg, #f4994d, #f37370);
    box-shadow: inset -2px -4px 4px rgba(255, 253, 253, 0.6),
        inset 2px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.spinner {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    position: fixed;
    top: calc(50% - 40px);
    left: 0;
    right: 0;
    margin: 0 auto;
}

.spinner div {
    position: absolute;
    background-color: transparent;
    border-radius: 50%;
}

.spinner .spinner-1 {
    width: 100%;
    height: 100%;
    -webkit-animation: spin-right 1.5s linear infinite;
    animation: spin-right 1.5s linear infinite;
    border-top: 5px solid #f4994d;
    border-bottom: 5px solid #f4994d;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.spinner .spinner-2 {
    width: 80%;
    height: 80%;
    -webkit-animation: spin-left 1.5s linear infinite;
    animation: spin-left 1.5s linear infinite;
    border-top: 5px solid #f37370;
    border-bottom: 5px solid #f37370;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.spinner-overlay {
    opacity: 0;
    z-index: 9999;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease-in;
    position: absolute;
    top: 0;
    display: block;
    backdrop-filter: blur(5px);
}

#redeem {
    min-width: unset;
}

#redeem .outer {
    padding: 9px 0;
    box-shadow: inset 1px 0px 6px 2px rgba(244, 153, 77, 0.65) !important;
    border: 1px solid #f4994d !important;
}

#redeem .inner {
    font-size: 11px;
}
@-webkit-keyframes spin-left {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-left {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin-right {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes spin-right {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
/* V2 Face Recognition Countdown Spinner */

.spinner-overlay.spinner-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#spinner-countdown {
  margin-top: 30px;
  text-align: center;
  color: #fff;
}

#countdown-seconds {
  font-size: 36px;
  font-weight: bold;
  display: block;
  background: linear-gradient(135deg, #F37370, #F4994D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}