@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

* {
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    background-image: var(--interact-gradient);
    text-decoration: none;
    color: transparent;
    font-weight: bold;
    -webkit-background-clip: text;
    transition-duration: 0.2s;
    cursor: pointer;
}

a:hover, a:focus, .btn-link:hover, .btn-link:focus {
    color: var(--interact-color-highlight);
}

button, .button, input[type=submit] {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: var(--button-text-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-image: var(--interact-gradient);
    border: none;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 3px 9px black;
    transition-duration: 0.2s;
}

    button:hover, .button:hover, input[type=submit]:hover {
        transform: scale(103%);
    }

    button:focus, .button:focus, input[type=submit]:focus {
        box-shadow: 0 0 0 0.2rem white;
    }

    button:disabled, .button:disabled, input[type=submit]:disabled {
        cursor: default;
        background-image: linear-gradient(#a1a1a1, #646464);
        transform: none;
    }

input {
    border: 2px solid transparent;
    border-radius: 5px;
    color: white;
    background: linear-gradient(to top, #31313e, #181820), linear-gradient(to right, #b985fd, #ff00d9);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    box-shadow: inset 0 0 10px black, 0 3px 9px black;
    padding: 4px 9px;
    font-size: 20px;
    transition-duration: 0.2s;
    color-scheme: dark;
}

    input:focus, input:active {
        border: 2px solid white;
    }

    input:disabled {
        background: linear-gradient(to top, #a1a1a1, #646464);
    }

    input[type=file] {
        display: none;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border: none;
        border-radius: 10px;
        background: none;
        background-color: rgb(0, 0, 0, 0.75);
        box-shadow: none;
        padding: 0;
        color: transparent;
        font-size: 0;
        outline: 3px dashed transparent;
        outline-offset: -10px;
        z-index: 100;
    }

        ::file-selector-button {
            width: 100%;
            height: 100%;
            border: none;
            background-color: transparent;
            background-image: url("/images/icons/upload.svg");
            background-size: 75% 75%;
            background-repeat: no-repeat;
            background-position: center;
        }

    input[type=file].input-file-no-drag {
        display: block;
        background-color: transparent;
        border-radius: 0;
    }

        .input-file-no-drag::file-selector-button {
            cursor: pointer;
            background: none;
        }

    input[type=search] {
        width: 300px;
        max-width: min(300px, 100%);
    }

    input[type=number] {
        width: 65px;
    }

    input[type=checkbox] {
        box-shadow: 0 3px 9px black;
    }

    input[type=range] {
        border: none;
        padding: 0;
        accent-color: var(--interact-color-highlight);
        box-shadow: none;
    }

    input[type=radio] {
        box-shadow: 0 3px 9px black;
    }

        input[type=search]::target-text {
            padding-left: 20px;
        }

        input[type=search]::placeholder {
            background: url(/images/icons/search.svg) no-repeat 13px center;
            background-position-x: 6px;
            background-size: 20px;
            overflow: visible;
            position: absolute;
            left: 5px;
            top: 20%;
        }

        input[type=search]::-webkit-search-cancel-button {
            -webkit-appearance: none;
            cursor: pointer;
            background-color: #ff00d9;
            background-repeat: no-repeat;
            padding: 1px;
            background-position: center center;
            background-size: 20px 20px;
            background-image: -webkit-gradient(linear, left top, right bottom, from(transparent), color-stop(0.46, transparent), color-stop(0.46, #fff), color-stop(0.54, #fff), color-stop(0.54, transparent), to(transparent)), -webkit-gradient(linear, right top, left bottom, from(transparent), color-stop(0.46, transparent), color-stop(0.46, #fff), color-stop(0.54, #fff), color-stop(0.54, transparent), to(transparent)) !important;
            border: 2px solid #ff00d9;
            box-sizing: border-box;
            height: 20px;
            width: 20px;
            display: inline-block;
            vertical-align: middle;
            margin-left: 0.5em;
            border-radius: 1em;
        }

textarea {
    border: 2px solid transparent;
    border-radius: 5px;
    color: white;
    background: linear-gradient(to top, #31313e, #181820), linear-gradient(to right, #b985fd, #ff00d9);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    box-shadow: inset 0 0 10px black, 0 3px 9px black;
    padding: 4px 9px;
    font-size: 20px;
}

    textarea:disabled {
        cursor: default;
        background: linear-gradient(to top, #a1a1a1, #646464);
    }

label {
    margin-right: 8px;
}

select {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    color: white;
    background: linear-gradient(#31313e, #181820), linear-gradient(to right, #b985fd, #ff00d9);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    box-shadow: 0 3px 9px black;
    padding: 7px 4px;
    font-size: 20px;
    transition-duration: 0.2s;
}

    select:focus, select:active {
        border: 2px solid white;
    }

    select:disabled {
        cursor: default;
        background: linear-gradient(to top, #a1a1a1, #646464);
    }

option {
    background: #181820;
    color: white;
}

    option:checked {
        background-color: #ff4ce4;
    }

    option:disabled {
        color: white;
        background-color: black;
    }

table {
    margin: 0 auto;
    width: 100%;
    font-size: 18px;
    border-radius: 16px;
    box-shadow: 0 3px 9px black;
}

    tr {
        text-align: left;
        margin: 10px;
        border-radius: 16px;
    }

        tr:nth-child(odd) {
            background-color: #31313e;
        }

        tr:nth-child(even) {
            background-color: #181820;
        }

    td, th {
        padding: 10px;
    }

    tr:first-child td:first-child, th:first-child {
        border-top-left-radius: 16px;
    }

    tr:first-child td:last-child, th:last-child {
        border-top-right-radius: 16px;
    }

    tr:last-child td:first-child, tr:last-child th:first-child {
        border-bottom-left-radius: 16px;
    }

    tr:last-child td:last-child, tr:last-child th:last-child {
        border-bottom-right-radius: 16px;
    }

blockquote {
    text-align: center;
    font-size: 24px;
    font-size: 1.5rem;
    font-stretch: normal;
    font-weight: 700;
    line-height: 1.5;
}

    blockquote:before {
        content: "\201C";
        position: relative;
        font-size: 100px;
        font-size: 6.25rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        top: 40px;
        line-height: 0.25;
        letter-spacing: normal;
        width: 100%;
    }

    blockquote p {
        margin-bottom: 0;
    }

    blockquote cite {
        font-size: 16px;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.615384615384615;
        text-transform: none;
    }

.icon-button {
    position: relative;
    font-size: 22px;
}

    .icon-button:before {
        --button-icon-size: 4px;
        --button-icon-margin: 6px;
        --button-icon-height: unset;
        --button-icon-top: 0;
        --button-icon-left: 0;
        content: "\00a0\00a0\00a0";
        padding-right: var(--button-icon-size);
        margin-right: var(--button-icon-margin);
        height: var(--button-icon-height);
        top: var(--button-icon-top);
        left: var(--button-icon-left);
        position: relative;
        -webkit-mask-size: cover;
        mask-size: cover;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        color: transparent;
        background-color: white;
        -webkit-mask-image: var(--button-icon);
        mask-image: var(--button-icon);
        transition-duration: 0.5s;
    }

/* custom radio buttons */
.radio {
    display: inline-block;
    cursor: pointer;
    width: 1em;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid black;
    background: linear-gradient(#e3e3e3, #e3e3e3);
    box-shadow: 0 3px 9px black;
    transition-duration: 0.2s;
}

.radio-selected {
    border: 0.25em solid #e3e3e3;
    background: var(--interact-gradient);
}

.required {
    display: inline !important;
}

    .required:before {
        content: "\00a0";
        font-size: 8px;
    }

.required, .important-message {
    font-weight: bold;
    background: var(--red-gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlighted-message {
    font-weight: bold;
    background: linear-gradient(#c7a5f5, #ff0a86);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.green-text {
    font-weight: bold;
    background: var(--green-gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.yellow-text {
    font-weight: bold;
    background: var(--yellow-gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.red-text {
    font-weight: bold;
    background: var(--red-gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#paypal-button-container {
    width: 100%;
    margin-top: 15px;
    padding: 25px 25px 0 25px;
    border-radius: 25px;
    background: white;
    box-shadow: inset 0 0 10px black;
}

.scrollbar-measure {
    width: 100px;
    height: 100px;
    overflow: scroll;
    position: absolute;
    top: -9999px;
}

/* CUSTOM HTML */
.custom-html {
    overflow: hidden;
    padding: 20px;
}

.rz-html-editor-content {
    color: white;
    padding: 18px;
    background: linear-gradient(to top, rgb(49, 49, 62), rgb(24, 24, 32)) padding-box padding-box;
    box-shadow: black 0px 0px 10px inset;
}

.rz-html-editor-content p, .custom-html p {
    margin-bottom: 0.75rem;
}

.rz-html-editor-content img, .custom-html img {
    max-width: 100%;
    max-height: 500px;
    margin-bottom: 10px;
    border-radius: 16px;
    box-shadow: 0 3px 9px black;
}

.rz-html-editor-content .caption, .custom-html .caption {
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.rz-html-editor-content h1, .custom-html h1,
.rz-html-editor-content h2, .custom-html h2,
.rz-html-editor-content h3, .custom-html h3,
.rz-html-editor-content h4, .custom-html h4,
.rz-html-editor-content h5, .custom-html h5,
.rz-html-editor-content h6, .custom-html h6 {
    font-weight: bold;
    margin: 20px 0;
}

.custom-html-img-center {
    max-width: 700px;
    text-align: center;
    margin: 25px auto;
}

.custom-html-img-float-left, .custom-html-img-float-right {
    text-align: center;
    max-width: 700px;
}

@media (min-width: 729px) {
    .custom-html-img-float-left {
        float: left;
        max-width: 50%;
        margin-right: 20px;
    }

    .custom-html-img-float-right {
        float: right;
        max-width: 50%;
        margin-left: 20px;
    }
}

.custom-html-embed {
    max-width: 700px;
    margin: 25px auto;
    text-align: center;
}

    .embed-styling iframe, .custom-html-embed iframe {
        border-radius: 16px;
        box-shadow: 0 3px 9px black;
    }

.custom-html-youtube-embed {
    width: 100%;
    aspect-ratio: 16/9;
}

.custom-html-socials {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.custom-html-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    margin: 0 calc(var(--size) * 0.02);
}

.custom-html-social-icon {
    width: calc(var(--size) * var(--scale));
    height: calc(var(--size) * var(--scale));
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: white;
    -webkit-mask-image: var(--social-icon);
    mask-image: var(--social-icon);
}

@keyframes contentFadeUp {
    0% {
        opacity: 0;
        filter: blur(5px);
        transform: translateY(15%);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.content {
    padding: 1.1rem 0 50px 0;
    animation: 0.25s ease-out 0s 1 contentFadeUp;
    max-width: 1600px;
    margin: 0 auto;
}

.content-article {
    max-width: 1024px;
}

.invisible-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.cross-button {
    display: block;
    background: none;
    box-shadow: none;
    border-radius: 100%;
    transition: none;
    width: 14px;
    height: 24px;
}

    .cross-button:after {
        content: "×";
        position: relative;
        top: -5px;
        left: -4.5px;
    }

    .cross-button:hover, .cross-button:focus {
        background: var(--interact-gradient);
        transform: none;
        box-shadow: 0 3px 9px black;
    }

.draggable-icon {
    cursor: move;
}

.draggable-icon:before {
    content: "\00a0\00a0\00a0";
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url(../images/icons/burger.svg);
    mask-image: url(../images/icons/burger.svg);
    width: 2.5rem;
    font-size: var(--size);
    padding-right: 8px;
    position: relative;
    background-color: white;
}

.button-icon:before {
    content: "\00a0\00a0\00a0";
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    width: 2.5rem;
    font-size: 20px;
    padding-right: 8px;
    margin-right: 8px;
    top: 1px;
    position: relative;
    background-color: white;
}

.link-arrow-left {
    cursor: pointer;
}

.link-arrow-left:before {
    color: var(--interact-gradient-color1);
    display: inline-block;
    padding-left: 4px;
    content: "\0279E";
    transform: scaleX(-1);
    transition: transform 0.3s ease-out;
}

.link-arrow-left:hover:before, .link-arrow-left:focus:before {
    color: var(--interact-color-highlight);
    transform: scaleX(-1) translateX(4px);
}

.link-arrow-right {
    cursor: pointer;
}

.link-arrow-right:after {
    color: var(--interact-gradient-color2);
    display: inline-block;
    padding-left: 4px;
    content: "\0279E";
    transition: transform 0.3s ease-out;
}

.link-arrow-right:hover:after, .link-arrow-right:focus:after {
    color: var(--interact-color-highlight);
    transform: translateX(4px);
}

.link-arrow-disabled {
    cursor: unset;
    color: var(--text-color) !important;
    opacity: 0.5;
}

    .link-arrow-disabled:before, .link-arrow-disabled:after {
        color: var(--text-color) !important;
    }

    .link-arrow-disabled:hover:before, .link-arrow-disabled:focus:before {
        color: unset;
        transform: scaleX(-1);
    }

    .link-arrow-disabled:hover:after, .link-arrow-disabled:focus:after {
        color: unset;
        transform: none;
    }

.navbar-socials {
    background-color: rgb(0, 0, 0, .25);
    border-radius: 6px;
    padding: 10px 0;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#friendly-box {
    display: none;
}

#no-javascript, #outdated-browser {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 99999;
    color: white;
    background-color: #1e2029;
    width: 100vw;
    height: 100vh;
}

#no-javascript {
    display: flex;
}

    #outdated-browser div {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    #no-javascript a {
        font-size: 18px;
        color: white;
        transition: unset;
    }

        #no-javascript a:after {
            color: white;
        }

        #no-javascript a:hover:after {
            color: #ff6beb;
        }

    #outdated-browser a {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 18px;
        color: white;
        text-align: center;
        margin: 0 50px;
    }

        #no-javascript a:hover, #outdated-browser a:hover span {
            color: #ff6beb;
        }

    #no-javascript img, #outdated-browser img {
        height: 120px;
    }

    #outdated-browser span {
        margin-top: 15px;
    }

.not-supported-notice-top {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.not-supported-notice-bottom {
    font-size: 20px;
    text-align: center;
    margin-bottom: 35px;
}

#blazor-error-ui {
    background: black;
    color: white;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#reconnect-modal {
    position: fixed;
    inset: 0px;
    z-index: 1050;
    overflow: hidden;
    background-color: rgb(0, 0, 0, 0.8);
    text-align: center;
}

    #reconnect-modal div:first-child {
        font-size: 1.25rem;
        font-weight: bold;
        margin-top: 20px;
    }

    #reconnect-modal div:last-child {
        display: inline-block;
        margin-top: 8px;
        width: 2em;
        height: 2em;
        border-width: 0.4em;
        border-style: solid;
        border-color: var(--interact-color-highlight) rgb(243, 243, 243) rgb(243, 243, 243);
        border-image: initial;
        border-radius: 50%;
        animation: spin 1.5s linear infinite;
    }

    .website-styling #reconnect-modal div:last-child {
        border-color: var(--select-color) rgb(243, 243, 243) rgb(243, 243, 243);
    }

/* PAYPAL */
.paypal-button {
    box-shadow: 0 3px 9px black;
}

/* GOOGLE MAPS ADDRESS AUTOCOMPLETE */
.pac-container {
    background: #181820;
}

.pac-item {
    color: #9f9f9f;
}

    .pac-item:hover, .pac-item:focus {
        background: var(--interact-color);
    }

    .pac-item:hover .pac-matched, .pac-item:focus .pac-matched {
        color: white;
    }

.pac-matched {
    color: var(--interact-color-highlight);
}

.pac-item-query {
    color: white;
}

.pac-logo:after {
    display: none;
}

/* PHOTOSWIPE */
.pswp__zoom-wrap {
    display: flex;
    justify-content: center;
    position: relative !important;
}

.pswp__item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pswp__img--placeholder {
    display: none !important;
}

.pswp img {
    display: none;
    position: relative;
    width: auto !important;
    height: auto !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
}

.pswp--ui-visible img {
    display: block;
}

/* reCAPTCHAv2 */
.g-recaptcha {
    margin: 15px 0;
}

/* HTML5 QRCode */
#html5-qrcode-anchor-scan-type-change {
    display: none !important;
}

/* RADZEN */
.rz-html-editor {
    border: 2px solid transparent;
    border-radius: 5px;
    color: white;
    background: linear-gradient(to right, #b985fd, #ff00d9);
    background-clip: border-box;
    background-origin: border-box;
    box-shadow: inset 0 0 10px black, 0 3px 9px black;
}

.rz-html-editor-toolbar {
    border-bottom: 2px solid transparent;
    color: white;
    padding: 5px;
    background: linear-gradient(to top, #31313e, #181820), linear-gradient(to right, #b985fd, #ff00d9);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    box-shadow: inset 0 0 10px black;
}

.rz-html-editor-button {
    background-image: var(--interact-gradient);
    color: var(--button-text-color);
    height: 32px;
}

.rz-html-editor-button:disabled {
    height: 32px;
}

.rz-html-editor-button.rz-selected {
    background-image: linear-gradient(white, white);
    color: black;
    box-shadow: none;
}

.rz-html-editor-colorpicker {
    border-radius: 5px;
    box-shadow: inset 0 0 2px black;
}

.rz-html-editor-color {
    box-shadow: none;
}

    .rz-html-editor-color .rzi {
        background: white;
        color: black;
        border-top-left-radius: 2px;
        border-left: 1px solid #9d9d9d;
        border-top: 1px solid #9d9d9d;
    }

.rz-html-editor-color-value {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    box-shadow: 0 3px 9px black;
}

.rz-colorpicker-trigger {
    box-shadow: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.rz-html-editor-color:hover, .rz-colorpicker-trigger:hover {
    transform: none;
}

button.rz-colorpicker-trigger .rzi:before, button.rz-colorpicker-trigger .rz-menuitem .rz-menuitem-icon:before, .rz-menuitem button.rz-colorpicker-trigger .rz-menuitem-icon:before, button.rz-colorpicker-trigger .rz-fileupload-row .rz-button .rzi-close:before, .rz-fileupload-row .rz-button button.rz-colorpicker-trigger .rzi-close:before, button.rz-colorpicker-trigger .rz-fileupload-row .rz-button .rzi-times:before, .rz-fileupload-row .rz-button button.rz-colorpicker-trigger .rzi-times:before, button.rz-colorpicker-trigger .rz-fileupload-row .rz-button .rz-icon-trash:before, .rz-fileupload-row .rz-button button.rz-colorpicker-trigger .rz-icon-trash:before, button.rz-colorpicker-trigger .rz-datatable .rzi-chevron-circle-right:before, .rz-datatable button.rz-colorpicker-trigger .rzi-chevron-circle-right:before, button.rz-colorpicker-trigger .rz-datatable .rzi-chevron-circle-down:before, .rz-datatable button.rz-colorpicker-trigger .rzi-chevron-circle-down:before, button.rz-colorpicker-trigger .rz-sortable-column .rzi-grid-sort:before, .rz-sortable-column button.rz-colorpicker-trigger .rzi-grid-sort:before, button.rz-colorpicker-trigger .rz-datatable-header .rzi-plus:before, .rz-datatable-header button.rz-colorpicker-trigger .rzi-plus:before, button.rz-colorpicker-trigger .rz-datatable-loading-content .rzi-circle-o-notch:before, .rz-datatable-loading-content button.rz-colorpicker-trigger .rzi-circle-o-notch:before, button.rz-colorpicker-trigger .rz-column-drag:before, button.rz-colorpicker-trigger .rz-fileupload-row .rz-paginator-element .rzi-close:before, .rz-fileupload-row .rz-paginator-element button.rz-colorpicker-trigger .rzi-close:before, button.rz-colorpicker-trigger .rz-fileupload-row .rz-paginator-element .rzi-times:before, .rz-fileupload-row .rz-paginator-element button.rz-colorpicker-trigger .rzi-times:before, button.rz-colorpicker-trigger .rz-fileupload-row .rz-paginator-element .rz-icon-trash:before, .rz-fileupload-row .rz-paginator-element button.rz-colorpicker-trigger .rz-icon-trash:before {
    color: white;
}

div:not(.rz-form-field-content) > .rz-colorpicker.rz-state-disabled, div:not(.rz-form-field-content) > .rz-spinner.rz-state-disabled, .rz-calendar.rz-state-disabled div:not(.rz-form-field-content) > .rz-inputtext, div:not(.rz-form-field-content) > .rz-listbox.rz-state-disabled, div:not(.rz-form-field-content) > .rz-autocomplete-input:disabled, div:not(.rz-form-field-content) > .rz-state-disabled.rz-autocomplete, div:not(.rz-form-field-content) > .rz-state-disabled.rz-multiselect, div:not(.rz-form-field-content) > .rz-state-disabled.rz-dropdown, div:not(.rz-form-field-content) > .rz-colorpicker:disabled, .rz-lookup-search div:not(.rz-form-field-content) > input:disabled, div:not(.rz-form-field-content) > .rz-spinner:disabled, .rz-calendar div:not(.rz-form-field-content) > .rz-inputtext:disabled, div:not(.rz-form-field-content) > .rz-multiselect:disabled, div:not(.rz-form-field-content) > .rz-dropdown:disabled, div:not(.rz-form-field-content) > .mask:disabled, div:not(.rz-form-field-content) > .rz-textarea:disabled, div:not(.rz-form-field-content) > .rz-textbox:disabled {
    border: none;
}

.rz-html-editor-dropdown-items, .rz-splitbutton-menu, .rz-autocomplete-panel, .rz-multiselect-panel, .rz-dropdown-panel {
    background: #16161e;
    width: fit-content!important;
}

.rz-html-editor-dropdown-value {
    background: white;
    color: black;
    font-weight: bold;
    padding: 2px 4px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-transform: capitalize;
}

.rz-html-editor-dropdown-trigger {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 2px 0;
    box-shadow: none;
}

    .rz-html-editor-dropdown-trigger:hover {
        transform: none;
    }

.rz-html-editor-dropdown-item.rz-selected {
    background-color: #ff6beb;
    color: black;
}

.rz-popup {
    background-color: #16161e;
}

.rz-form-field-content, .rz-lookup-search input, .rz-spinner, .rz-calendar .rz-inputtext, .rz-multiselect, .rz-dropdown, .mask, .rz-textarea, .rz-textbox, .rz-color-box .rz-spinner {
    border: 2px solid transparent !important;
    color: white;
    background: linear-gradient(to top, #31313e, #181820), linear-gradient(to right, #b985fd, #ff00d9);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

    .rz-form-field-content:hover, .rz-lookup-search input:hover, .rz-spinner:hover, .rz-calendar .rz-inputtext:hover, .rz-multiselect:hover, .rz-dropdown:hover, .mask:hover, .rz-textarea:hover, .rz-textbox:hover, .rz-color-box .rz-spinner:hover {
        border: 2px solid transparent !important;
    }

    .rz-form-field-content:focus, .rz-lookup-search input:focus, .rz-spinner:focus, .rz-calendar .rz-inputtext:focus, .rz-multiselect:focus, .rz-dropdown:focus, .mask:focus, .rz-textarea:focus, .rz-textbox:focus {
        border: 2px solid white !important;
        background: linear-gradient(to top, #31313e, #181820), linear-gradient(white, white);
    }

    .rz-color-box .rz-spinner:has(input:focus) {
        border: 2px solid white !important;
        background: linear-gradient(to top, #31313e, #181820), linear-gradient(white, white);
    }

.rz-color-box .rz-spinner {
    padding-left: 5px;
}

.rz-color-box .rz-spinner .rz-spinner-input {
    background-image: linear-gradient(transparent, transparent);
    box-shadow: none;
}

.rz-button.rz-primary.rz-shade-default, .rz-primary.rz-shade-default.rz-paginator-element {
    background-color: white;
    color: white;
}

    .rz-button.rz-primary.rz-shade-default:hover, .rz-primary.rz-shade-default.rz-paginator-element:hover {
        color: black;
    }

.rz-html-editor-source.rz-textarea {
    border: none !important;
    border-radius: 0 !important;
    flex: unset;
}

    .rz-html-editor-source.rz-textarea:hover {
        box-shadow: black 0px 0px 10px inset !important;
    }

/* LOADING ANIMATION */
.button-display-loading {
    cursor: default !important;
    color: transparent !important;
    transition-duration: unset;
}

    .button-display-loading:hover {
        transform: none;
    }

    .button-display-loading:before {
        background-color: transparent !important;
    }

.loading-button-overlay {
    z-index: 500;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.loading-button-overlay span {
    background: white!important;
}

.form-display-loading {
    transition-duration: unset;
}

.loading-form-overlay {
    z-index: 500;
    display: flex;
    background-color: rgb(0, 0, 0, .5);
    align-items: center;
    position: absolute;
}

.loading-animation-container {
    padding: calc(var(--size) * 0.4);
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    width: fit-content;
    max-width: 100%;
    max-height: 100%;
    background: linear-gradient(#31313e, #181820), linear-gradient(to right, #b985fd, #ff00d9);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border: 4px solid transparent;
    box-shadow: inset 0 0 10px black, 0 3px 18px black;
}

.loading-animation {
    display: block;
    height: var(--size);
    width: var(--size);
    margin-left: auto;
    margin-right: auto;
    -webkit-animation: loading-animation-rotate 1.5s infinite linear;
    animation: loading-animation-rotate 1.5s infinite linear;
}

    .loading-animation span {
        width: calc(var(--size) * 0.6);
        height: calc(var(--size) * 0.6);
        display: block;
        position: absolute;
        background: linear-gradient(to right, #b985fd, #ff00d9);
        border-radius: 50%;
        -webkit-animation: loading-animation-bounce 2.0s infinite ease-in-out;
        animation: loading-animation-bounce 2.0s infinite ease-in-out;
    }

        .loading-animation span:nth-child(2) {
            top: auto;
            bottom: 0;
            -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s;
        }

.button-display-saved {
    background-image: linear-gradient(135deg, #73d76a, #17cb08) !important;
}

.button-saved-overlay {
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: white;
    animation: 0.25s ease-out 0s 1 contentFadeUp;
}

.button-saved-icon {
    margin-right: 2px;
    margin-bottom: 2px;
    height: 40%;
}

@-webkit-keyframes loading-animation-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading-animation-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loading-animation-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes loading-animation-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ACCORDION */
.accordion-button {
    text-align: unset;
    width: 100%;
    padding: 12px;
    font-weight: bold;
    font-size: 20px;
    background: linear-gradient(#31313e, #181820) !important;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 3px 9px black;
    transition-duration: 0.15s;
}

    .accordion-button:hover {
        color: var(--interact-color-highlight);
        transform: unset;
    }

.accordion-arrow-button {
    width: 100%;
    height: 20px;
    background-image: none !important;
    background-color: transparent;
    box-shadow: none;
    transition: none;
    transform: rotate(0);
}

    .accordion-arrow-button:after {
        content: "\00a0\00a0\00a0";
        -webkit-mask-size: cover;
        mask-size: cover;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-image: url("../images/icons/accordion-arrow.svg");
        mask-image: url("../images/icons/accordion-arrow.svg");
        width: 20px;
        height: 20px;
        font-size: 20px;
        padding-right: 20px;
        top: -10px;
        position: relative;
        background-color: white;
        content: "";
        width: 1.25rem;
        height: 1.25rem;
    }

    .accordion-arrow-button:hover {
        transform: unset;
    }

    .accordion-arrow-button:hover:after {
        background-image: var(--interact-gradient);
    }

    .active .accordion-arrow-button {
        transform: rotate(180deg);
    }

.accordion-panel {
    background: linear-gradient(#31313e, #181820);
    border-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 3px 9px black;
    padding: 8px;
    margin-bottom: 16px;
}

.accordion-body {
    height: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* PHOTO GALLERY */
.dynamic-photo-gallery {
    text-align: center;
}

.dynamic-photo-gallery a:hover img, .dynamic-photo-gallery a:focus img {
    transform: scale(102%);
}

.dynamic-photo {
    max-width: 100%;
    height: 300px;
    margin: 5px;
    border-radius: 8px;
    box-shadow: 0 3px 9px black;
    transition-duration: 0.2s;
}

/* CAROUSEL */
.carousel {
    margin: 0;
}

.fullscreen-carousel {
    margin: 0 !important;
}

.slick-list {
    padding: 0 0 10px 0 !important;
    margin: 0 auto !important;
}

.slick-prev {
    left: -35px !important;
}

.slick-arrow {
    display: none !important;
    background: none !important;
    box-shadow: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
}

    .slick-arrow:before {
        font-size: 30px !important;
    }

.fullscreen-slideshow-image {
    height: calc(100vh - 112px) !important;
    background-position: center;
    background-size: cover;
}

@media (min-width: 729px) {
    .carousel {
        margin: 0 30px;
    }

    .slick-arrow {
        display: block !important;
    }
}

/* ANIMATE ON SCROLL */
.animate-on-scroll {
    opacity: 0;
    filter: blur(5px);
    transition: all 1s;
}

.animate-on-scroll-left {
    transform: translateX(-100%);
}

.animate-on-scroll-right {
    transform: translateX(100%);
}

.animate-on-scroll-top {
    transform: translateY(-100%);
}

.animate-on-scroll-bottom {
    transform: translateY(100%);
}

@media(prefers-reduced-motion) {
    .animate-on-scroll {
        transition: none;
    }
}

.animate-on-scroll-show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* HOMEPAGE */
#home-arrow {
    pointer-events: all;
}

    #home-arrow a {
        position: absolute;
        top: calc(100vh - 70px);
        right: calc(50vw - 30px);
        padding-left: 48px;
        padding-top: 60px;
        z-index: 998;
    }

        #home-arrow a span {
            position: absolute;
            bottom: 37px;
            right: 9px;
            width: 30px;
            height: 30px;
            margin-left: -12px;
            border-left: 6px solid #fff;
            border-bottom: 6px solid #fff;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-animation: arrowAnim 1.5s infinite;
            animation: arrowAnim 1.5s infinite;
            box-sizing: border-box;
            border-image-source: linear-gradient(0, white, white);
            border-image-slice: 1;
            box-shadow: -1px 1px black;
            transition: all .2s;
        }

@-webkit-keyframes arrowAnim {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

@keyframes arrowAnim {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

#home-arrow a:hover span, #home-arrow a:focus span {
    border-image-source: var(--interact-gradient);
}

.website-styling #home-arrow a:hover span, .website-styling #home-arrow a:focus span {
    border-image-source: var(--link-gradient);
}

.homepage-quote {
    display: flex;
    align-items: center;
}

    .homepage-quote p {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .homepage-quote > div {
        text-align: center;
        width: 100%;
    }

        .homepage-quote > div:last-child {
            margin-top: 20px;
        }

.homepage-quote-photo {
    width: 300px;
    height: 200px;
    margin: 0 auto;
    border-radius: 12px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 3px 9px black;
}

.homepage-quote-left, .homepage-quote-right {
    flex-direction: column;
}

@media (min-width: 729px) {
    #home-arrow a {
        right: calc(50vw - 157px);
    }

    .fullscreen-slideshow-image {
        height: 100vh !important;
    }

    .homepage-quote-photo {
        width: 400px;
    }
}

@media (min-width: 1200px) {
    .homepage-quote {
        margin: 50px auto;
    }

        .homepage-quote > div {
            min-height: unset;
        }

            .homepage-quote > div:last-child {
                margin-top: unset;
            }

    .homepage-quote-left {
        flex-direction: row;
    }

    .homepage-quote-right {
        flex-direction: row-reverse;
    }
}

/* CUSTOM WEBSITE STYLING */
.website-styling {
    background-color: var(--background-color);
    color: var(--text-color);
}

    .website-styling a {
        background-image: var(--link-gradient);
        text-decoration: none;
        color: transparent;
        font-weight: bold;
        -webkit-background-clip: text;
        transition-duration: 0.2s;
    }

        .website-styling a:hover, .website-styling a:focus {
            color: var(--select-color);
        }

    .website-styling input {
        color: var(--text-color);
        background: var(--input-gradient-background), var(--border-gradient);
        background-clip: padding-box, border-box;
        background-origin: padding-box, border-box;
        color-scheme: var(--color-scheme);
    }

        .website-styling input[type="search"]::-webkit-search-cancel-button {
            background-color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

    .website-styling textarea {
        color: var(--text-color);
        background: var(--input-gradient-background), var(--border-gradient);
        background-clip: padding-box, border-box;
        background-origin: padding-box, border-box;
    }

    .website-styling select {
        color: var(--text-color);
        background: var(--container-background), var(--border-gradient);
        background-clip: padding-box, border-box;
        background-origin: padding-box, border-box;
    }

    .website-styling option {
        background: var(--background-color);
        color: var(--text-color);
    }

    .website-styling option:checked {
        background-color: var(--secondary-color);
    }

    .website-styling button {
        background-image: var(--button-gradient);
    }

        .website-styling button:disabled {
            background-image: linear-gradient(#a1a1a1, #646464);
        }

    .website-styling button:focus, .website-styling .button:focus, .website-styling input[type=submit]:focus {
        box-shadow: 0 0 0 0.2rem var(--text-color);
    }

    .website-styling .filter-attribute-button {
        background-image: linear-gradient(#a1a1a1, #646464) !important;
    }

    .website-styling .filter-attribute-button-on {
        background-image: var(--button-gradient) !important;
    }

    .website-styling .link-arrow-left:before {
        color: var(--left-link-arrow-color);
    }

    .website-styling .link-arrow-left:hover:before, .website-styling .link-arrow-left:focus:before {
        color: var(--select-color);
    }

    .website-styling .link-arrow-right:after {
        color: var(--right-link-arrow-color);
    }

    .website-styling .link-arrow-right:hover:after, .website-styling .link-arrow-right:focus:after {
        color: var(--select-color);
    }

    .website-styling tr:nth-child(odd) {
        background-color: var(--table-background-odd);
    }

    .website-styling tr:nth-child(even) {
        background-color: var(--table-background-even);
    }

    .website-styling .missing-notice-icon, .website-styling .list-notice-icon, .website-styling .success-notice-icon, .website-styling .error-notice-icon,
        .website-styling .icon-notice-icon {
        background: var(--link-gradient) !important;
    }

    .website-styling .loading-animation-container {
        background: var(--container-background), var(--border-gradient);
        background-clip: padding-box, border-box;
        background-origin: padding-box, border-box;
    }

    .website-styling .loading-animation span {
        background: var(--link-gradient);
    }

    .website-styling .custom-html-social-icon {
        background-color: var(--text-color);
    }

    .website-styling .attribute {
        background-image: var(--button-gradient) !important;
    }

    .website-styling .event-listing {
        color: var(--text-color);
        background-image: var(--container-background), var(--border-gradient) !important;
        background-origin: border-box;
        background-clip: content-box, border-box;
    }

    .website-styling .event-listing-title {
        color: var(--text-color);
    }

        .website-styling .event-listing:hover .event-listing-title, .website-styling .event-listing:focus .event-listing-title {
            color: var(--select-color) !important;
        }

    .website-styling .event-listing-date {
        color: var(--text-color);
    }

    .website-styling .filter-option-container {
        background: var(--input-gradient-background) !important;
    }

    .website-styling .listing-container {
        background-image: linear-gradient(0deg, #15161c, #444444), var(--border-gradient) !important;
        background-origin: border-box;
        background-clip: content-box, border-box;
    }

        .website-styling .listing-container:hover .listing-content, .website-styling .listing-container:focus .listing-content {
            color: var(--select-color) !important;
        }

    .website-styling .listing-gallery-buttons-container {
        background: var(--input-gradient-background) !important;
    }

    .website-styling .press-post-date, .website-styling .timeline-post-date {
        color: var(--bs-body-color) !important;
    }

    .website-styling .price-container {
        color: var(--text-color);
    }

    .website-styling .price-container-discounted-cost {
        background: var(--link-gradient) !important;
        background-clip: text !important;
        -webkit-background-clip: text !important;
    }

    .website-styling .accordion-button, .website-styling .accordion-panel, .website-styling .faq-entry-buttons button {
        background: var(--accordion-background) !important;
        color: var(--text-color);
    }

    .website-styling .listing-subproduct, .website-styling .listing-additional-information tr, .website-styling .listing-event-sponsors,
    .website-styling .faq-container, .website-styling .bookings-section-row {
        background: var(--input-gradient-background) !important;
    }

    .website-styling .listing-subproduct-icon {
        background-color: var(--text-color) !important;
    }

    .website-styling .accordion-button:hover {
        color: var(--select-color);
        transform: unset;
    }

    .website-styling .faq-entry-buttons button:hover {
        color: var(--select-color) !important;
    }

    .website-styling .accordion-arrow-button:after, .website-styling .faq-entry-buttons button:before {
        background-color: var(--text-color) !important;
    }

    .website-styling .faq-entry-buttons button:hover:before {
        background-color: var(--select-color) !important;
    }

    .website-styling .accordion-arrow-button:hover:after {
        background-image: linear-gradient(var(--select-color), var(--select-color));
    }

    .website-styling .faq-title {
        text-shadow: none !important;
    }

    .website-styling .social-icon {
        background-color: var(--text-color) !important;
    }