/*
    2021 (C) NIKOLOVDZN.COM
    compiled & unminified
*/


@charset "UTF-8";
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
:root {
    font-size: 18px;
    --fontSizeH3: 29px;
    --font: "Open Sans", sans-serif;
    --fontMono: "Cousine", monospace;
    --titleFont: "Bowlby One", cursive;
    --mdi: "Material Design Icons";
    --spacing: 20px;
    --miniSpacing: 8px;
    --containerWidth: 1360px;
    --sidebarWidth: 385px;
    --paddingPanel: 22px;
    --paddingH3: 35px 40px 35px;
    --paddingInner: 34px 40px;
    --inputHeight: 55px;
    --br: 5px;
    --transition: color 0.15s, background 0.15s, box-shadow 0.15s, border 0.15s;
    --panelShadow: 0 6px 11px -3px rgba(0, 0, 0, 0.09);
    --p: #444;
    --panelSidebar: rgba(#bccccc, 0.9);
    --panelInner: #e6f1f2;
    --panelHeading: #e6f1f2;
    --primary-100: #114d5b;
    --secondary-100: #d081f5;
    --orange: #114d5b;
    --green: #7bb936;
    --ipImg: url("https://cdn.tebex.io/store/1057059/templates/283424/assets/47aab43e7cdaca51c90ac24d78296f1076543ddc.png?updated=1ad196d082fe2e709aac494f32e0ca52aea08506b64efed351527c4926c32777"); /*TODO*/
    --logo: url("https://cdn.tebex.io/store/1057059/templates/283424/assets/02a371f6d597e4d20e94b6603e17d927048c3e12.gif?updated=0dcd0a4b03f0138df7477ca6e00b44a69184695177d6ecb980e83d3bbfc0e60d"); /*TODO*/
    --paypalImg: url("https://i.imgur.com/wmBPbmp.png");
    --paymentWall: url("https://i.imgur.com/b6r3a8V.png");
    --shadowHeader: 0px 1px 4px 4px rgba(0, 0, 0, 0.08);
}
@media (max-width: 900px) {
    :root {
        font-size: 16px;
        --fontSizeH3: 26px;
        --paddingPanel: 15px;
        --paddingH3: 30px 40px 30px;
        --spacing: 15px;
        --paddingInner: 20px 25px;
    }
}
@media (max-width: 650px) {
    :root {
        font-size: 15px;
        --fontSizeH3: 22px;
        --paddingPanel: 10px;
        --paddingH3: 30px 25px;
        --spacing: 8px;
        --paddingInner: 10px 14px;
    }
}
:root {
    --btnDefault: #a1d0db;
    --btnDefaultText: #ffffff;
    --btnDefaultHover: #f1f8fd;
    --btnInfo: #114d5b;
    --btnInfoText: white;
    --btnInfoHover: #0d3f4a;
    --btnSuccess: #114d5b;
    --btnSuccessText: white;
    --btnSuccessHover: #0d3f4a;
    --btnWarning: #3ab05a;
    --btnWarningText: #ffffff;
    --btnWarningHover: #2f944b;
    --btnDanger: #d63f3f;
    --btnDangerText: white;
    --btnDangerHover: #b73333;
}
.btn {
    cursor: pointer;
    display: inline-block;
    padding: 1em 2.95em 0.95em;
    font-weight: 400;
    color: #fff;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 17px;
    font-family: var(--titleFont);
    letter-spacing: 0.025rem;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.btn.btn-default {
    background: var(--btnDefault);
    color: var(--btnDefaultText);
}
.btn.btn-default:hover {
    background: var(--btnDefaultHover);
}
.btn.btn-default.btn-loading:after {
    border-color: transparent transparent var(--btnDefaultText) var(--btnDefaultText);
}
.btn.btn-info {
    background: var(--btnInfo);
    color: #fff;
}
.btn.btn-info:hover {
    background: var(--btnInfoHover);
}
.btn.btn-info.btn-loading:after {
    border-color: transparent transparent var(--btnInfoText) var(--btnInfoText);
}
.btn.btn-success {
    background: var(--btnSuccess);
    color: var(--btnSuccessText);
}
.btn.btn-success:hover {
    background: var(--btnSuccessHover);
}
.btn.btn-success.btn-loading:after {
    border-color: transparent transparent var(--btnSuccessText) var(--btnSuccessText);
}
.btn.btn-warning {
    background: var(--btnWarning);
    color: var(--btnWarningText);
}
.btn.btn-warning:hover {
    background: var(--btnWarningHover);
}
.btn.btn-warning.btn-loading:after {
    border-color: transparent transparent var(--btnWarningText) var(--btnWarningText);
}
.btn.btn-danger {
    background: var(--btnDanger);
    color: var(--btnDangerText);
}
.btn.btn-danger:hover {
    background: var(--btnDangerHover);
}
.btn.btn-danger.btn-loading:after {
    border-color: transparent transparent var(--btnDangerText) var(--btnDangerText);
}
.btn.btn-air {
    background: 0 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}
.btn .mdi:last-child:not(:first-child) {
    margin-left: 2px;
    margin-right: -5px;
}
.btn > .mdi,
.btn > span {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.font {
    font-family: var(--font);
}
.font-title {
    font-family: var(--fontTitle);
}
.font-mono {
    font-family: var(--fontMono);
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.box,
.br,
.btn,
.dropdown-menu,
.input,
.panel {
    border-radius: var(--br);
}
.br-0 {
    border-radius: 0;
}
.br-max {
    border-radius: 9999px;
}
.d-block {
    display: block;
}
.d-inlblock {
    display: inline-block;
}
.d-table {
    display: table;
}
.d-grid {
    display: -ms-grid;
    display: grid;
}
.d-flex,
.flex,
.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.jc-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.jc-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.ai-center,
.flex-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.ai-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.container {
    width: var(--containerWidth);
    max-width: calc(100% - calc(2 * var(--spacing)));
    margin: 0 auto;
}
.dropdown,
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.absolute-center-x {
    left: 0;
    right: 0;
}
.absolute-center-y {
    top: 0;
    bottom: 0;
}
.overflow-hidden {
    overflow: hidden !important;
}
.flip-x {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}
.cursor-d {
    cursor: default;
}
.cursor-p {
    cursor: pointer;
}
.mt {
    margin-top: var(--spacing);
}
.mt-mini {
    margin-top: var(--miniSpacing);
}
.mt-auto {
    margin-top: auto;
}
.mt-0 {
    margin-top: 0;
}
.mr {
    margin-right: var(--spacing);
}
.mr-mini {
    margin-right: var(--miniSpacing);
}
.mr-auto {
    margin-right: auto;
}
.mr-0 {
    margin-right: 0;
}
.mb {
    margin-bottom: var(--spacing);
}
.mb-mini {
    margin-bottom: var(--miniSpacing);
}
.mb-auto {
    margin-bottom: auto;
}
.mb-0 {
    margin-bottom: 0;
}
.ml {
    margin-left: var(--spacing);
}
.ml-mini {
    margin-left: var(--miniSpacing);
}
.ml-auto {
    margin-left: auto;
}
.ml-0 {
    margin-left: 0;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}
@media (max-width: 1366px) {
    .tippy-box {
        display: none;
    }
}
.tippy-box[data-animation="shift-toward-subtle"][data-state="hidden"] {
    opacity: 0;
}
.tippy-box[data-animation="shift-toward-subtle"][data-state="hidden"][data-placement^="top"] {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.tippy-box[data-animation="shift-toward-subtle"][data-state="hidden"][data-placement^="bottom"] {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
}
.tippy-box[data-animation="shift-toward-subtle"][data-state="hidden"][data-placement^="left"] {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
}
.tippy-box[data-animation="shift-toward-subtle"][data-state="hidden"][data-placement^="right"] {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}
.tippy-box {
    border: none;
    color: var(--color);
    background-color: var(--bg);
    -webkit-box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
    box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
}
.tippy-box[data-theme~="dark"] {
    --bg: rgba(0, 0, 0, 0.9);
    --color: #fff;
}
.tippy-box > .tippy-backdrop {
    background-color: var(--bg);
}
.tippy-box > .tippy-svg-arrow {
    fill: var(--bg);
}
.tippy-box[data-placement^="top"] > .tippy-arrow:before {
    border-top-color: var(--bg);
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
    border-bottom-color: var(--bg);
}
.tippy-box[data-placement^="left"] > .tippy-arrow:before {
    border-left-color: var(--bg);
}
.tippy-box[data-placement^="right"] > .tippy-arrow:before {
    border-right-color: var(--bg);
}
[data-simplebar] {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.simplebar-track {
    --gap: 5px;
    --thick: 15px;
    --br: 9999px;
    --color: #2180d9;
}
.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}
.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0;
}
.simplebar-offset {
    direction: inherit !important;
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}
.simplebar-content-wrapper {
    direction: inherit;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    background-color: #e6f1f2;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.simplebar-content:after,
.simplebar-content:before {
    content: " ";
    display: table;
}
.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
}
.simplebar-height-auto-observer-wrapper {
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}
.simplebar-height-auto-observer {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}
.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}
[data-simplebar].simplebar-dragging .simplebar-content {
    pointer-events: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all;
}
.simplebar-scrollbar {
    position: absolute;
    left: 0;
    right: 0;
    min-height: 10px;
}
.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    background: #114d5bFF;
    border-radius: var(--br);
    left: var(--gap);
    right: var(--gap);
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}
.simplebar-scrollbar.simplebar-visible:before {
    opacity: 0.5;
    -webkit-transition: opacity 0s linear;
    -o-transition: opacity 0s linear;
    transition: opacity 0s linear;
}
.simplebar-track.simplebar-vertical {
    top: 0;
    width: var(--thick);
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: var(--gap);
    bottom: var(--gap);
}
.simplebar-track.simplebar-horizontal {
    left: 0;
    height: var(--thick);
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
    height: 100%;
    left: var(--gap);
    right: var(--gap);
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    right: auto;
    left: 0;
    top: var(--gap);
    height: var(--size);
    min-height: 0;
    min-width: var(--thick);
    width: auto;
}
[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0;
}
.hs-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 500px;
    width: 500px;
    overflow-y: hidden;
    overflow-x: scroll;
}
.simplebar-hide-scrollbar {
    position: fixed;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ndzn-js--dd {
    position: relative;
}
.ndzn-js--ddMenu {
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    position: absolute;
    z-index: 100;
    top: calc(100% + 2px);
}
.dropdown-menu.ndzn-js--ddMenu {
    display: block;
}
.ndzn-js--dd:not(.open) > .ndzn-js--ddMenu:not(.no-anim) {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scaleY(0.8);
    -ms-transform: scaleY(0.8);
    transform: scaleY(0.8);
}
.ndzn-js--dd.open > .ndzn-js--ddMenu:not(.no-anim) {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}
.modal {
    --width: calc(100% - var(--spacing));
    --maxWidth: 762px;
    --maxHeight: 100vh;
    --headerHeight: 95px;
    --headerMargin: 10px;
    --paddingHeader: 3px 70px 0 35px;
    --fontMdiClose: 34px;
    --fontH1: 26px;
    --paddingBody: 20px 30px;
    --fontSizeBody: 18px;
    --footerHeight: 114px;
    --fontSizePrice: 22px;
    --paddingFooter: 35px;
}
@media (max-width: 500px) {
    .modal {
        --paddingHeader: 0 70px 0 25px;
        --fontMdiClose: 28px;
        --fontH1: 20px;
        --paddingBody: 12px;
        --fontSizeBody: 15px;
        --fontSizePrice: 18px;
        --paddingFooter: 20px 15px 15px;
    }
}
.modal {
    display: none;
}
.modal.is-open {
    display: block;
}
.modal-dialog {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000f2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.modal-dialog:empty:after {
    content: "";
    opacity: 0.12;
    display: block;
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='display:block' preserveAspectRatio='xMidYMid'%3E%3Ccircle cx='50' cy='50' r='32' stroke-width='8' stroke='%23fff' stroke-dasharray='50.26548245743669 50.26548245743669' fill='none' stroke-linecap='round'%3E%3C/circle%3E%3C/svg%3E");
    -webkit-animation: modalSpinner 1s infinite linear;
    animation: modalSpinner 1s infinite linear;
}
@-webkit-keyframes modalSpinner {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes modalSpinner {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.modal-box {
    width: var(--width);
    max-width: var(--maxWidth);
    max-height: var(--maxHeight);
    -webkit-box-shadow: var(--panelShadow);
    box-shadow: var(--panelShadow);
    border-radius: var(--br);
    position: relative;
}
.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #114d5b;
    height: var(--headerHeight);
    padding: var(--paddingHeader);
    border-radius: var(--br);
    margin-bottom: var(--headerMargin);
}
.modal-header .mdi-close-thick {
    font-size: var(--fontMdiClose);
    right: 30px;
}
.footer-price,
.modal-header h1 {
    font-family: var(--titleFont);
}
.modal-header h1 {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.25;
    font-size: var(--fontH1);
    color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.modal-header .mdi-close-thick {
    background: 0 0;
    border: 0;
    color: #fff;
    margin-right: -15px;
    line-height: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
}
.modal-body {
    line-height: 32px;
    overflow: auto;
    background-color: #bccccc;
    height: 500px;
    max-height: calc(var(--maxHeight) - var(--headerHeight) - var(--headerMargin) - var(--footerHeight));
    color: #444;
    padding: var(--paddingBody);
    font-size: var(--fontSizeBody);
    border-radius: var(--br);
    font-weight: 700;
}
.modal-footer {
    -webkit-box-shadow: 0 -6px #bccccc;
    box-shadow: 0 -6px #bccccc;
    border-radius: 0 0 var(--br) var(--br);
}
.modal-footer {
    height: var(--footerHeight);
    background: #a4d0db;
    padding: var(--paddingFooter);
}
.modal-footer.br {
    border-radius: var(--br);
    margin-top: 10px;
}
.modal-footer .footer-price {
    color: #114d5b;
    font-size: var(--fontSizePrice);
}
.modal-footer .footer-buttons {
    gap: 8px;
}
.modal-footer .btn {
    font-size: 17px;
    text-transform: uppercase;
    -webkit-box-shadow: 0 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px rgba(0, 0, 0, 0.1);
    padding: 1em 1.3em 0.9em;
    line-height: 1;
    letter-spacing: -0.02em;
}
.modal-footer .btn .mdi-menu-down {
    height: 0;
    line-height: 0;
    width: 0.7em;
    font-size: 1.5em;
}
#gift-form {
    gap: 8px;
}
#gift-form.hidden {
    display: none;
}
#gift-form:not(.hidden) ~ .modal-footer {
    display: none;
}
#gift-form .btn > .mdi-gift {
    margin-right: 8px;
}
#gift-form .btn.mdi-close {
    padding: 0 0.5em;
}
#gift-form .btn.mdi-close:before {
    font-size: 30px;
    height: 0;
    line-height: 0;
}
#gift-form .input {
    height: auto;
    font-size: 0.9em;
    padding: 0 1em;
    background: #bfdcf7;
    border: 2px solid rgba(0, 0, 0, 0.06);
}
#gift-form .input::-webkit-input-placeholder {
    color: #9cb8d2;
}
#gift-form .input::-moz-placeholder {
    color: #9cb8d2;
}
#gift-form .input:-ms-input-placeholder {
    color: #9cb8d2;
}
#gift-form .input::-ms-input-placeholder {
    color: #9cb8d2;
}
#gift-form .input::placeholder {
    color: #9cb8d2;
}
.modal .modal-box,
.modal .modal-dialog {
    will-change: transform;
}
@media (max-width: 650px) {
    .modal {
        --width: 100%;
        --maxWidth: none;
        --maxHeight: 100vh;
    }
    .modal-body,
    .modal-footer,
    .modal-header {
        border-radius: 0;
        margin: 0;
    }
}
@media (max-width: 600px) {
    .modal {
        --headerHeight: 80px;
    }
    .modal-box {
        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;
    }
    .modal-header {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }
    .modal-body {
        height: auto;
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        text-align: center;
        line-height: 28px;
    }
    .modal-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        height: unset;
    }
    .modal-footer.br {
        border-radius: 0;
    }
    .modal-footer .footer-buttons {
        margin: 20px auto 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
    .modal-footer .footer-buttons .btn,
    .modal-footer .footer-buttons > * {
        width: 100%;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .modal-footer .footer-buttons .btn {
        font-size: 1em;
        padding: 1em 1.3em 1em;
    }
    #gift-form {
        --paddingFooter: 30px 35px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #gift-form .input {
        font-size: 1.2em;
        text-align: center;
    }
}
.modal.is-side {
    --maxWidth: 360px;
    --maxHeight: none;
}
.modal.is-side .modal-footer,
.modal.is-side .modal-header {
    border-radius: 0;
}
.modal.is-side .modal-box {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@-webkit-keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.modal[aria-hidden="false"] .modal-dialog {
    -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden="true"] .modal-dialog {
    -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@-webkit-keyframes mmslideUpIn {
    from {
        -webkit-transform: translateY(var(--spacing));
        transform: translateY(var(--spacing));
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes mmslideUpIn {
    from {
        -webkit-transform: translateY(var(--spacing));
        transform: translateY(var(--spacing));
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes mmslideUpOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(calc(-1 * var(--spacing)));
        transform: translateY(calc(-1 * var(--spacing)));
    }
}
@keyframes mmslideUpOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(calc(-1 * var(--spacing)));
        transform: translateY(calc(-1 * var(--spacing)));
    }
}
.modal.is-slide-up[aria-hidden="false"] .modal-box {
    -webkit-animation: mmfadeIn 0.2s, mmslideUpIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeIn 0.2s, mmslideUpIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal.is-slide-up[aria-hidden="true"] .modal-box {
    -webkit-animation: mmfadeOut 0.2s, mmslideUpOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeOut 0.2s, mmslideUpOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@-webkit-keyframes mmslideLeftIn {
    from {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes mmslideLeftIn {
    from {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes mmslideLeftOut {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
}
@keyframes mmslideLeftOut {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-25px);
        transform: translateX(-25px);
    }
}
.modal.is-slide-left[aria-hidden="false"] .modal-box {
    -webkit-animation: mmfadeIn 0.2s, mmslideLeftIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeIn 0.2s, mmslideLeftIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal.is-slide-left[aria-hidden="true"] .modal-box {
    -webkit-animation: mmfadeOut 0.2s, mmslideLeftOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeOut 0.2s, mmslideLeftOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
#copy-ip-modal .modal-body.modal-box {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: block;
    padding: 38px 0 35px;
    width: 400px;
    max-width: calc(100% - calc(2 * var(--spacing)));
    height: auto;
    text-align: center;
    border-radius: var(--br);
    background: var(--orange);
    color: #fff;
}
#copy-ip-modal h1 {
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 28px;
    line-height: 1;
    text-shadow: 0 3px rgba(0, 0, 0, 0.125);
    margin: 0;
    font-family: var(--titleFont);
}
#copy-ip-modal p {
    color: #e2ffc1;
    font-weight: 700;
    font-size: 17px;
    margin: 5px 0 25px;
    text-shadow: 0 2px rgba(0, 0, 0, 0.125);
}
#copy-ip-modal .btn {
    font-size: 17px;
    padding: 0.7em 2.4em;
    background: rgba(255, 255, 255, 0.15);
}
#copy-ip-modal .btn:hover {
    background: rgba(255, 255, 255, 0.2);
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
button,
input,
option,
select,
textarea {
    outline: 0 !important;
}
body,
button,
input,
option,
select,
textarea {
    font-family: var(--font);
}
body {
    color: var(--p);
    background: #000;
    position: relative;
}
a {
    text-decoration: none;
    color: #114d5b;
}
a:focus,
a:hover {
    color: #85c63d;
}
h1,
h2,
h3,
h4 {
    margin-bottom: 1.75rem;
}
@media (max-width: 900px) {
    h1,
    h2,
    h3,
    h4 {
        margin-bottom: 1rem;
    }
}
h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
h4 {
    font-size: 1.2rem;
}
p {
    display: block;
    font-size: 1rem;
    margin-bottom: 1.5em;
    line-height: 1.8em;
    font-weight: 600;
}
p:last-child {
    margin-bottom: 0;
}
.panel {
    padding: 30px 40px;
    background: var(--panel);
    -webkit-box-shadow: var(--panelShadow);
    box-shadow: var(--panelShadow);
    margin-bottom: var(--spacing);
}
.panel:last-child {
    margin-bottom: 0;
}
main .main-sidebar {
    width: var(--sidebarWidth);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 var(--sidebarWidth);
    flex: 0 0 var(--sidebarWidth);
}
.main-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
main .page-main {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}
.menu {
    --padding: 20px;
    --top: 8px;
    margin-top: var(--top);
    border-radius: var(--br);
    padding: var(--padding);
    background: #ffffff;
    border-top: 3px solid #ffffff;
    -webkit-box-shadow: 0 7px 12px -4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 7px 12px -4px rgba(0, 0, 0, 0.2);
}
.menu:after {
    content: "";
    width: 0;
    position: absolute;
    bottom: 100%;
    left: 10%;
    border: 9px solid transparent;
    border-bottom-color: #ffffff;
}
@media (max-width: 1200px) {
    :root {
        --sidebarWidth: 330px;
    }
}
#ndzn-app {
    position: relative;
    margin-bottom: auto;
}
#ndzn-main-page {
    position: relative;
    z-index: 1;
}
html {
    height: 100%;
}
body {
    background: #e6f1f2 url(https://cdn.tebex.io/store/1057059/templates/283424/assets/62f7c6bd782ccc28a0ffe3a09a542fd6159d2077.jpeg?updated=0ea5e24076e2be2aa96ec625e2bf8358e1bdcf5a3848e61a10101c4dc686158f) no-repeat center/cover;
    background-attachment: fixed;
    min-height: 100%;
}
.panel {
    background-color: rgb(173 214 225 / 86%);
    padding: var(--paddingPanel);
    backdrop-filter: blur(10px);
}
h3,
h4 {
    font-family: var(--titleFont);
}
h3 {
    background-color: var(--panelHeading);
    color: #114d5b;
    font-family: var(--titleFont);
    font-size: var(--fontSizeH3);
    padding: var(--paddingH3);
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 1;
    border-radius: var(--br);
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}
h4 {
    color: #114d5b;
    font-size: 26px;
    text-transform: capitalize;
}
.panel-inner {
    padding: var(--paddingInner);
    background: #e6f1f2;
    border-radius: var(--br);
}
.btn-options-discord {
    background-color: #124ad8;
    color: #fff;
    padding: 0 16px;
    font-size: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 212px;
    flex: 0 0 212px;
}
.btn-options-discord:focus,
.btn-options-discord:hover {
    background-color: #1145ca;
    color: #fff;
}
.panel-options .form-group:not(:first-child) {
    margin-top: 10px;
}
.panel-options .buttons {
    margin-top: 34px;
}
.panel-options .buttons > * {
    margin: 5px;
}
.panel-options .back,
.panel-options .continue {
    width: 220px;
}
.panel-options .back > .btn,
.panel-options .continue > .btn {
    width: 100%;
    text-align: center;
    height: 50px;
    line-height: 52px;
    padding: 0 1rem;
    color: #fff;
}
.btn-options-discord,
.input {
    height: var(--inputHeight);
    line-height: var(--inputHeight);
}
.input {
    border: 2px solid #1b1b1b;
    border-radius: var(--br);
    padding: 0 16px;
    width: 100%;
    font-size: 16px;
    color: #000000;
    font-weight: 700;
}
.input::-webkit-input-placeholder {
    color: #b2becb;
}
.input::-moz-placeholder {
    color: #b2becb;
}
.input:-ms-input-placeholder {
    color: #b2becb;
}
.input::-ms-input-placeholder {
    color: #b2becb;
}
.input::placeholder {
    color: #b2becb;
}
.input-discord {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 205px;
    flex: 0 0 205px;
}
.input-discord-form {
    margin-left: 4px;
}
.input-group-addon {
    background-color: #e2ecf5;
    display: inline-block;
    color: #b8c5d1;
    font-weight: 700;
    border-radius: 0 var(--br) var(--br) 0;
    padding: 0 17px;
    border: 2px solid #dae6f2;
    border-left-width: 0;
    height: 55px;
    line-height: 51px;
}
.input-form-addon {
    border-radius: var(--br) 0 0 var(--br);
}
.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-group label {
    font-weight: 700;
    color: #10538f;
}
input[type="checkbox"] {
    width: 30px !important;
    height: 30px !important;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: none;
    font-size: 1.6em;
    text-align: center;
    line-height: 1em;
    background: 0 0;
    border-radius: none;
    cursor: pointer;
}
input[type="checkbox"]:after {
    font-family: var(--mdi);
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
input[type="checkbox"]:not(:checked):after {
    content: "󰄮";
    color: #fff;
}
input[type="checkbox"]:checked:after {
    content: "󰄲";
    color: var(--orange);
}
.menu.is-currency {
    width: 140px;
    padding: 10px;
}
.menu.is-currency:after {
    left: 31px;
}
.menu.is-currency .currency-grid,
.menu.is-currency a {
    border-radius: 4px;
}
.menu.is-currency .currency-grid {
    background-color: #dbe5e7;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    left: -34px;
}
.menu.is-currency a {
    color: var(--btnWarningText);
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 36px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
    border: 2px solid rgba(0, 0, 0, 0.05);
}
.menu.is-currency a:focus,
.menu.is-currency a:hover {
    background-color: rgba(0, 0, 0, 0.04);
}
.menu.is-currency a.active {
    background: #114d5b;
    color: #ffffff;
}
@media (max-width: 950px) {
    #ndzn-main-page main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #ndzn-app:not(.is-category) main .main-sidebar {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    main .main-sidebar {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 100%;
    }
    main .main-content {
        margin-bottom: var(--spacing);
    }
}
@media (max-width: 650px) {
    h3 {
        text-align: center;
    }
    .input-group-addon {
        padding: 0 8px;
    }
    .input-discord {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .input-discord input {
        border-radius: 0 0 var(--br) var(--br);
        margin: 0;
    }
    .panel-options .btn-options-discord {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 100%;
        text-align: center;
        border-radius: var(--br) var(--br) 0 0;
    }
    .panel-options .buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 20px;
    }
    .panel-options .buttons > * {
        margin: 3px;
    }
    .panel-options .back,
    .panel-options .continue {
        width: 100%;
    }
    .panel-options input {
        text-align: center;
    }
}
#login-form .btn {
    padding: 2px 30px 0;
    font-size: 0.9rem;
    margin-left: 0.3em;
    height: var(--inputHeight);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#login-form .btn .mdi {
    font-size: 1.5em;
    margin-left: 0.2em;
    margin-right: -0.175em;
}
@media (max-width: 500px) {
    #login-form form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #login-form .btn {
        margin: 10px 0 0;
    }
}
#ndzn-header {
    position: relative;
    margin-bottom: 10px;
}
#ndzn-header .header-splash {
    margin-top: 35px;
}
#ndzn-header .splash-box {
    color: #fff;
}
#ndzn-header .splash-box {
    height: 80px;
    font-family: var(--titleFont);
    border-radius: var(--br);
    position: relative;
    cursor: pointer;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
#ndzn-header .splash-box .mdi-discord {
    font-size: 40px;
    margin-right: 13px;
    position: relative;
    top: 3px;
}
#ndzn-header .splash-box .ip-img {
    margin-left: 21px;
}
#ndzn-header .splash-box .big {
    margin-top: 4px;
    line-height: 1;
    margin-bottom: -4px;
}
#ndzn-header .splash-discord {
    background-color: #1b4fd3;
    padding: 0 40px 0 22px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}
#ndzn-header .splash-discord:focus,
#ndzn-header .splash-discord:hover {
    background-color: #1145ca;
    color: #fff;
}
#ndzn-header .splash-ip {
    background-color: #f1c328;
    padding: 0 22px 0 40px;
}
#ndzn-header .splash-ip .ip-img {
    background: var(--ipImg) no-repeat center/auto 100%;
    height: 45px;
    width: 57px;
}
#ndzn-header .splash-ip .splash-text {
    text-align: right;
}
#ndzn-header .splash-ip:focus,
#ndzn-header .splash-ip:hover {
    background-color: #c89f1d;
}
#ndzn-header .header-user .btn-warning,
#ndzn-header .splash-box {
    -webkit-box-shadow: 0 1px 0 4px rgba(0, 0, 0, 0.075);
    box-shadow: 0 1px 0 4px rgba(0, 0, 0, 0.075);
}
#ndzn-header .splash-text > span {
    display: block;
}
#ndzn-header .splash-text .sml {
    font-size: 12px;
}
#ndzn-header .splash-text .big {
    font-size: 21px;
}
#ndzn-header .ndzn-cart,
#ndzn-header .splash-ip {
    margin-left: auto;
}
#ndzn-header .discord-counter,
#ndzn-header .server-counter {
    background-color: #fff;
    padding: 0 15px;
    border-radius: var(--br);
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    display: inline-block;
    font-weight: 900;
    text-shadow: none;
    font-family: var(--font);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -15px;
}
#ndzn-header .discord-counter {
    color: #1b4fd3;
    left: -15px;
}
#ndzn-header .server-counter {
    color: #f1c328;
    right: -15px;
}
#ndzn-header .header-user {
    margin-top: 98px;
}
#ndzn-header .header-user .fa-bars {
    height: 30px;
}
#ndzn-header .header-user .user-big {
    font-family: var(--titleFont);
    margin-top: 3px;
}
#ndzn-header .header-user .btn-left {
    padding: 0 25px;
}
#ndzn-header .header-user .btn-left .user-big {
    margin-left: 16px;
    font-size: 19px;
}
#ndzn-header .header-user .btn-warning {
    border: none;
    height: 62px;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: 0 1px 4px 4px rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 4px 4px rgba(0, 0, 0, 0.08);
}
#ndzn-header .header-user .cart-basket {
    text-align: center;
}
#ndzn-header .header-user .cart-basket > * {
    display: block;
}
#ndzn-header .header-user .cart-basket > span {
    font-family: var(--font);
    text-shadow: none;
    font-weight: 900;
    color: #ffffff;
    font-size: 14px;
    margin-top: 4px;
}
#ndzn-header .header-user .cart-basket .user-big {
    font-size: 16px;
}
#ndzn-header .header-user .cart-toggle {
    text-align: center;
    padding: 0 108px 0 32px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#ndzn-header .header-user .cart-toggle.guest {
    opacity: 0.6;
}
#ndzn-header .header-user .cart-toggle.guest:hover {
    opacity: 0.8;
}
#ndzn-header .header-user .player-model {
    background: url(https://mc-heads.net/body/7f9d8058b101497f8f4ec0f40a098803) no-repeat top center/100% auto;
    width: 67px;
    height: 95px;
    top: -33px;
    right: 12px;
    pointer-events: none;
    transform: scaleX(-1);
}
#ndzn-header .header-user .cart-dropdown {
    margin-top: 5px;
    left: auto;
    right: 0;
}
#ndzn-header .header-user .cart-dropdown:after {
    left: unset;
    right: 40px;
    border-bottom-color: #fff;
}
#ndzn-header .header-user .cart-dropdown .btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
}
#ndzn-header .header-logo {
    top: -30px;
    left: 0;
    right: 0;
    z-index: -1;
}
#ndzn-header .header-logo .logo {
    height: 275px; /*TODO*/
    width: 668px; /*TODO*/
    margin: 0 auto;
    background: var(--logo) no-repeat center/auto 100%;
}
.ndzn-cart .menu:not(.is-currency) {
    background: #e6f1f2;
    border-top: none;
    width: 320px;
    padding: 0;
}
.ndzn-cart .player-avatar {
    height: 27px;
}
.ndzn-cart .user-control {
    padding: 16px 22px;
}
.ndzn-cart .user-control .btn {
    font-size: 12px;
    text-transform: uppercase;
    font-family: var(--titleFont);
    height: 34px !important;
    line-height: 34px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 4px;
}
.ndzn-cart .cart-checkout {
    padding: 18px 22px 16px 22px;
}
.ndzn-cart .btn-logout {
    margin-left: auto;
    padding: 0 22px;
}
.ndzn-cart .player-avatar {
    margin-right: 10px;
}
.ndzn-cart .currency-dd > .btn {
    padding: 0 12px 0 15px;
}
.ndzn-cart .currency-dd .mdi-menu-down {
    font-size: 15px;
    margin-left: 3px;
}
.ndzn-cart .cart-checkout,
.ndzn-cart .item {
    border-top: 1px solid #a3d0db;
}
.ndzn-cart .cart-total,
.ndzn-cart .item-name,
.ndzn-cart .item-price,
.ndzn-cart .user-control .btn {
    font-weight: 800;
}
.ndzn-cart .cart-total,
.ndzn-cart .item-price {
    color: #444;
}
.ndzn-cart .cart-total {
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.ndzn-cart .btn-checkout {
    height: 59px;
    line-height: 59px;
    padding: 0 1em;
    font-family: var(--titleFont);
    text-transform: uppercase;
    width: 100%;
    border-bottom: 3px solid #edeff0;
    font-size: 19px;
}
.ndzn-cart .item {
    padding: 22px;
}
.ndzn-cart .item-name {
    font-size: 18px;
    margin-top: 0;
}
.ndzn-cart .item-info {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.ndzn-cart .item-remove {
    margin-left: auto;
}
.ndzn-cart .mdi-trash-can {
    color: var(--btnDanger);
    font-size: 24px;
}
.ndzn-cart .item-price {
    font-size: 14px;
    margin-top: 7px;
    margin-bottom: 0;
}
.cart-empty {
    padding: 35px 30px 25px;
}
.cart-empty h4 {
    font-size: 22px;
    margin: 0;
}
.cart-empty .btn,
.cart-empty small {
    margin-top: 22px;
}
.cart-empty small {
    line-height: 24px;
    font-size: 14px;
    text-align: center;
    color: #444;
    font-weight: 800;
}
.cart-empty .btn {
    text-transform: uppercase;
    letter-spacing: 0;
    border-bottom: 3px solid #86b7c3;
}
.cart-empty .btn:hover {
    background-color: #86b7c3
}
@media (max-width: 1050px) {
    #ndzn-header .header-logo {
        top: 78px;
    }
    #ndzn-header .header-logo .logo {
        height: 220px;
        width: 350px;
    }
    #ndzn-header .header-splash {
        margin: 0;
    }
    #ndzn-header .header-splash .container {
        max-width: unset;
        width: unset;
    }
    #ndzn-header .splash-box {
        border-radius: 0;
        width: 50%;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-bottom: 4px solid #458ece;
    }
    #ndzn-header .splash-main {
        width: 100%;
    }
    #ndzn-header .splash-ip {
        padding-right: 15px;
    }
    #ndzn-header .splash-text {
        margin: 0 auto;
        text-align: center !important;
    }
    #ndzn-header .splash-text .big {
        font-size: 17px;
        margin-top: 9px;
    }
    #ndzn-header .discord-counter,
    #ndzn-header .server-counter {
        top: 10px;
        height: 20px;
        line-height: 20px;
        padding: 0 10px;
        font-size: 11px;
        font-weight: 700;
        background-color: rgba(255, 255, 255, 0.94);
        z-index: 10;
        border-radius: 4px;
    }
    #ndzn-header .discord-counter {
        left: 48px;
    }
    #ndzn-header .server-counter {
        right: 56px;
    }
}
@media (max-width: 850px) {
    #ndzn-header .header-user {
        margin-top: 36px;
    }
    #ndzn-header .header-user .fa-bars {
        height: 25px;
    }
    #ndzn-header .header-user .btn-left .user-big {
        font-size: 18px;
    }
    #ndzn-header .header-user .player-model {
        width: 45px;
        height: 66px;
        top: -4px;
    }
    #ndzn-header .header-user .cart-toggle {
        padding-right: 88px;
    }
    #ndzn-header .header-logo .logo {
        height: 122px;
        width: 196px;
    }
    #ndzn-header .splash-box {
        height: 64px;
        top: 1px;
    }
    #ndzn-header .splash-box .mdi-discord {
        font-size: 34px;
    }
    #ndzn-header .splash-text {
        margin-top: -4px;
    }
    #ndzn-header .splash-text .sml {
        font-family: var(--font);
        font-weight: 800;
        font-size: 9px;
        text-shadow: none;
    }
    #ndzn-header .splash-text .big {
        font-size: 15px;
        margin-top: 7px;
    }
    #ndzn-header .discord-counter,
    #ndzn-header .server-counter {
        top: 7px;
    }
    #ndzn-header .discord-counter {
        left: 35px;
    }
    #ndzn-header .server-counter {
        right: 50px;
    }
    #ndzn-header .splash-discord {
        padding: 0 0 0 12px;
    }
    #ndzn-header .splash-discord .sml {
        color: #a5bbf2;
    }
    #ndzn-header .splash-ip {
        padding: 0 12px 0 0;
    }
    #ndzn-header .splash-ip .sml {
        color: #daffb1;
    }
    #ndzn-header .splash-ip .ip-img {
        height: 38px;
        width: 48px;
    }
}
@media (max-width: 700px) {
    #ndzn-header .header-logo {
        display: none;
    }
    #ndzn-header .header-user {
        margin-top: 10px;
    }
    #ndzn-header .splash-box {
        width: 100%;
    }
    #ndzn-header .splash-box .mdi-discord {
        margin-right: 0;
        top: 0;
    }
    #ndzn-header .splash-discord {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
        flex: 0 0 140px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    #ndzn-header .splash-discord .splash-text {
        display: none;
    }
    #ndzn-header .splash-discord .splash-main {
        width: unset;
    }
    #ndzn-header .discord-counter {
        position: unset;
        background: 0 0;
        color: #fff;
        -webkit-box-shadow: none;
        box-shadow: none;
        font-size: 20px;
        font-family: var(--titleFont);
        font-weight: 400;
        height: unset;
        line-height: unset;
        margin: 0 auto;
    }
}
@media (min-width: 471px) {
    #ndzn-header .cart-toggle .mdi-cart,
    #ndzn-header .header-splash .splash-ip--mobile {
        display: none;
    }
}
@media (max-width: 470px) {
    #ndzn-header .splash-ip--mobile > span {
        margin: 0 4px;
    }
    #ndzn-header .splash-ip {
        padding: 0;
    }
    #ndzn-header .header-user .player-model,
    #ndzn-header .server-counter,
    #ndzn-header .splash-ip .ip-img {
        display: none;
    }
    #ndzn-header .mdi-account {
        font-size: 10px;
    }
    #ndzn-header .btn-left {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #ndzn-header .ndzn-cart {
        margin-left: unset;
    }
    #ndzn-header .header-user .btn-warning {
        height: 56px;
    }
    #ndzn-header .header-user .fa-bars {
        height: 30px;
    }
    #ndzn-header .header-user .cart-toggle {
        padding: 0 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #ndzn-header .header-user .cart-basket .user-big {
        font-size: 15px;
    }
    #ndzn-header .header-user .cart-basket > span {
        font-size: 12px;
        margin-top: 3px;
    }
    #ndzn-header .header-user .btn-left .user-big {
        display: none;
    }
    #ndzn-header .header-user .container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr var(--spacing) 1fr;
        grid-template-columns: 1fr 1fr;
        grid-gap: var(--spacing);
    }
    #ndzn-header .header-user .mdi-cart {
        font-size: 26px;
        margin-left: 10px;
    }
}
.top-panels {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
.top-panels .panel-inner {
    height: 215px;
}
section.homepage > div:not(:first-child) {
    margin-top: 10px;
}
.home-question {
    padding: 40px 25px 45px 0;
}
.home-question:not(:last-child) {
    border-bottom: 1px solid #c1e1ff;
}
.home-question:last-child {
    padding-bottom: 5px;
}
.home-boards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
}
.home-boards .board-title {
    color: #d63f3f;
    font-family: var(--titleFont);
    font-size: 23px;
}
.home-boards .board-title-right {
    color: #33bd38;
    font-family: var(--titleFont);
    font-size: 23px;
}
.home-boards .board-title .mdi {
    font-size: 24px;
    margin-right: 8px;
}
.home-boards .board-list {
    padding-left: 34px;
    margin-top: 25px;
}
.home-boards .board-list > .li {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    position: relative;
}
.home-boards .board-list > .li:before {
    content: "";
    position: absolute;
    display: block;
    height: 7px;
    width: 7px;
    left: -26px;
    top: 6px;
    border-radius: 50%;
    background-color: #444;
}
.home-boards .board-list > .li:not(:first-child) {
    margin-top: 16px;
}
@media (max-width: 1100px) {
    .home-boards {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}
.boards-board .board-inner {
    height: 100%;
    background-color: #d9e5e5;
    border-radius: var(--br);
    border-bottom: 3px solid #c9d3d3;
    padding: 30px 24px;
}
.boards-board .gateway-desc,
.boards-board small {
    font-weight: 700;
}
.boards-board.is--paypal .gateway-img {
    background: var(--paypalImg) no-repeat center/auto 100%;
    height: 25px;
    width: 105px;
}
.boards-board.is--paymentwall .gateway-img {
    background: var(--paymentWall) no-repeat center/auto 100%;
    height: 40px;
    width: 100px;
}
.home-question .mdi-comment-quote {
    font-size: 31px;
}
.home-question .question-q {
    color: #114d5b;
    font-weight: 800;
    margin-bottom: 10px;
}
.home-question .question-q > span {
    font-size: 20px;
    margin-bottom: 6px;
    margin-left: 10px;
}
.home-question .question-a {
    line-height: 1.8em;
    font-weight: 600;
    font-size: 1rem;
}
.home-question .question-a > .important {
    color: #d63f3f;
}
.home-question .question-buttons {
    margin-top: 20px;
    grid-gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.home-question .question-buttons .btn {
    padding: 0 22px;
    height: 44px;
    line-height: 44px;
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: 0;
    -webkit-box-shadow: 0 3px 1px rgba(0, 0, 0, 0.04);
    box-shadow: 0 3px 1px rgba(0, 0, 0, 0.04);
}
.home-question .question-buttons .mdi {
    margin-right: 11px;
}
.home-question .mdi-file-document-edit-outline {
    font-size: 23px;
}
.home-question .mdi-alert {
    font-size: 20px;
}
.home-question .btn-options-discord {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 17px;
}
.home-question .btn-options-discord .mdi-discord {
    font-size: 20px;
}
.home-question .mdi-discord {
    font-size: 20px;
}
.boards-right {
    grid-gap: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 400px;
    flex: 0 0 400px;
}
.home-boards {
    grid-gap: 20px;
}
@media (max-width: 1280px) {
    .home-boards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        grid-gap: 15px;
    }
    .boards-right {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
    .boards-right .gateway-desc {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        text-align: left;
        margin-left: 25px;
        font-size: 12px;
    }
    .boards-board.is--right .board-inner {
        padding: 30px 20px 30px 24px;
        min-height: 120px;
    }
}
@media (max-width: 650px) {
    .home-question {
        padding: 25px 10px;
    }
    .home-question .question-q > span {
        margin-bottom: 2px;
    }
    .question-a,
    .question-buttons,
    .question-q {
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .question-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (max-width: 550px) {
    .boards-board.is--left .board-inner {
        padding: 25px 22px;
    }
    .home-boards .board-title {
        font-size: 21px;
    }
    .home-boards .board-list {
        padding-left: 25px;
    }
    .home-boards .board-list > .li {
        font-size: 12px;
        font-weight: 700;
    }
    .home-boards .board-list > .li:before {
        top: 5px;
        left: -20px;
    }
    .home-question .question-q > span {
        font-size: 17px;
    }
    .home-question .mdi-comment-quote {
        font-size: 26px;
    }
    .home-question .question-buttons {
        margin-top: 15px;
    }
}
@media (max-width: 470px) {
    .boards-board.is--right section {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
    .boards-board.is--right .board-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 22px 20px 22px 24px;
    }
    .boards-board.is--right .gateway-desc {
        text-align: center;
        margin-left: 0;
        margin-top: 20px;
    }
    .home-boards .board-title {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .home-question {
        padding: 20px 0;
    }
    .home-question .question-buttons .btn {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .home-question .mdi-comment-quote {
        display: none;
    }
    .home-question .question-q > span {
        margin-left: 0;
    }
}
.main-sidebar .panel {
    background: rgb(173 214 225 / 86%);
    backdrop-filter: blur(10px);
}
a.panel.is-home-btn {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding: 18px;
    font-weight: 900;
    text-shadow: 0 2px rgba(128, 67, 67, 0.1);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
a.panel.is-home-btn .mdi {
    font-size: 1.3em;
    margin-right: 0.3em;
}
a.panel.is-home-btn:hover {
    color: #fff;
    background-color: #86b7c3;
}


#ndzn-category-nav {
    padding: 0;
}
#ndzn-category-nav .sidebar-header {
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}
#ndzn-category-nav .sidebar-header {
    padding: 30px 60px 28px;
    border-radius: var(--br) var(--br) 0 0;
}
#ndzn-category-nav .sidebar-header:last-child {
    border-radius: var(--br);
}
#ndzn-category-nav .btn-sidebar,
#ndzn-category-nav .sidebar-title {
    color: #ffffff;
}
#ndzn-category-nav .sidebar-title {
    color: #fff;
    font-family: var(--titleFont);
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    text-transform: uppercase;
    line-height: 20px;
    margin-bottom: 12px;
}
#ndzn-category-nav .btn-sidebar {
    background-color: #114d5b;
    border-radius: 9px;
    margin-top: 4px;
    border: 3px solid #86b7c3;
    font-size: 15px;
    font-weight: 700;
    line-height: unset;
    padding: 11px 22px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
}
#ndzn-category-nav .btn-sidebar:focus,
#ndzn-category-nav .btn-sidebar:hover {
    background-color: #0d3f4a;
}
#ndzn-category-nav .sidebar-main {
    padding: 18px;
    grid-gap: 7px;
}
#ndzn-category-nav .nav-link {
    background: var(--btnSuccess);
    border-radius: var(--br);
    color: var(--btnSuccessText);
    font-size: 18px;
    font-weight: 700;
    padding: 21px 20px;
    text-align: center;
    text-shadow: 0 2px rgba(0, 0, 0, 0.125);
    -webkit-box-shadow: 0 2px 7px rgba(15, 121, 224, 0.15);
    box-shadow: 0 2px 7px rgba(15, 121, 224, 0.15);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
#ndzn-category-nav .nav-link:focus,
#ndzn-category-nav .nav-link:hover {
    background-color: #0d3f4a;
}
#ndzn-category-nav .nav-link.active {
    background-color: #2a6a78;
    color: #ffffff;
    text-shadow: none;
}
@media (max-width: 950px) {
    #ndzn-category-nav .sidebar-title {
        margin: 0;
    }
    #ndzn-category-nav .btn-sidebar {
        display: none;
    }
    #ndzn-category-nav .nav-link {
        font-weight: 700;
        font-size: 17px;
        padding: 18px;
    }
}
@media (max-width: 700px) {
    #ndzn-category-nav .sidebar-header {
        padding: 20px 20px 16px;
        position: relative;
        z-index: 2;
        -webkit-box-shadow: 0 6px 7px rgba(0, 0, 0, 0.08);
        box-shadow: 0 6px 7px rgba(0, 0, 0, 0.08);
        border-bottom: 2px solid #71bbff;
    }
    #ndzn-category-nav .sidebar-scroll {
        max-height: 150px;
    }
    #ndzn-category-nav .simplebar-track {
        --gap: 2px;
        --thick: 9px;
    }
    #ndzn-category-nav .sidebar-main {
        padding: 12px;
    }
    #ndzn-category-nav .nav-link {
        padding: 15px;
    }
}
@media (max-width: 950px) {
    a.panel.is-home-btn {
        display: none;
    }
    #start-shopping {
        display: none;
    }
}
#ndzn-store-menu {
    --padding: 30px;
}
#ndzn-store-menu .modal-body {
    padding: var(--padding);
}
#ndzn-store-menu .grid {
    display: -ms-grid;
    display: grid;
    gap: var(--padding);
    -ms-grid-columns: 1fr var(--padding) 1fr var(--padding) 1fr;
    grid-template-columns: repeat(3, 1fr);
}
#ndzn-store-menu a {
    padding: 20px;
    font-weight: 700;
    font-size: 1.1em;
    text-align: center;
    border-radius: var(--br);
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.15s;
    -o-transition: 0.15s;
    transition: 0.15s;
}
#ndzn-store-menu a:hover {
    background: rgba(0, 0, 0, 0.175);
}
#ndzn-category {
    --spacing: 8px;
    --paddingPackage: 22px;
    --paddingItem: 22px 22px 22px 30px;
    --paddingCatDesc: 35px 40px;
}
#ndzn-category h3 {
    margin-bottom: var(--spacing);
}
#ndzn-category .cat-desc,
#ndzn-category .list-item,
#ndzn-category .package {
    background-color: var(--panelInner);
    border-radius: var(--br);
}
#ndzn-category .cat-desc:not(:first-child),
#ndzn-category .list-item:not(:first-child),
#ndzn-category .package:not(:first-child) {
    margin-top: var(--spacing);
}
@media (max-width: 950px) {
    #ndzn-category {
        --paddingPackage: 34px 22px 34px 22px;
        --paddingItem: 24px 22px 22px;
        --paddingCatDesc: 25px 30px;
    }
}
@media (max-width: 650px) {
    #ndzn-category {
        --paddingCatDesc: 15px 20px;
    }
}
.package {
    margin: 0 !important;
    min-height: 340px;
}
.cat-desc {
    margin-bottom: var(--spacing);
    padding: var(--paddingCatDesc);
}
.package {
    padding: var(--paddingPackage);
}
.list-item {
    padding: var(--paddingItem);
}
.item-expires,
.package-expires,
.price-actual,
.price-custom,
.price-discount {
    font-weight: 700;
}
.item-name,
.package-name {
    font-weight: 800;
    color: #444;
    font-size: 19px;
}
.item-main {
    margin-right: auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
}
.price-actual,
.price-custom {
    color: #114d5b;
    font-size: 19px;
}
.item-price {
    margin-right: 30px;
    text-align: right;
}
.item-expires,
.package-expires {
    color: #d63f3f;
    font-weight: 900;
}
.item-expires .mdi,
.package-expires .mdi {
    font-size: 1.3em;
    margin-right: 7px;
}
.package-expires {
    font-size: 16px;
}
.item-expires {
    margin-top: 7px;
    margin-bottom: -4px;
    font-size: 14px;
}
.price-discount {
    color: #dc7e82;
    text-decoration: line-through;
    display: block;
}
.list-item .price-discount {
    font-size: 16px;
    margin-bottom: 2px;
}
#ndzn-packages-images {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr var(--spacing) 1fr var(--spacing) 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: var(--spacing);
}
#ndzn-packages-images .package-price {
    margin-top: 10px;
}
#ndzn-packages-images .price-discount {
    margin-right: 7px;
}
#ndzn-packages-images .package-info {
    height: 100%;
    width: 100%;
}
#ndzn-packages-images .package-image > img {
    height: 140px;
}
#ndzn-packages-images .package-expires {
    margin-bottom: 11px;
}
.package-image {
    margin-bottom: 10px;
}
.package-button {
    margin-top: 15px;
}
.item-button,
.package-button {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    width: 175px;
    text-align: center;
    grid-gap: 7px;
}
.item-button .btn-danger .mdi:last-child:not(:first-child),
.package-button .btn-danger .mdi:last-child:not(:first-child) {
    margin: 0;
}
.item-button .btn-danger > b,
.package-button .btn-danger > b {
    font-size: 19px;
}
.item-button .mdi-trash-can,
.package-button .mdi-trash-can {
    font-size: 25px;
}
.item-button.selected,
.package-button.selected {
    -ms-grid-columns: 62px 7px 1fr;
    grid-template-columns: 62px 1fr;
}
.item-button.selected .btn-info,
.package-button.selected .btn-info {
    font-family: var(--fontMono);
}
.item-button.selected svg,
.package-button.selected svg {
    height: 19px;
    line-height: 19px;
    top: -4px;
    bottom: 0;
    right: 0;
    left: 0;
}
.item-button .btn,
.package-button .btn {
    padding: 0;
    height: 48px;
    line-height: 48px;
}
@media (max-width: 1300px) {
    #ndzn-packages-images {
        -ms-grid-columns: 1fr var(--spacing) 1fr;
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 1200px) {
    .list-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .list-item .price-discount {
        margin-bottom: 6px;
        font-size: 14px;
    }
    .item-main {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .item-main,
    .item-price {
        text-align: center;
    }
    .item-price {
        margin: 16px 0;
    }
    .item-expires {
        margin: 0;
    }
    .item-name {
        margin-top: 8px;
    }
}
@media (max-width: 1050px) {
    #ndzn-packages-images {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}
@media (max-width: 950px) {
    #ndzn-packages-images .package-price {
        margin-top: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #ndzn-packages-images .price-discount {
        margin: 0 0 7px;
        font-size: 14px;
    }
    #ndzn-packages-images .package-button {
        margin-top: 18px;
    }
    #ndzn-packages-images .package-image {
        margin-bottom: 20px;
    }
    #ndzn-packages-images .package-image > img {
        height: 112px;
        width: unset;
    }
}
fieldset[disabled] > button {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.panel-checkout .panel-inner:not(:first-child) {
    margin-top: 8px;
}
.panel-checkout-review > h4 {
    margin-bottom: 12px;
}
.panel-checkout-review .cart-review-sml {
    color: #444;
    font-size: 0.9em;
    font-weight: 700;
}
.panel-checkout-review > section {
    display: -ms-grid;
    display: grid;
    grid-gap: 8px;
    margin-top: 37px;
}
.coupon,
.package-review {
    border-bottom: 3px solid #dae7f2;
}
.package-review {
    background-color: #fff;
    border-radius: var(--br);
}
.package-review .package-review-right {
    margin-left: auto;
}
.package-review .mdi-package {
    font-size: 26px;
    margin-right: 8px;
}
.package-review .mdi-package,
.package-review .package-review-name {
    color: rgba(41, 41, 41, 0.50);
}
.package-review .package-review-name {
    font-size: 0.9em;
    font-weight: 800;
}
.package-review .package-main {
    padding: 4px 14px 4px 0;
}
.package-review .btn-blank,
.package-review .package-right-btn {
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    border-radius: 2px;
}
.package-review .btn-blank:focus,
.package-review .btn-blank:hover,
.package-review .package-right-btn:focus,
.package-review .package-right-btn:hover {
    background-color: #f2f9ff;
}
.package-options {
    background-color: #f5faff;
    border-radius: 0 0 var(--br) var(--br);
    padding: 13px 0;
}
.package-options .opt {
    font-size: 15px;
    color: #809fbc;
    padding: 8px 22px;
}
.package-options b {
    font-weight: 700;
}
.package-review-price {
    color: rgba(41, 41, 41, 0.50);
    font-weight: 800;
    font-size: 0.95rem;
}
.package-review-left {
    padding-left: 20px;
}
.package-right-qty {
    position: relative;
    border: 2px solid transparent;
    margin-right: 3px;
}
.package-right-qty:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 4px;
    height: 42px;
    margin: auto;
    border: 2px solid rgba(74, 153, 227, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}
.package-right-qty fieldset:disabled .btn-blank {
    color: rgba(74, 153, 227, 0.4);
}
.package-right-qty fieldset:disabled .btn-blank:focus,
.package-right-qty fieldset:disabled .btn-blank:hover {
    background: 0 0;
}
.package-right-qty .btn-blank,
.package-right-qty > .package-qty {
    color: rgba(41, 41, 41, 0.50);
    font-size: 17px;
    cursor: pointer;
}
.package-right-qty .btn-blank {
    background-color: transparent;
    border: none;
    font-size: 21px;
    height: 17px;
    line-height: 15px;
    width: 24px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    opacity: 1;
    visibility: visible;
}
.package-right-qty .package-qty {
    font-weight: 800;
    background: 0 0;
    border: none;
}
.package-right-qty.open:before {
    opacity: 1;
    visibility: visible;
}
.package-right-qty.open .btn-blank {
    visibility: hidden;
    opacity: 0;
}
.qty-form {
    position: absolute;
    top: auto;
    bottom: 100%;
    right: -50px;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(180deg);
    -ms-transform: translateY(180deg);
    transform: translateY(180deg);
}
.qty-form .qty-input {
    border: 1px solid #4a99e3;
    background: #fff;
    color: #4a99e3;
    max-width: 95px;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 4px;
}
.qty-form .qty-input::-webkit-input-placeholder {
    color: rgba(74, 153, 227, 0.5);
}
.qty-form .qty-input::-moz-placeholder {
    color: rgba(74, 153, 227, 0.5);
}
.qty-form .qty-input:-ms-input-placeholder {
    color: rgba(74, 153, 227, 0.5);
}
.qty-form .qty-input::-ms-input-placeholder {
    color: rgba(74, 153, 227, 0.5);
}
.qty-form .qty-input::placeholder {
    color: rgba(74, 153, 227, 0.5);
}
.qty-form::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #4a99e3;
    bottom: -5px;
    left: 27px;
}
.qty-form .mdi-check-bold {
    position: absolute;
    color: #7bb936;
    right: 5px;
    top: 2px;
    font-size: 25px;
    background: 0 0;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.qty-form .mdi-check-bold:hover {
    color: #93e13c;
}
.qty-form .mdi-close-thick {
    position: absolute;
    right: -13px;
    top: -13px;
    background: #4a99e3;
    border: none;
    font-size: 13px;
    color: #fff;
    padding: 3px 5px;
    border-radius: 50px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.qty-form .mdi-close-thick:hover {
    background: #3772a8;
}
.package-review-price {
    margin-right: 30px;
}
.package-right-btn {
    color: #4a99e3;
    height: 34px;
    line-height: 37px;
    width: 34px;
    text-align: center;
}
.package-right-btn .mdi-trash-can,
.package-right-btn > .fa-info {
    display: inline-block;
}
.package-right-btn:focus,
.package-right-btn:hover {
    color: #57a0e5;
}
.package-right-btn.remove {
    color: #e6551f;
}
.package-right-btn .mdi-trash-can {
    font-size: 24px;
    margin-top: -2px;
}
.package-right-btn .fa-info {
    margin-bottom: -1px;
}
.coupon-insert > input {
    padding-right: 140px;
}
.coupon-insert .btn-warning {
    right: 7px;
    top: 0;
    bottom: 0;
    padding: 0 22px;
    height: 42px;
    line-height: 42px;
    font-size: 15px;
    text-transform: uppercase;
    margin: auto 0;
    letter-spacing: 0;
    z-index: 10;
}
.coupon {
    background-color: #65b6ff;
    color: #fff;
    border-radius: var(--br);
    padding: 11px 18px 11px 24px;
}
.coupon:not(:first-child) {
    margin-top: 10px;
}
.coupon-left {
    font-weight: 700;
}
.coupon-right {
    font-size: 16px;
    font-weight: 600;
    margin-left: auto;
}
.coupon-right > a {
    color: #fff;
}
.coupon-right .mdi-trash-can-outline {
    font-size: 29px;
}
.coupon-right > hr {
    height: 34px;
    width: 2px;
    background-color: #95cdff;
    border: none;
}
.coupon-right hr {
    margin: 0 15px 0 18px;
}
.billing-details {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 35px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 35px;
}
.billing-details .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.billing-details label {
    margin-bottom: 15px;
}
.user-agreement {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}
.user-agreement label {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
}
.user-agreement .privacy-text {
    font-size: 0.87rem;
    margin-left: 12px;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}
.user-agreement a {
    font-weight: 800;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}
.user-agreement input[type="checkbox"]:checked + .privacy-text {
    color: #444;
    opacity: 0.8;
}
.user-agreement input[type="checkbox"]:checked + .privacy-text a {
    color: #114d5b;
}
.payment-methods {
    text-align: center;
    margin: 35px 0 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.payment-methods.disabled {
    opacity: 0.3;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.payment-methods .btn-success {
    text-align: center;
    font-size: 1.25rem;
}
.payment-methods .btn-success small {
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    margin-top: 10px;
}
#ndzn-store-menu {
    --footerHeight: 0;
}
#ndzn-store-menu .top {
    --paddingT: 35px;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding: var(--paddingT);
}
#ndzn-store-menu .bottom {
    --paddingB: 33px 35px 30px;
    background-color: #d1e7fc;
    padding: var(--paddingB);
}
#ndzn-store-menu .bottom h4 {
    font-size: 23px;
    margin-bottom: 6px;
}
#ndzn-store-menu .cat-link {
    font-size: 20px;
    --color: #114d5b;
    --image: url("https://cdn.tebex.io/store/1057059/templates/283424/assets/537a397e89709b3d00431dd341d1aca91109034f.png?updated=51904f44b732c64fea885f8b2d9ce3c6b00988538657a82e591e0f94cb74ca22");
    --purple: #8f3aef;
    --orange: #ff875a;
    --blue: #0076df;
    --red: #ff5e5e;
    color: var(--color);
    padding: 22px 30px 22px 23px;
    border-bottom: 3px solid #c9d3d3;
    min-height: 134px;
    background-color: #d9e5e5;
}
#ndzn-store-menu .cat-link:focus,
#ndzn-store-menu .cat-link:hover {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    background-color: #bccccc;
}
#ndzn-store-menu .cat-link .cat-img {
    background: var(--image) no-repeat center/auto 100%;
    height: 60px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58px;
    flex: 0 0 58px;
    margin-right: 22px;
}
#ndzn-store-menu .cat-link .category-status {
    color: #ffffff;
    font-size: 14px;
    line-height: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}
#ndzn-store-menu .cat-link .category-name {
    font-family: var(--titleFont);
    font-size: 23px;
    line-height: 27px;
}
#ndzn-store-menu .cat-link:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    height: 96px;
    width: 6px;
    border-radius: 0 var(--br) var(--br) 0;
    background-color: var(--color);
}
#ndzn-store-menu .cat-link.active:before {
    background: #fff;
}
#ndzn-store-menu .cat-link.active .cat-right div {
    text-shadow: 0 0.16em rgba(0, 0, 0, 0.1);
}
#ndzn-store-menu .cat-link.active .category-status {
    color: #fff;
}
#ndzn-store-menu .cat-link.active,
#ndzn-store-menu .subcat-link.active {
    background-color: #114d5b;
    box-shadow: 0 0 13px 2px rgb(17 77 91);
    border-bottom-color: #0b3540;
    color: #fff;
}
#ndzn-store-menu .cat-link.active:focus,
#ndzn-store-menu .cat-link.active:hover,
#ndzn-store-menu .subcat-link.active:focus,
#ndzn-store-menu .subcat-link.active:hover {
    color: #fff;
    background-color: #0d3f4a;
}
#ndzn-store-menu .subcat-link {
    background-color: #fff;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 46px;
    line-height: 46px;
    font-size: 17px;
    font-weight: 700;
    padding: 0 28px;
    color: #3699f2;
    -webkit-box-shadow: 0 2px rgba(0, 0, 0, 0.075);
    box-shadow: 0 2px rgba(0, 0, 0, 0.075);
}
#ndzn-store-menu .subcat-link:focus,
#ndzn-store-menu .subcat-link:hover {
    background-color: #fff;
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
#ndzn-store-menu .subcat-link.active {
    text-shadow: 0 2px rgba(0, 0, 0, 0.1);
}
#ndzn-store-menu .mdi-close-thick {
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    border-radius: var(--br);
    line-height: 50px;
    text-align: center;
}
#ndzn-store-menu .mdi-close-thick:focus,
#ndzn-store-menu .mdi-close-thick:hover {
    background-color: #114d5b;
}
#ndzn-store-menu .modal-body {
    padding: 0;
    border-radius: var(--br);
    background: #bcd8f3;
}
#ndzn-store-menu .bottom section {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#ndzn-store-menu .bottom section > a {
    display: inline-block;
    margin: 5px 8px;
}
#ndzn-store-menu .cat-right {
    text-align: left;
}
#ndzn-store-menu .category-name,
#ndzn-store-menu .subcat-link {
    text-transform: uppercase;
}
#ndzn-store-menu .home-mobile {
    background: #d8e5e5;
    color: #104d5b;
}
#ndzn-store-menu .home-mobile .mdi {
    margin-right: 8px;
    font-size: 1.25em;
}
#ndzn-store-menu .home-mobile:hover {
    background: #bccccc;
}
@media (max-width: 650px) {
    #ndzn-store-menu .bottom,
    #ndzn-store-menu .top {
        --paddingT: 20px;
        --paddingB: 20px;
    }
    #ndzn-store-menu .top {
        grid-gap: 12px;
    }
    #ndzn-store-menu .cat-link {
        padding: 15px 20px;
        min-height: 120px;
    }
    #ndzn-store-menu .cat-link .category-name {
        font-size: 18px;
        line-height: 21px;
    }
    #ndzn-store-menu .cat-link .cat-img {
        margin-right: 15px;
    }
    #ndzn-store-menu .modal-body {
        height: 100%;
        border-radius: 0;
    }
}
@media (max-width: 550px) {
    #ndzn-store-menu .top {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    #ndzn-store-menu .modal-body {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}
@media (max-width: 470px) {
    #ndzn-store-menu .bottom section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        grid-gap: var(--spacing);
    }
    #ndzn-store-menu .bottom h4 {
        -webkit-margin-after: 16px;
        margin-block-end: 16px;
    }
    #ndzn-store-menu .subcat-link {
        width: 100%;
        margin: 0 !important;
    }
}
.module {
    --paddingModule: 25px 35px;
    padding: var(--paddingModule);
}
.module p {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.03em;
    word-spacing: 1px;
    line-height: 1.9em;
    color: #ffffff;
}
.module .progress,
.module .progress-bar {
    border-radius: var(--br);
    height: 34px;
    line-height: 34px;
}
.module .progress {
    background-color: #4891d4;
}
.module .progress b {
    color: #7b5d03;
    z-index: 10;
    font-size: 14px;
    top: 0;
    bottom: 0;
    right: 14px;
    font-weight: 800;
}
.module .progress .percentage-low {
    right: -30px;
    color: #fff;
}
.module .progress-bar {
    background-color: #fcbe02;
    height: 100%;
}
.module .donation-goal {
    max-width: 294px;
    margin: 0 auto;
}
.module h4 {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.module .mdi-arrow-up-bold,
.module .mdi-checkbook {
    font-size: 24px;
}
.module .mdi-checkbook {
    margin-right: 3px;
}
.module .mdi-flag-checkered {
    font-size: 24px;
}
.module .mdi-flag-checkered {
    margin-right: 3px;
}
.module .mdi-heart {
    font-size: 21px;
}
.module .player-icons {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40px 10px 40px 10px 40px 10px 40px 10px 40px;
    grid-template-columns: 40px 40px 40px 40px 40px;
    grid-gap: 10px;
    margin: 10px auto 0;
}
.module .player-icons > .icon {
    height: 40px;
    width: 40px;
    border-radius: var(--br);
}
.module-header {
    color: #114d5b;
    font-size: 20px;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.module-header .mdi {
    margin-right: 6px;
}
.module-header .mdi-flag {
    font-size: 37px;
}
.ndzn-footer {
    color: #e6f1f2;
    padding: 40px 0;
    font-size: 0.925rem;
    width: 100%;
    margin-top: auto;
}
.ndzn-footer .container {
    position: relative;
}
.ndzn-footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(17, 77, 91, 0), rgba(17, 77, 91, .5) 31.56%, rgba(17, 77, 91, .9) 65.42%, #114d5b);
}
.ndzn-footer .footer-left {
    margin-right: auto;
    font-weight: 600;
}
.ndzn-footer .footer-left span {
    display: block;
    margin-bottom: 0.5em;
}
.ndzn-footer b {
    font-weight: 700;
}
.ndzn-footer .footer-left small {
    font-size: 0.8rem;
    color: #e6f1f2;
}
.ndzn-footer svg {
    fill: #e6f1f2;
}
.ndzn-footer #tm {
    opacity: 0.5;
    -webkit-transition: 0.15s;
    -o-transition: 0.15s;
    transition: 0.15s;
}
.ndzn-footer #tm:hover {
    opacity: 1;
}
@media (max-width: 650px) {
    .ndzn-footer {
        margin-top: 0;
    }
    .ndzn-footer .container {
        padding: 0 20px;
    }
}
@media (max-width: 500px) {
    .ndzn-footer {
        margin: 0;
        padding: 20px 0 23px;
    }
    .ndzn-footer .container {
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .ndzn-footer .footer-left {
        margin: 0 0 20px;
    }
}
#ndzn-rank-upgrades {
    margin-bottom: var(--spacing);
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
#ndzn-rank-upgrades[x-cloak] > .panel-inner.displayed-package > * {
    display: none;
}
#ndzn-rank-upgrades > .panel-inner.arrow {
    background-color: #fcbe02;
    padding: 0;
    width: 85px;
    margin: 12px 0;
    border-radius: 0;
    border-top: 3px solid #e2ab04;
    border-bottom: 3px solid #e2ab04;
}
#ndzn-rank-upgrades > .panel-inner.displayed-package,
#ndzn-rank-upgrades > .panel-inner.rank-upgrade {
    min-height: 212px;
}
#ndzn-rank-upgrades > .panel-inner.rank-upgrade {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
}
#ndzn-rank-upgrades > .panel-inner.displayed-package {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    overflow: hidden;
}
#ndzn-rank-upgrades > .panel-inner .mdi-chevron-double-right {
    color: #d29f05;
    font-size: 46px;
}
#ndzn-rank-upgrades .rank-upgrades-dd {
    margin: 16px 0;
}
#ndzn-rank-upgrades .rank-upgrades-dd .ndzn-js--ddMenu {
    margin-top: 4px;
}
#ndzn-rank-upgrades #current-rank-selector,
#ndzn-rank-upgrades .rank-upgrades-dd {
    width: 100%;
}
#ndzn-rank-upgrades .package-missing {
    font-size: 100px;
    opacity: 0.1;
}
#ndzn-rank-upgrades #current-rank-selector,
#ndzn-rank-upgrades .btn-current-rank,
#ndzn-rank-upgrades .package-upgrade .package-name {
    color: #549fe3;
    text-shadow: none;
    font-weight: 800;
    font-family: var(--font);
}
#ndzn-rank-upgrades #current-rank-selector,
#ndzn-rank-upgrades .btn-current-rank {
    padding: 0 40px;
    line-height: 44px;
    height: 44px;
}
#ndzn-rank-upgrades #current-rank-selector > .mdi-menu-down,
#ndzn-rank-upgrades .btn-current-rank > .mdi-menu-down {
    color: #abc9ea;
}
#ndzn-rank-upgrades #current-rank-selector {
    display: none;
    padding: 0 40px;
}
#ndzn-rank-upgrades #current-rank-selector > .mdi {
    right: 10px;
    font-size: 24px;
}
#ndzn-rank-upgrades #current-rank-selector > .mdi.rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
#ndzn-rank-upgrades #current-rank-selector,
#ndzn-rank-upgrades .package-name,
#ndzn-rank-upgrades .rank-upgrades-dd > div {
    border: 1px solid #a6c6e9;
    border-radius: var(--br);
}
#ndzn-rank-upgrades .rank-upgrades-dd.opened .btn-current-rank,
#ndzn-rank-upgrades .selected {
    display: block !important;
}
#ndzn-rank-upgrades .rank-upgrades-dd {
    z-index: 10;
}
#ndzn-rank-upgrades .rank-upgrades-dd .btn-info {
    background-color: #fff;
    width: 100%;
    border-radius: 0;
}
#ndzn-rank-upgrades .rank-upgrades-dd .btn-info:focus,
#ndzn-rank-upgrades .rank-upgrades-dd .btn-info:hover {
    background-color: #f8f8f8;
}
#ndzn-rank-upgrades .rank-upgrades-dd .btn-info:first-of-type {
    border-radius: var(--br) var(--br) 0 0;
}
#ndzn-rank-upgrades .rank-upgrades-dd .btn-info:last-of-type {
    border-radius: 0 0 var(--br) var(--br);
}
#ndzn-rank-upgrades .rank-upgrade > span {
    text-align: center;
    line-height: 22px;
}
#ndzn-rank-upgrades .displayed-package .package-name,
#ndzn-rank-upgrades .rank-upgrade > span {
    color: #466685;
    font-weight: 800;
    font-size: 17px;
}
.displayed-package {
    padding: 10px 26px;
}
.displayed-package .upgrade-right > span {
    color: #8db9e2;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 7px;
}
.displayed-package svg.fa-info {
    height: 16px;
    line-height: 16px;
    margin: auto;
    top: -4px;
    bottom: 0;
    left: 0;
    right: 0;
}
.displayed-package .btn {
    padding: 0 20px;
}
.displayed-package .upgrade-left > img {
    height: 90px;
}
.displayed-package .upgrade-left {
    margin-right: 24px;
}
.displayed-package .package-name {
    background-color: #444;
    font-size: 15px;
    padding: 0 10px;
    width: 225px;
    min-height: 44px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.displayed-package .package-name .mdi-arrow-right-thick {
    font-size: 18px;
    margin: 0 14px;
}
.displayed-package .upgrade-buttons,
.displayed-package .upgrade-price {
    margin-top: 15px;
}
.displayed-package .price-actual,
.displayed-package .price-discount {
    font-weight: 800;
}
.displayed-package .price-discount {
    margin-right: 10px;
    position: relative;
    top: -1px;
}
.displayed-package .upgrade-buttons {
    grid-gap: 10px;
}
.displayed-package .upgrade-buttons .btn,
.displayed-package .upgrade-buttons > button {
    padding: 0 22px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
}
@media (max-width: 1350px) {
    #ndzn-rank-upgrades > .panel-inner.rank-upgrade {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
        flex: 0 0 300px;
        margin-right: 10px;
    }
    #ndzn-rank-upgrades > .panel-inner.arrow {
        display: none;
    }
}
@media (max-width: 1150px) {
    .displayed-package .upgrade-left {
        display: none;
    }
    #ndzn-rank-upgrades > .panel-inner.rank-upgrade,
    .displayed-package {
        padding: 20px;
    }
}
@media (max-width: 1050px) {
    #ndzn-rank-upgrades > .panel-inner.rank-upgrade {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 230px;
        flex: 0 0 230px;
    }
}
@media (max-width: 950px) {
    .displayed-package .upgrade-left {
        display: block;
    }
    #ndzn-rank-upgrades > .panel-inner.displayed-package,
    #ndzn-rank-upgrades > .panel-inner.rank-upgrade {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
}
@media (max-width: 750px) {
    #ndzn-rank-upgrades {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #ndzn-rank-upgrades > .panel-inner.rank-upgrade {
        margin: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    #ndzn-rank-upgrades > .panel-inner.arrow {
        width: calc(100% - 36px);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border: 3px #e2ab04 solid;
        border-top: 0;
        border-bottom: 0;
        margin: 0 auto;
        height: 50px;
    }
    #ndzn-rank-upgrades > .panel-inner .mdi-chevron-double-right {
        display: inline-block;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        margin: 0 auto;
        font-size: 40px;
    }
    #ndzn-rank-upgrades .rank-upgrades-dd > div {
        margin-top: -12px;
    }
    #ndzn-rank-upgrades #current-rank-selector,
    #ndzn-rank-upgrades .rank-upgrades-dd {
        width: 225px;
        margin-left: auto;
        margin-right: auto;
    }
    .displayed-package .upgrade-left {
        margin-right: 25px;
    }
    .displayed-package .upgrade-left > img {
        height: 120px;
    }
}
@media (max-width: 500px) {
    .displayed-package .package-upgrade {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .displayed-package .upgrade-left {
        margin: 0 auto 20px;
    }
    .displayed-package .upgrade-left > img {
        height: 60px;
    }
    .displayed-package .package-name {
        width: unset;
        min-width: 225px;
        margin: 0 20px;
    }
    #ndzn-rank-upgrades > .panel-inner.displayed-package {
        padding: 20px 0;
    }
}


/* 13 MARCH 2021 FIX */
.alert {
    border-radius: var(--br);
    background: var(--btnDanger);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    padding: 1.5em;
    margin-bottom: var(--spacing);
}
.fadeout {
    transition-property: opacity, max-height, padding, margin;
    max-height: 0 !important;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    opacity: 0;
}