
:root {
--color-text: #fff;
--color-text-darker: #e5e5e5;
--color-text-secondary: #ccc;
--color-text-dark: #0D0D0D;
--color-bg: rgb(18,24,32);
--bg : rgb(18,24,32);
--color-brighter-bg: #0d0d0d00;
--color-primary2: #c4c4c4;
--color-primary2-hover: #fff;
--color-primary2-text: var(--color-text-dark);
--color-primary2-text-hover: var(--color-primary2-text);
--color-secondary: #ccc;
--color-secondary-hover: #e5e5e5;
--color-secondary-text: var(--color-text-dark);
--color-secondary-text-hover: var(--color-secondary-text);
--color-tertiary: transparent;
--color-tertiary-hover: rgb(255 255 255 / 15%);
--color-tertiary-text: var(--color-text);
--color-tertiary-text-hover: var(--color-tertiary-text);
--color-removed: #C12E2E;
--color-sale-banner-bg: var(--color-primary2);
--color-sale-banner-text: var(--color-primary2-text);
--tebex-footer-height: 35px;
--widget-padding: 24px;
--content-padding: var(--widget-padding);
--content-inner-width: 1280px;
--content-width: calc((var(--content-padding) * 2) + var(--content-inner-width));
--sidebar-width: 287px;
--tebex-legal-footer-max-width: min(
var(--content-inner-width),
calc(100vw - (var(--content-padding) * 2))
);
--tebex-legal-footer-background-color: var(--color-brighter-bg);
--tebex-legal-footer-border-color: var(--color-brighter-bg);
--tebex-legal-footer-text-color: var(--color-text-secondary);
}
@media (width > 960px) {
:root {
--content-padding: calc(var(--widget-padding) * 2);
}
}
@media (max-width: 900px) {
:root {
--tebex-footer-height: 70px;
}
}
@media (max-width: 600px) {
:root {
--tebex-footer-height: 80px;
}
}

*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
border: none;
outline: none;
vertical-align: baseline;
color: inherit;
background: transparent;
font-size: inherit;
font-family: inherit;
font-weight: inherit;
letter-spacing: inherit;
}

strong,
b {
font-weight: 700;
}

em,
i {
font-style: italic;
}

input[type=submit],
button {
appearance: none;
cursor: pointer;
text-align: left;
}

textarea {
resize: none;
}

symbol,
use,
svg {
overflow: visible;
}

svg,
img {
display: block;
}

li {
display: block;
}

button {
display: block;
}

a {
color: inherit;
text-decoration: none;
}

:root *[hidden] {
display: none;
}

:focus {
outline: 0;
}

::placeholder {
color: inherit;
opacity: 1;
}

@view-transition {
navigation: auto;
}
::view-transition-group(root) {
animation-duration: var(--page-transition-duration);
animation-timing-function: ease;
}

@keyframes pageMoveOut {
0% {
opacity: 1;
}
50%, 100% {
opacity: 0;
}
}
@keyframes pageMoveIn {
0%, 50% {
scale: 0.98;
opacity: 0;
}
100% {
scale: 1;
opacity: 1;
}
}
::view-transition-old(siteContent) {
animation: var(--page-transition-duration) ease both pageMoveOut;
transform-origin: center top;
}

::view-transition-new(siteContent) {
animation: var(--page-transition-duration) ease both pageMoveIn;
transform-origin: center top;
}

::view-transition-group(siteContent) {
z-index: 2;
}

::view-transition-group(siteHeaderTop),
::view-transition-group(siteHeader),
::view-transition-group(siteNavigation),
::view-transition-group(siteBgImage),
::view-transition-group(siteFooter) {
animation-duration: var(--page-transition-duration);
animation-timing-function: ease;
z-index: 3;
}

::view-transition-group(siteBgImage) {
z-index: 1;
}

html,
body {
min-height: 100vh;
}

html {
overflow: hidden scroll;
scrollbar-width: thin;
scrollbar-color: var(--color-secondary) var(--color-bg);
scrollbar-gutter: stable;
}
html.no-scroll {
overflow: hidden;
overscroll-behavior-y: none;
}

body {
position: relative;
max-width: 100%;
width: 100%;
line-height: normal;
color: var(--color-text);
background: var(--color-bg);
accent-color: var(--color-primary2);
font-family: sans-serif;
font-size: 16px;
}
body::before {
view-transition-name: siteBgImage;
}

::selection {
color: var(--color-text);
background-color: var(--color-primary2);
text-shadow: none;
}

select option {
color: var(--color-text);
background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
font-weight: 700;
}

.text-content {
line-height: 1.4;
word-wrap: break-word;
word-break: break-word;
}
.text-content h1:not(:last-child),
.text-content h2:not(:last-child),
.text-content h3:not(:last-child),
.text-content h4:not(:last-child),
.text-content h5:not(:last-child),
.text-content h6:not(:last-child) {
margin-bottom: 24px;
}
.text-content p:not(:last-child) {
margin-bottom: 12px;
}
.text-content h1 {
font-size: 32px;
}
.text-content h2 {
font-size: 26px;
}
.text-content h3 {
font-size: 20px;
}
.text-content h4 {
font-size: 18px;
}
.text-content img {
display: inline-block;
max-width: 100%;
height: auto;
}
.text-content ol, .text-content ul {
margin-left: 1em;
}
.text-content ol:not(:last-child), .text-content ul:not(:last-child) {
margin-bottom: 12px;
}
.text-content li {
display: list-item;
}

/* .btn-primary,
.btn-secondary,
.btn-tertiary {
--btn-color-text: var(--color-text);
--btn-color-text-hover: var(--btn-color-text);
--btn-color-bg: var(--color-bg);
--btn-color-bg-hover: var(--btn-color-bg);
display: block;
width: fit-content;
height: 46px;
padding: 0 10px;
line-height: 46px;
color: var(--btn-color-text);
background-color: var(--btn-color-bg);
font-size: 16px;
font-weight: 700;
text-align: center;
cursor: pointer;
transition: all 0.15s ease-in-out;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} */
@media (width > 960px) {
.btn-primary,
.btn-secondary,
.btn-tertiary {
padding: 0 14px;
}
}
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-tertiary:hover,
.btn-tertiary:focus {
color: var(--btn-color-text-hover);
background-color: var(--btn-color-bg-hover);
}

.btn-primary {
--btn-color-text: var(--color-primary2-text);
--btn-color-bg: var(--color-primary2);
--btn-color-text-hover: var(--color-primary2-text-hover);
--btn-color-bg-hover: var(--color-primary2-hover);
}

.btn-secondary {
--btn-color-text: var(--color-secondary-text);
--btn-color-bg: var(--color-secondary);
--btn-color-text-hover: var(--color-secondary-text-hover);
--btn-color-bg-hover: var(--color-secondary-hover);
}

.btn-tertiary {
--btn-color-text: var(--color-tertiary-text);
--btn-color-bg: var(--color-tertiary);
--btn-color-text-hover: var(--color-tertiary-text-hover);
--btn-color-bg-hover: var(--color-tertiary-hover);
}

.btn-icon {
position: relative;
flex: none;
width: 46px;
height: 46px;
padding: 0;
background-position: center center;
background-repeat: no-repeat;
background-size: 18px;
}
:root .btn-icon {
line-height: 0;
font-size: 0;
color: transparent;
}

.btn-icon-text {
display: flex;
align-items: center;
min-width: 46px;
}
.btn-icon-text::before {
content: "";
display: block;
margin-right: 8px;
width: 18px;
height: 18px;
flex: none;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
}
@media (width <= 960px) {
:root .btn-icon-text {
justify-content: center;
font-size: 0;
color: transparent;
}
:root .btn-icon-text::before {
margin-right: 0;
}
}

.btn-glyph::before,
.btn-glyph-text::before {
content: "";
display: block;
width: 18px;
height: 18px;
flex: none;
background-color: var(--btn-color-text);
mask-position: center center;
mask-repeat: no-repeat;
mask-size: contain;
transition: background-color 0.15s ease-in-out;
}
.btn-glyph:hover::before, .btn-glyph:focus::before,
.btn-glyph-text:hover::before,
.btn-glyph-text:focus::before {
background-color: var(--btn-color-text-hover);
}

.btn-glyph {
position: relative;
flex: none;
width: 46px;
height: 46px;
}
:root .btn-glyph {
padding: 0;
line-height: 0;
font-size: 0;
color: transparent;
}
.btn-glyph::before {
position: absolute;
inset: 0;
margin: auto;
}

.btn-glyph-text {
display: flex;
align-items: center;
min-width: 46px;
}
.btn-glyph-text::before {
margin-right: 8px;
}
@media (width <= 960px) {
:root .btn-glyph-text {
justify-content: center;
font-size: 0;
color: transparent;
}
:root .btn-glyph-text::before {
margin-right: 0;
}
}

.link-text {
color: var(--color-text-darker);
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-position: under;
transition: color 0.15s ease-in-out;
}
.link-text:hover {
color: var(--color-text);
}

.quantity-field {
display: flex;
align-items: stretch;
justify-content: center;
color: var(--color-text);
background: var(--color-bg);
height: 36px;
border: 1px solid var(--color-secondary);
}
.quantity-field input[type=number] {
position: relative;
z-index: 1;
flex: none;
-moz-appearance: textfield;
appearance: textfield;
field-sizing: content;
min-width: 40px;
height: 100%;
font-size: 16px;
text-align: center;
font-variant-numeric: tabular-nums;
}
.quantity-field input[type=number]:focus, .quantity-field input[type=number]:hover {
border-color: var(--color-secondary-hover);
}
.quantity-field input[type=number]::-webkit-inner-spin-button, .quantity-field input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.quantity-field.with-open-basket input[type=number] {
margin: 0 -12px 0 -15px;
min-width: auto;
padding: 0 15px;
order: 1;
text-align: right;
transition: color 0.15s ease-in-out;
}
.quantity-field .open-basket {
margin-right: 5px;
width: fit-content;
height: 100%;
order: 2;
font-size: 16px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
transition: color 0.15s ease-in-out;
}
.quantity-field .open-basket:focus, .quantity-field .open-basket:hover {
color: var(--color-primary2);
}
.quantity-field .open-basket:focus ~ input[type=number], .quantity-field .open-basket:hover ~ input[type=number] {
color: var(--color-primary2);
}
.quantity-field .adjust {
position: relative;
z-index: 2;
flex: none;
width: 34px;
height: 100%;
padding: 0;
line-height: 0;
font-size: 0;
color: transparent;
}
.quantity-field .adjust.decrease {
margin-right: auto;
order: -1;
}
.quantity-field .adjust.increase {
margin-left: auto;
order: 100;
}
.quantity-field .adjust::before {
content: "";
display: block;
width: 100%;
height: 100%;
background-color: var(--color-text);
mask: url("https://template-assets.tebex.io/images/plus.svg") no-repeat center center;
mask-size: 10px;
}
.quantity-field .adjust.decrease::before {
mask-image: url("https://template-assets.tebex.io/images/minus.svg");
}

@media (width > 960px) {
.mobile-only {
display: none;
}
}

@media (width <= 960px) {
.desktop-only {
display: none;
}
}

.site {
display: grid;
grid-auto-rows: auto 1fr auto;
grid-template-columns: 100%;
align-items: start;
gap: var(--widget-padding);
min-height: calc(100vh - var(--tebex-footer-height));
font-size: 14px;
view-transition-name: site;
}
/* @media (width > 960px) {
.site {
gap: calc(var(--widget-padding) * 2);
}
} */
.page-index.home-categories-enabled .site {
grid-auto-rows: auto auto 1fr auto;
}

.site-header,
.site-sale-banner,
.site-home-categories,
.site-content,
.site-footer-inner {
margin: 0 auto;
padding: 0 var(--content-padding);
width: 100%;
}
@media (width > 960px) {
.site-header,
.site-sale-banner,
.site-home-categories,
.site-content,
.site-footer-inner {
max-width: var(--content-width);
}
}

.site-content{
justify-content: center;
}

.site-header {
position: relative;
z-index: 2;
view-transition-name: siteHeader;
}

.site-header-inner .user-name {
contain: paint;
}
.site-header-inner .user-name .text,
.site-header-inner .user-name .text-hover {
transition: opacity 0.15s ease-in-out, font-size 0.15s ease-in-out, visibility 0.15s ease-in-out;
}
.site-header-inner .user-name .text-hover {
visibility: hidden;
color: transparent;
font-size: 0;
}
/* .site-header-inner .user-name:hover .text, .site-header-inner .user-name:focus-within .text {
visibility: hidden;
opacity: 0;
font-size: 0;
} */
@media (width <= 960px) {

.header-navigation{
display: none;
}
.site-header-inner {
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--widget-padding) 0;
position: relative;
padding: 30px 0 calc(50px - var(--widget-padding));
flex-wrap: wrap;
}
.site-header-inner .actions {
position: absolute;
top: var(--widget-padding);
left: 0;
display: flex;
gap: 6px;
}
.site-header-inner .toggle-navigation {
background-image: url("https://template-assets.tebex.io/images/burger.svg");
}
.site-header-inner .log-in,
.site-header-inner .user-actions {
position: absolute;
right: 0;
}
.site-header-inner .user-actions {
display: flex;
gap: 12px;
}
/* .site-header-inner .open-basket::before {
mask-image: url("https://template-assets.tebex.io/images/checkout.svg");
} */
.site-header-inner .user-name {
display: none;
}
.site-header-inner .site-title {
width: 100%;
line-height: 80px;
font-size: 50px;
font-weight: 900;
text-align: center;
}
.site-header-inner .site-title img {
margin: 0 auto;
max-width: 100%;
max-height: 80px;
object-fit: contain;
}
.site-header-inner .info {
display: block;
position: relative;
flex: none;
width: 50%;
padding-left: 42px;
line-height: 18px;
}
.site-header-inner .info.discord {
right: 0;
left: auto;
padding-left: 0;
padding-right: 42px;
text-align: right;
}
.site-header-inner .info .image {
position: absolute;
top: 0;
left: 0;
bottom: 0;
margin: auto;
width: 32px;
height: 32px;
object-fit: contain;
}
.site-header-inner .info.discord .image {
left: auto;
right: 0;
}
.site-header-inner .info .title {
display: block;
line-height: 20px;
color: var(--color-text);
font-size: 12px;
font-weight: 600;
}
.site-header-inner .info .action {
display: block;
color: var(--color-primary2);
font-size: 12px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
transition: color 0.15s ease-in-out;
cursor: pointer;
}
.site-header-inner .info:hover .action {
color: var(--color-primary2-hover);
}
.site-header-inner .info .value {
width: fit-content;
border: 1px solid #606060;
padding: 0 5px;
background: rgba(96, 96, 96, 0.5);
color: #CCC;
font-size: 12px;
}
}
@media (width > 960px) {
.header-navigation .log-in{
all: unset;
display: flex;
font-family: 'Poppins', sans-serif;
font-weight: 500;
color: rgb(255,255,255);
font-size: 14px;
padding:8px;
padding-left: 17px;
padding-right: 17px;
/* box-shadow: 0 0 5px rgb(0,0,0,0.3); */
/* background-color: rgb(255,255,255,0.05); */
border-radius: 20px;
right: 0;
align-items: center;
justify-content: center;
text-align: center;
cursor: pointer;
/* border: 1px solid rgb(255,255,255,0.05); */

}
.header-navigation .user-name{
all: unset;
display: flex;
width: auto;
font-family: 'Poppins', sans-serif;
font-weight: 700;
color: rgb(0, 0, 0, 0.7);
height: 35px;
font-size: 13px;
padding-left: 16px;
padding-right: 16px;
background-color: rgb(0,214,203,1);
border-radius: 8px;
right: 0;
align-items: center;
justify-content: center;
text-align: center;
cursor: pointer;
}
.header-navigation .open-basket{
all: unset;
display: flex;
width: 35px;
height: 35px;
color: rgb(0,0,0,0.7);
font-size: 13px;
background-color: rgb(255,255,255,1);
border-radius: 8px;
right: 0;
align-items: center;
justify-content: center;
text-align: center;
cursor: pointer;
}
.header-navigation{
display: flex;
position: absolute;
width: 100%;
left: 0;
top: var(--widget-padding);
gap: 10px;
align-items: center;
justify-content: flex-start;
}

.header-navigation{
display: flex;
position: absolute;
left: 0;
top: var(--widget-padding);
}

.header-navigation .header-logo img {
display: flex;
max-width: 60px;
max-height: 60px;
}

.header-navigation .header-buttons-container {
display: flex;
flex-direction: row;
width: fit-content;
height: fit-content;
gap: 5px;
/* background-color: rgb(255,255,255,0.05); */
border-radius: 30px;
margin-left: 20px;
/* box-shadow: 0 0 5px rgb(0,0,0,0.3); */
/* border: 1px solid rgb(255,255,255,0.05); */
}

.header-navigation .header-buttons-container .header-button {
display: flex;
position: relative;
font-size: 14px;
height: 30px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
color: rgb(255,255,255);
padding-left: 17px;
padding-right: 17px;
transition: 0.25s ease;
align-items: center;
justify-content: center;
transition: 0.25s ease;
opacity: 0.9;
}

.header-navigation .header-buttons-container .header-button::after {
content: '';
position: absolute;
top: 0;
left: 50%; 
transform: translateX(-50%);
width: 0px;
height: 2px;
/* background-color: rgb(0,214,203);
box-shadow: 0 0 20px rgb(0, 214, 203, 0.2); */
background-color: rgb(0,214,203);
box-shadow: 0 0 20px rgb(0,214,203, 0.2);
transition: 0.25s ease;
opacity: 0;
}

.header-navigation .header-buttons-container .header-button:hover::after {
width: 20px;
opacity: 1;
}

.header-navigation .header-buttons-container .header-button:hover {
opacity:1;
}


.header-navigation .header-buttons-container .header-button.active:hover::after {
opacity: 0;
}


.header-navigation .header-buttons-container .header-button .background-color {
display: flex;
position: absolute;
width: 100%;
height: 100%;
background-color: rgb(255, 255, 255);
opacity: 0;
transform: scale(0.9);
box-shadow: 0 0 5px rgb(0,0,0,0.3);
transition: 0.25s ease;
border-radius: 7px;
}

/* .header-navigation .header-buttons-container .header-button:hover {
color: rgb(0, 0, 0, 0.7);
}
.header-navigation .header-buttons-container .header-button:hover .background-color {
background-color: rgb(255, 255, 255);
opacity: 1;
transform: none;
z-index: -1;
} */

.header-navigation .header-buttons-container .header-button.active {
color: rgb(0, 0, 0, 0.7);
font-weight: 600;
opacity:1;
}

.header-navigation .header-buttons-container .header-button.active .background-color {
opacity: 1;
transform: none;
animation: active-appear 0.25s ease-out forwards;
z-index: -1;
}

@keyframes active-appear {
0% {
opacity: 0;
transform: scale(0.95);
background-color: rgb(0, 214, 203);
}
100% {
opacity: 1;
transform: scale(1);
background-color: rgb(0, 214, 203);
}
}

.header-navigation .docs-button {
display: flex;
font-size: 13px;
/* color: rgb(0,214,203); */
width: 35px;
height: 35px;
border-radius: 8px;
/* background-color: rgb(255,255,255,0.05); */
align-items: center;
justify-content: center;
/* text-shadow: 0 0 20px rgb(0,214,203,0.3); */
/* box-shadow: 0 0 5px rgb(0,0,0,0.3); */
transition: 0.25s ease;
/* border: 1px solid rgb(255,255,255,0.05); */
background-color: rgb(0,214,203,1);
color: rgb(0,0,0,0.7);

}

.header-navigation .docs-button:hover {
background-color: rgb(255,255,255,1);
}


.site-header-inner {
position: relative;
height: 100px;
}
body.is-navigation-horizontal .site-header-inner {
height: 355px;
}
.site-header-inner .actions {
position: absolute;
top: var(--widget-padding);
left: 0;
display: flex;
gap: 6px;
}
.site-header-inner .toggle-navigation {
display: none;
background-image: url("https://template-assets.tebex.io/images/burger.svg");
}
.site-header-inner .log-in,
.site-header-inner .user-actions {
position: absolute;
right: 0;
}
.site-header-inner .user-actions {
display: flex;
gap: var(--widget-padding);
}
/* .site-header-inner .open-basket::before {
mask-image: url("https://template-assets.tebex.io/images/checkout.svg");
} */
.site-header-inner .user-name {
position: relative;
text-align: center;
justify-content: center;
}
.site-header-inner .user-name::before {
mask-image: url("https://template-assets.tebex.io/images/user.svg");
}
.site-header-inner .site-title {
position: absolute;
inset: calc(var(--widget-padding) + 46px) 280px 0 280px;
margin: auto;
width: fit-content;
height: fit-content;
line-height: 72px;
font-size: 60px;
font-weight: 900;
text-align: center;
}
.site-header-inner .site-title img {
margin: 0 auto;
max-width: 100%;
max-height: 128px;
}
.site-header-inner .info {
position: absolute;
top: calc(var(--widget-padding) + 46px);
left: 0;
bottom: 0;
margin: auto 0;
max-width: 280px;
width: 33.3333333333%;
height: fit-content;
line-height: 22px;
}
.site-header-inner .info.server {
padding-left: 64px;
}
.site-header-inner .info.discord {
right: 0;
left: auto;
padding-right: 82px;
text-align: right;
}
.site-header-inner .info .image {
position: absolute;
top: -50px;
left: 0;
bottom: -50px;
margin: auto 0;
width: 46px;
height: 46px;
object-fit: contain;
}
.site-header-inner .info.discord .image {
left: auto;
right: 0;
width: 64px;
height: 64px;
}
.site-header-inner .info .title {
display: block;
line-height: 28px;
color: var(--color-text);
font-size: 18px;
font-weight: 600;
}
.site-header-inner .info .action {
display: block;
color: var(--color-primary2);
font-size: 16px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
transition: color 0.15s ease-in-out;
cursor: pointer;
}
.site-header-inner .info:hover .action {
color: var(--color-primary2-hover);
}
.site-header-inner .info .value {
width: fit-content;
border: 1px solid #606060;
padding: 0 6px;
background: rgba(96, 96, 96, 0.5);
color: #CCC;
font-size: 16px;
}
}

.visually-hidden{
    display: none;
}

.site-sale-banner {
margin-top: var(--widget-padding);
margin-bottom: var(--widget-padding);
padding: var(--widget-padding) var(--content-padding);
color: var(--color-sale-banner-text);
background: var(--color-sale-banner-bg);
font-size: 21px;
text-align: center;
}

.site-footer {
display: flex;
justify-self: center;
align-self: flex-end;
background: var(--color-brighter-bg);
width: 100%;
}

.site-home-categories {
display: flex;
flex-direction: column;
gap: var(--widget-padding);
}
@media (width > 600px) {
.site-home-categories {
flex-direction: row;
justify-content: center;
gap: var(--widget-padding) 36px;
}
}
.site-home-categories .category {
display: flex;
align-items: center;
gap: var(--widget-padding);
flex-basis: 100%;
line-height: 26px;
font-size: 24px;
font-weight: 700;
}
@media (width <= 600px) {
.site-home-categories .category {
width: 100%;
}
}
@media (width > 600px) {
.site-home-categories .category {
flex-direction: column;
align-items: center;
gap: var(--widget-padding);
max-width: 240px;
text-align: center;
}
}
.site-home-categories .category img {
max-width: 130px;
}
@media (width > 600px) {
.site-home-categories .category img {
margin: auto;
max-width: 100%;
}
}

.store-text {
padding: var(--content-padding);
line-height: 1.375;
font-size: 16px;
font-weight: 400;
opacity: 0 !important;
}

.store-form {
font-size: 18px;
}
.store-form h1,
.store-form h2,
.store-form h3,
.store-form h4,
.store-form h5,
.store-form h6,
.store-form p {
margin-bottom: 24px;
}
.store-form .input-group,
.store-form .field,
.store-form .field-inline {
margin-bottom: 24px;
}
.store-form .input-group > p,
.store-form .field > p,
.store-form .field-inline > p {
margin-bottom: 12px;
}
.store-form .field-inline {
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: 0 12px;
}
@media (width > 600px) {
.store-form .field-inline {
gap: 0 24px;
}
}
.store-form input,
.store-form select,
.store-form textarea {
display: block;
}
.store-form input[type=text],
.store-form input[type=password],
.store-form input[type=email],
.store-form input[type=number],
.store-form input[type=search],
.store-form input[type=url],
.store-form input[type=tel],
.store-form input[type=date],
.store-form input[type=time],
.store-form input[type=datetime-local],
.store-form input[type=file],
.store-form input[type=month],
.store-form input[type=week],
.store-form select,
.store-form textarea {
margin-bottom: 12px;
width: 100%;
padding: 14px 12px;
color: var(--color-text-secondary);
background: var(--color-bg);
font-size: 14px;
}
.popup .store-form input[type=text],
.popup .store-form input[type=password],
.popup .store-form input[type=email],
.popup .store-form input[type=number],
.popup .store-form input[type=search],
.popup .store-form input[type=url],
.popup .store-form input[type=tel],
.popup .store-form input[type=date],
.popup .store-form input[type=time],
.popup .store-form input[type=datetime-local],
.popup .store-form input[type=file],
.popup .store-form input[type=month],
.popup .store-form input[type=week],
.popup .store-form select,
.popup .store-form textarea {
background: #242424;
}
.popup.drawer .store-form input[type=text],
.popup.drawer .store-form input[type=password],
.popup.drawer .store-form input[type=email],
.popup.drawer .store-form input[type=number],
.popup.drawer .store-form input[type=search],
.popup.drawer .store-form input[type=url],
.popup.drawer .store-form input[type=tel],
.popup.drawer .store-form input[type=date],
.popup.drawer .store-form input[type=time],
.popup.drawer .store-form input[type=datetime-local],
.popup.drawer .store-form input[type=file],
.popup.drawer .store-form input[type=month],
.popup.drawer .store-form input[type=week],
.popup.drawer .store-form select,
.popup.drawer .store-form textarea {
user-select: auto;
}
@media (width > 960px) {
.store-form input[type=text],
.store-form input[type=password],
.store-form input[type=email],
.store-form input[type=number],
.store-form input[type=search],
.store-form input[type=url],
.store-form input[type=tel],
.store-form input[type=date],
.store-form input[type=time],
.store-form input[type=datetime-local],
.store-form input[type=file],
.store-form input[type=month],
.store-form input[type=week],
.store-form select,
.store-form textarea {
padding: 12px;
font-size: 16px;
}
}
.store-form .field-inline input,
.store-form .field-inline select,
.store-form .field-inline textarea {
width: auto;
}
.store-form .actions {
display: flex;
justify-content: center;
gap: 12px;
}
.store-form .actions .link-text {
align-self: center;
font-size: 18px;
font-weight: 700;
margin: 0 16px;
}

@media (width <= 960px) {
.site-content-widgets {
display: flex;
flex-direction: column;
gap: 24px;
}
}
@media (width > 960px) {
.site-content-widgets {
display: grid;
grid-template-columns: var(--sidebar-width) 1fr;
align-items: start;
gap: 48px;
}
body.is-sidebar-right .site-content-widgets {
grid-template-columns: 1fr var(--sidebar-width);
}
.site-content-widgets .store-sidebar {
order: -1;
}
body.is-sidebar-right .site-content-widgets .store-sidebar {
order: 1;
}
}

.category-description {
margin-bottom: var(--widget-padding);
padding: var(--widget-padding);
line-height: 1.4;
font-size: 18px;
}

.no-products {
padding: var(--widget-padding);
font-size: 18px;
text-align: center;
}

.store-products-list {
display: flex;
flex-direction: column;
gap: calc(var(--widget-padding) / 2);
}

.store-products-images {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 24px 36px;
}

.store-product {
display: flex;
flex-direction: column;
gap: 12px;
padding: var(--widget-padding);
}

.store-product .image{
transition: 0.25s ease;
}

/* .store-product:hover .image{
transform: scale(1.03);
} */

.store-product .product-title {
font-size: 20px;
font-weight: 600;
}
.store-product .product-title a {
color: inherit;
transition: color 0.15s ease-in-out;
}
.store-product .product-title a:hover {
color: var(--color-primary2);
}
.store-product .product-title .countdown {
display: block;
margin-top: 4px;
color: var(--color-removed);
font-size: 0.75em;
font-variant-numeric: tabular-nums;
}
.store-product .product-title .countdown::before {
content: "";
display: inline-block;
vertical-align: -0.15em;
margin-right: 0.25em;
width: 1em;
height: 1em;
background-color: currentColor;
mask: url("https://template-assets.tebex.io/images/countdown.svg") center center/contain no-repeat;
}
.store-product .image-link {
display: block;
margin: 0 auto;
max-width: 100%;
width: fit-content;

}

.store-product .image-link .image {
display: flex;
position: relative;
border-top-left-radius: 17px;
border-top-right-radius: 17px;
}



.store-product .image-link:hover ~ .product-title a {
color: var(--color-primary2);
}
.store-product .image {
margin: 0 auto;
max-width: 100%;
}
.store-product .descr {
color: var(--color-text-secondary);
}
.store-product .actions {
display: flex;
gap: 12px;
position: relative;
overflow: hidden;
}
/* .store-product .actions.updating {
pointer-events: none;
}
.store-product .actions.updating > * {
opacity: 0.3;
filter: grayscale(100%);
} */
/* .store-product .actions.updating::before {
content: "";
display: block;
position: absolute;
inset: 0;
z-index: 10;
margin: auto;
width: 30px;
height: 30px;
background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
background-size: contain;
} */
.store-product:not(.store-product-full) .actions {
flex-wrap: wrap;
}
.store-products-images .store-product:not(.store-product-full) .actions {
flex: 1 1 auto;
align-content: flex-end;
}
.store-product .price {
font-size: 14px;
}
.store-product .price .discount {
margin-right: 1ch;
color: var(--color-removed);
font-weight: 400;
text-decoration-line: line-through;
}
.store-product .price strong {
font-size: 20px;
font-weight: inherit;
}
.store-product:not(.store-product-full) .price {
width: 100%;
}
.store-products-images .store-product:not(.store-product-full) .price {
margin-bottom: auto;
}
.store-product .quantity-field {
height: 46px;
}
.store-product .half {
flex: 0 1 calc(50% - 6px);
}
.store-product .wide {
flex: 1 1 auto;
}
.store-product .gift {
flex: none;
background-image: url("https://template-assets.tebex.io/images/gift.svg");
}
.store-product .remove {
flex: none;
background-image: url("https://template-assets.tebex.io/images/delete.svg");
}

.store-products-images .store-product .image-link {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: auto;
}

.store-products-list .store-product {
padding: calc(var(--widget-padding) * 0.75);
}
.store-products-list .store-product .image {
width: 60px;
}
.store-products-list .store-product .actions {
flex-wrap: nowrap;
align-items: center;
}
.store-products-list .store-product .wide {
flex: 0 1 auto;
}
.store-products-list .store-product .price {
width: auto;
}
@media (width <= 600px) {
.store-products-list .store-product .wide {
width: 100%;
}
}
@media (width > 600px) {
.store-products-list .store-product {
flex-direction: row;
align-items: center;
gap: 12px calc(var(--widget-padding) * 0.75);
}
.store-products-list .store-product .actions {
gap: calc(var(--widget-padding) * 0.75);
}
.store-products-list .store-product .actions .wide {
width: 170px;
}
.store-products-list .store-product .image-link {
margin: 0;
}
.store-products-list .store-product .product-title {
margin-right: auto;
}
}

.media-slider {
--slider-spacing: 6px;
--thumbs-size: 40px;
--thumb-padding: 6px;
position: relative;
width: 100%;
overflow: hidden;
}
@media (width > 360px) {
.media-slider {
--slider-spacing: 12px;
--thumbs-size: 55px;
}
}
@media (width > 600px) {
.media-slider {
--thumbs-size: 70px;
}
}
@media (width > 960px) {
.media-slider {
--thumbs-size: 90px;
}
}
@media (width > 1400px) {
.media-slider {
--thumbs-size: 110px;
}
}
.media-slider .slider {
width: 100%;
min-height: 200px;
overflow: hidden;
margin-bottom: var(--slider-spacing);
}
.media-slider .slider::part(container) {
--swiper-navigation-size: 24px;
--swiper-theme-color: var(--color-text);
}
.media-slider .slider::part(wrapper) {
align-items: center;
}
.media-slider .slide {
align-content: center;
}
.media-slider .slide-image {
margin: auto;
max-width: 100%;
min-height: 200px;
max-height: 100%;
object-fit: contain;
border-radius: 20px;
}
.media-slider .slide-frame {
display: block;
margin: auto;
width: 100%;
max-height: 100%;
aspect-ratio: 16/9;
}
.media-slider .thumbs {
display: flex;
gap: var(--slider-spacing);
align-items: stretch;
justify-content: center;
flex-wrap: wrap;
}
.media-slider .thumb {
display: flex;
width: 90px;
height: fit-content;
cursor: pointer;
}
.media-slider .thumb-image,
.media-slider .thumb-youtube {
width: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
height: fit-content;
transition: opacity 0.3s ease-in-out;
}
.media-slider .thumb:not(.active) .thumb-image,
.media-slider .thumb:not(.active) .thumb-youtube {
opacity: 0.5;
}
.media-slider .thumb-image {
object-fit: contain;
overflow: hidden;
border-radius: 10px;
}
.media-slider .thumb-youtube {
position: relative;
align-content: center;
}
.media-slider .thumb-youtube img {
width: 100%;
height: 100%;
object-fit: contain;
}
.media-slider .thumb-youtube::after {
content: "";
display: block;
position: absolute;
inset: 0;
margin: auto;
width: 30px;
height: 30px;
background-color: var(--color-text);
mask: url("https://template-assets.tebex.io/images/play.svg") center center/contain no-repeat;
}
.media-slider .open-lightbox {
position: absolute;
right: 10px;
bottom: 70px;
z-index: 2;
align-content: center;
width: 40px;
height: 40px;
backdrop-filter: blur(5px);
visibility: hidden;
line-height: 0;
font-size: 0;
color: transparent;
opacity: 0;
transition: all 0.15s ease-in-out;
}
.media-slider .open-lightbox:hover, .media-slider .open-lightbox:focus {
background-color: rgba(255, 255, 255, 0.1);
}
.media-slider .open-lightbox::before {
content: "";
display: block;
margin: auto;
width: 18px;
height: 18px;
flex: none;
background-color: var(--color-tertiary-text);
mask: url("https://template-assets.tebex.io/images/fullscreen.svg") center center/contain no-repeat;
transition: background-color 0.15s ease-in-out;
}
.media-slider .open-lightbox:hover::before, .media-slider .open-lightbox:focus::before {
background-color: var(--color-tertiary-text-hover);
}
.media-slider .slider:has(.swiper-slide-active .slide-image):hover ~ .open-lightbox,
.media-slider .open-lightbox:hover {
opacity: 1;
visibility: visible;
}

.popup.popup-media-slider {
--slider-spacing: 6px;
--thumbs-size: 40px;
--thumb-padding: 6px;
display: grid;
grid-template-columns: 100%;
grid-template-rows: minmax(0, auto) calc(var(--thumbs-size) + var(--slider-spacing));
overflow: hidden;
backdrop-filter: blur(10px);
}
@media (width > 360px) {
.popup.popup-media-slider {
--slider-spacing: 12px;
--thumbs-size: 70px;
}
}
@media (width > 600px) {
.popup.popup-media-slider {
--thumbs-size: 70px;
}
}
@media (width > 960px) {
.popup.popup-media-slider {
--thumbs-size: 90px;
}
}
@media (width > 1400px) {
.popup.popup-media-slider {
--thumbs-size: 120px;
}
}
.popup.popup-media-slider .popup-close {
top: var(--slider-spacing);
right: var(--slider-spacing);
z-index: 2;
backdrop-filter: blur(5px);
}
.popup.popup-media-slider .slider {
width: 100%;
}
.popup.popup-media-slider .slider::part(container) {
--swiper-navigation-size: 30px;
--swiper-theme-color: var(--color-text);
}
@media (width > 600px) {
.popup.popup-media-slider .slider::part(container) {
--swiper-navigation-size: 36px;
}
}
.popup.popup-media-slider .slider::part(wrapper) {
align-items: center;
}
.popup.popup-media-slider .slide {
align-content: center;
padding: var(--slider-spacing);
}
.popup.popup-media-slider .slide-image {
margin: auto;
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.popup.popup-media-slider .slide-frame {
display: block;
margin: auto;
width: 100%;
max-height: 100%;
aspect-ratio: 16/9;
}
.popup.popup-media-slider .thumbs {
display: flex;
gap: var(--slider-spacing);
align-items: stretch;
flex-wrap: wrap;
padding: 0 var(--slider-spacing) var(--slider-spacing);
}
.popup.popup-media-slider .thumb {
display: block;
width: var(--thumbs-size);
height: var(--thumbs-size);
padding: var(--thumb-padding);
background-color: rgb(from var(--color-bg) r g b/0.7);
cursor: pointer;
}
.popup.popup-media-slider .thumb-image,
.popup.popup-media-slider .thumb-youtube {
width: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
height: calc(var(--thumbs-size) - var(--thumb-padding) * 2);
transition: opacity 0.3s ease-in-out;
}
.popup.popup-media-slider .thumb:not(.active) .thumb-image,
.popup.popup-media-slider .thumb:not(.active) .thumb-youtube {
opacity: 0.5;
}
.popup.popup-media-slider .thumb-image {
object-fit: contain;
}
.popup.popup-media-slider .thumb-youtube {
position: relative;
align-content: center;
}
.popup.popup-media-slider .thumb-youtube img {
width: 100%;
height: 100%;
object-fit: contain;
}
.popup.popup-media-slider .thumb-youtube::after {
content: "";
display: block;
position: absolute;
inset: 0;
margin: auto;
width: 36px;
height: 36px;
background-color: var(--color-text);
mask: url("https://template-assets.tebex.io/images/play.svg") center center/contain no-repeat;
}

.store-product-full {
display: grid;
gap: var(--widget-padding);
}
.store-product-full, .store-product-full.popup-content {
padding-bottom: 0;
}
.store-product-full .product-title {
font-size: 30px;
}
.store-product-full .image {
max-width: 100%;
}
.store-product-full .actions {
position: sticky !important;
bottom: 0;
z-index: 2;
align-items: center;
order: 1;
margin: 0 calc(var(--widget-padding) * -1);
padding: var(--widget-padding);
background-color: rgb(from var(--color-brighter-bg) r g b/0.65);
backdrop-filter: blur(5px);
}
.store-product-full .actions .half,
.store-product-full .actions .wide {
flex: 0 1 240px;
}
.store-product-full .price {
margin-right: auto;
}

.store-product-options .product-title {
margin-bottom: 12px;
font-size: 20px;
font-weight: 600;
}
.store-product-options .actions {
position: sticky !important;
bottom: var(--widget-padding);
justify-content: start;
width: fit-content;
max-width: 100%;
}
/* .store-product-options .actions.updating {
pointer-events: none;
}
.store-product-options .actions.updating > * {
opacity: 0.3;
filter: grayscale(100%);
}
.store-product-options .actions.updating::before {
content: "";
display: block;
position: absolute;
inset: 0;
z-index: 10;
margin: auto;
width: 30px;
height: 30px;
background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
background-size: contain;
} */
.store-product-options .actions .btn-primary,
.store-product-options .actions .btn-secondary,
.store-product-options .actions .btn-tertiary {
width: 230px;
}
.store-product-options .actions-multiple {
width: auto;
}
.store-product-options .actions-multiple .btn-primary,
.store-product-options .actions-multiple .btn-secondary,
.store-product-options .actions-multiple .btn-tertiary {
width: auto;
flex: 1 1 auto;
}

.site-navigation {
--fade-duration: 200ms;
view-transition-name: siteNavigation;
}
@media (width <= 960px) {
.site-navigation {
position: fixed;
inset: 0;
z-index: 100000;
padding: 0;
transition: display var(--fade-duration) allow-discrete, opacity var(--fade-duration) ease;
}
@starting-style {
.site-navigation {
opacity: 0;
}
}
body:not(.show-navigation) .site-navigation {
visibility: hidden;
opacity: 0;
}
.site-navigation.drawer {
user-select: none;
}
.site-navigation .close-navigation {
position: absolute;
top: 12px;
right: 72px;
background-image: url("https://template-assets.tebex.io/images/close.svg");
background-size: 24px;
}
.site-navigation .menu {
display: flex;
flex-direction: column;
position: absolute;
inset: 0 60px 0 0;
padding: 72px var(--widget-padding) var(--widget-padding);
background: var(--color-bg);
line-height: 24px;
color: var(--color-text-secondary);
font-size: 18px;
overflow: hidden auto;
scrollbar-width: thin;
scrollbar-color: var(--color-secondary) var(--color-bg);
transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease, translate var(--fade-duration) ease;
}
@starting-style {
.site-navigation .menu {
translate: -100% 0;
}
}
.site-navigation.drawer .menu::after {
content: "";
display: block;
position: absolute;
top: 0;
right: 7px;
bottom: 0;
margin-block: auto;
width: 4px;
height: 100px;
background: rgb(from var(--color-text-secondary) r g b/0.33);
border-radius: 2px;
pointer-events: none;
}
body:not(.show-navigation) .site-navigation .menu {
translate: -100% 0;
}
.site-navigation.touching .menu {
transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
}
body:not(.show-navigation) .site-navigation .menu {
opacity: 0.8;
scale: 0.95;
}
.site-navigation.may-close .menu {
opacity: 0.8;
}
.site-navigation ul ul {
padding-left: var(--widget-padding);
line-height: 22px;
font-size: 16px;
}
.site-navigation li {
position: relative;
width: 100%;
}
.site-navigation .log-out {
margin-top: auto;
}
.site-navigation .log-out a {
display: flex;
align-items: center;
gap: 8px;
}
.site-navigation .log-out a::before {
content: "";
display: block;
width: 24px;
height: 24px;
background-color: currentColor;
mask: url("https://template-assets.tebex.io/images/log-out.svg") center center no-repeat;
mask-size: contain;
}
.site-navigation .has-children {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.site-navigation .has-children > a {
flex: 1 1 auto;
}
.site-navigation .has-children .toggle {
background-image: url("https://template-assets.tebex.io/images/chevron.svg");
background-size: 20px;
transition: rotate 0.15s ease-in-out;
}
.site-navigation .has-children.expanded > .toggle {
rotate: 180deg;
}
.site-navigation .has-children > ul {
width: 100%;
}
.site-navigation .has-children:not(.expanded) > ul {
display: none;
}
.site-navigation a {
display: block;
padding: 11px 0;
transition: color 0.15s ease-in-out;
}
.site-navigation a:hover {
color: var(--color-primary2);
}
.site-navigation a.active {
color: var(--color-primary2);
font-weight: 700;
}
.site-navigation ul ul a {
padding: 8px 0;
}
}

@media (width > 960px) {
/* .site-navigation {
display: none;
--fade-duration: 200ms;
view-transition-name: siteNavigation;
} */
.navigation-horizontal .close-navigation {
display: none;
}
.navigation-horizontal .menu {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: calc(var(--widget-padding) / 2);
line-height: 28px;
background: var(--color-brighter-bg);
font-size: 18px;
font-weight: 700;
}
.navigation-horizontal .menu > li > a {
padding: 14px calc(var(--widget-padding) / 2);
}
.navigation-horizontal .menu > li.has-children > a {
padding-right: 0;
}
.navigation-horizontal ul ul {
line-height: 24px;
font-size: 16px;
font-weight: 400;
}
.navigation-horizontal > ul > li > a {
display: block;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
max-width: 18ch;
}
.navigation-horizontal .has-children {
position: relative;
display: flex;
align-items: center;
gap: 8px;
}
.navigation-horizontal .has-children .toggle {
flex: none;
width: 28px;
height: 28px;
background-color: transparent;
background-image: url("https://template-assets.tebex.io/images/chevron.svg");
background-size: 20px;
transition: rotate 0.15s ease-in-out;
}
.navigation-horizontal .has-children:hover > .toggle {
rotate: 180deg;
}
.navigation-horizontal .has-children > ul {
position: absolute;
top: calc(100% - var(--widget-padding) / 2);
left: 0;
width: max-content;
padding: calc(var(--widget-padding) / 2) 0;
background: rgb(from var(--color-brighter-bg) r g b/0.7);
backdrop-filter: blur(10px);
transition: all 0.15s ease-in-out;
}
.navigation-horizontal .has-children:not(:hover) > ul {
visibility: hidden;
opacity: 0;
translate: 0 -10px;
}
.navigation-horizontal a {
display: block;
transition: color 0.15s ease-in-out;
}
.navigation-horizontal a:hover, .navigation-horizontal a.link-active {
color: var(--color-primary2);
}
.navigation-horizontal li li a {
width: 100%;
max-width: 24ch;
padding: 4px calc(var(--widget-padding) / 2);
transition: all 0.15s ease-in-out;
}
.navigation-horizontal li li a:hover, .navigation-horizontal li li a.link-active {
color: var(--color-bg);
background-color: var(--color-primary2);
}
}

@media (width > 960px) {
.navigation-vertical.widget {
padding: calc(var(--widget-padding) / 2);
}
.navigation-vertical .close-navigation {
display: none;
}
.navigation-vertical .menu {
line-height: 28px;
color: var(--color-text-secondary);
font-size: 18px;
font-weight: 400;
}
.navigation-vertical ul ul {
padding-left: 12px;
line-height: 22px;
font-size: 15px;
}
.navigation-vertical .has-children {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.navigation-vertical .has-children > a {
flex: 1 1 auto;
max-width: calc(100% - 46px);
}
.navigation-vertical .has-children .toggle {
background-color: transparent !important;
background-image: url("https://template-assets.tebex.io/images/chevron.svg");
background-size: 20px;
transition: rotate 0.15s ease-in-out;
}
.navigation-vertical .has-children.expanded > .toggle {
rotate: 180deg;
}
.navigation-vertical .has-children > ul {
width: 100%;
}
.navigation-vertical .has-children:not(.expanded) > ul {
display: none;
}
.navigation-vertical a {
display: block;
padding: calc(var(--widget-padding) / 2);
transition: color 0.15s ease-in-out;
}
.navigation-vertical a:hover, .navigation-vertical a.link-active {
color: var(--color-primary2);
}
.navigation-vertical a.link-active {
font-weight: 600;
}
.navigation-vertical ul ul a {
padding: 8px calc(var(--widget-padding) / 2);
}
}

.widget {
padding: var(--widget-padding);
}
.widget + .widget {
margin-top: var(--widget-padding);
}

.widget-title {
margin-bottom: var(--widget-padding);
font-size: 20px;
font-weight: 700;
}

.widget-featured .store-product {
padding: 0;
text-align: center;
}

.widget-gift-card {
text-align: center;
}
.widget-gift-card .gift-card-input {
margin-bottom: 12px;
width: 100%;
padding: 14px 12px;
color: var(--color-text-secondary);
background: var(--color-bg);
font-size: 14px;
}
.popup .widget-gift-card .gift-card-input {
background: #242424;
}
.widget-gift-card .check {
width: 100%;
}

.widget-recent .purchase {
display: flex;
align-items: flex-start;
gap: 12px;
position: relative;
margin-bottom: 6px;
line-height: 1.4;
}
.widget-recent .avatar {
flex: none;
max-width: 40px;
max-height: 40px;
object-fit: contain;
}
.widget-recent .username {
font-weight: 700;
}
.widget-recent .empty {
text-align: center;
}
.widget-recent time {
opacity: 0.5;
font-size: 0.9em;
}
.widget-recent .sep {
margin: 0 0.3em;
}

.widget-top-donator .avatar {
margin: 0 auto 12px;
width: 96px;
}
.widget-top-donator .username {
margin-bottom: 6px;
font-weight: 700;
font-size: 18px;
}
.widget-top-donator .empty {
text-align: center;
}

.widget-community-goal .widget-content,
.widget-goal .widget-content {
text-align: center;
}
.widget-community-goal p:not(:last-child),
.widget-goal p:not(:last-child) {
margin-bottom: 12px;
}
.widget-community-goal .progress,
.widget-goal .progress {
height: 12px;
margin-bottom: 12px;
overflow: hidden;
background: var(--color-bg);
}
@keyframes progressBarAnimation {
to {
background-position: 100% 0;
}
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
height: 12px;
background: var(--color-primary2);
}
.widget-community-goal .progress-bar.striped,
.widget-goal .progress-bar.striped {
background: var(--color-primary2) linear-gradient(135deg, var(--color-primary2) 0%, var(--color-primary2) 33%, rgb(from var(--color-primary2-hover) r g b/0.35) 33%, rgb(from var(--color-primary2-hover) r g b/0.35) 66%, var(--color-primary2) 66%, var(--color-primary2) 100%) repeat;
background-size: 24px 100%;
}
.widget-community-goal .progress-bar.striped.animated,
.widget-goal .progress-bar.striped.animated {
animation: progressBarAnimation 10s infinite linear;
}

.widget-community-goal .goal-image {
margin: 0 auto 12px;
max-width: 96px;
}
.widget-community-goal .descr {
margin-bottom: 12px;
}

.widget-server-status .widget-content {
text-align: center;
}
.widget-server-status h6 {
margin-bottom: 12px;
}

.site-footer-inner {
position: relative;
padding: 20px var(--content-padding);
}
@media (width <= 960px) {
.site-footer-inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: var(--widget-padding);
}
}
.site-footer-inner .site-footer-nav {
line-height: 150%;
font-size: 14px;
}
@media (width > 960px) {
.site-footer-inner .site-footer-nav {
margin-bottom: 12px;
}
}
.site-footer-inner .site-footer-nav ul {
display: flex;
}
@media (width <= 960px) {
.site-footer-inner .site-footer-nav ul {
flex-direction: column;
gap: var(--widget-padding);
text-align: center;
}
}
@media (width > 960px) {
.site-footer-inner .site-footer-nav ul {
gap: calc(var(--widget-padding) * 2);
}
}
.site-footer-inner .site-footer-nav a {
color: var(--color-text-darker);
text-decoration-line: underline;
text-underline-offset: 2px;
transition: color 0.15s ease-in-out;
}
.site-footer-inner .site-footer-nav a:hover {
color: var(--color-primary2);
}
.site-footer-inner .copyright {
line-height: 16px;
color: var(--color-text-secondary);
font-size: 12px;
}
.site-footer-inner .we-accept {
display: none;
align-items: center;
gap: 12px;
}
@media (width > 960px) {
.site-footer-inner .we-accept {
position: absolute;
top: 0;
right: var(--content-padding);
bottom: 0;
pointer-events: none;
}
}
.site-footer-inner .we-accept li {
display: block;
}
.site-footer-inner .we-accept img {
display: block;
max-width: 57px;
max-height: 26px;
}

.site-footer-credit {
color: var(--color-text-secondary);
background: #101010;
font-size: 11px;
}
.site-footer-credit .site-footer-credit-inner {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-direction: column;
gap: 22px;
margin: auto;
padding-top: 16px;
padding-bottom: 16px;
min-height: 45px;
}
@media (width > 960px) {
.site-footer-credit .site-footer-credit-inner {
align-items: center;
flex-direction: row;
}
}
.site-footer-credit .copyright {
display: flex;
align-items: flex-start;
gap: 22px;
}
@media (width > 960px) {
.site-footer-credit .copyright {
align-items: center;
}
}
.site-footer-credit .copyright .tebex-logo-link {
flex: none;
}
.site-footer-credit .legal {
display: flex;
gap: 16px;
white-space: nowrap;
}
@media (width > 960px) {
.site-footer-credit .legal {
gap: 20px;
}
}
.site-footer-credit .legal a {
text-decoration: underline;
text-underline-offset: 2px;
transition: color 0.15s ease-in-out;
}
.site-footer-credit .legal a:hover {
color: var(--color-primary2);
}

.popup {
--fade-duration: 300ms;
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 100vw;
z-index: 1000;
overflow: hidden scroll;
scrollbar-width: thin;
scrollbar-color: var(--color-secondary) transparent;
/* background-color: rgba(0, 0, 0, 0.1); */
/* transition: background-color var(--fade-duration) ease, opacity var(--fade-duration) ease-in-out, display var(--fade-duration) allow-discrete; */
}
@starting-style {
.popup {
opacity: 0;
}
}
.popup.drawer {
user-select: none;
}
.popup.may-close {
user-select: none;
background-color: rgba(0, 0, 0, 0.4);
}
.popup[hidden] {
opacity: 0;
display: none;
}

.popup-scroll-cont {
display: flex;
align-items: center;
justify-content: center;
min-height: 100%;
padding: calc(var(--content-padding) / 2);
overscroll-behavior: none;
}
@media (width > 600px) {
.popup-scroll-cont {
padding: var(--content-padding);
}
}
@media (pointer: coarse) {
.popup .popup-scroll-cont {
align-items: center;
padding-bottom: 0;
}
}

.popup-content {
position: relative;
display: flex;
width: 100%;
/* padding-left: 120px;
padding-right: 120px; */
max-width: 550px;
padding: var(--widget-padding);
background: rgb(18,24,32,0.3);
transition:  0.25s ease;
border-radius: 20px !important;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 10px;
backdrop-filter: blur(20px);
box-shadow:  0 0 5px rgb(0,0,0,0.25);
border: 1px solid rgb(255,255,255,0.1);
}
@starting-style {
.popup-content {
transform: scale(0.9);
backdrop-filter: blur(30px);
opacity: 0;
}
}
/* @media (pointer: coarse) {
.popup-content {
padding-bottom: calc(var(--widget-padding) * 2);
}
} */
/* .popup.touching .popup-content {
transition: opacity var(--fade-duration) ease, scale var(--fade-duration) ease;
} */
/* .popup.may-close .popup-content, .popup.drawer[hidden] .popup-content {
opacity: 0.8;
scale: 0.95;
} */
/* .popup.drawer-up[hidden] .popup-content {
translate: 0 -100%;
}
.popup.drawer-down[hidden] .popup-content {
translate: 0 100%;
}
.popup.drawer-right[hidden] .popup-content {
translate: 100% 0;
}
.popup.drawer-left[hidden] .popup-content {
translate: -100% 0;
}
.popup:not(.drawer)[hidden] .popup-content {
translate: 0 20px;
} */
.popup.popup-loading .popup-content {
min-height: 180px;
}
.popup.popup-loading .popup-content::before {
content: "";
display: block;
position: absolute;
inset: 0;
margin: auto;
width: 38px;
height: 38px;
background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
background-size: contain;
}
.drawer-up .popup-content::after, .drawer-down .popup-content::after, .drawer-left .popup-content::after, .drawer-right .popup-content::after {
content: "";
display: block;
position: absolute;
background: rgb(from var(--color-text-secondary) r g b/0.33);
border-radius: 2px;
pointer-events: none;
}
.drawer-up .popup-content::after, .drawer-down .popup-content::after {
left: 0;
right: 0;
margin-inline: auto;
height: 4px;
width: 100px;
}
.drawer-up .popup-content::after {
bottom: 7px;
}
.drawer-down .popup-content::after {
top: 7px;
}
.drawer-left .popup-content::after, .drawer-right .popup-content::after {
top: 0;
bottom: 0;
margin-block: auto;
width: 4px;
height: 100px;
}
.drawer-left .popup-content::after {
right: 7px;
}
.drawer-right .popup-content::after {
left: 7px;
}

.popup-close {
position: absolute;
top: 0;
right: 0;
width: 40px;
height: 40px;
background: url("https://template-assets.tebex.io/images/close.svg") center center no-repeat;
background-size: 20px;
opacity: 0.5;
line-height: 0;
font-size: 0;
color: transparent;
transition: all 0.15s ease-in-out;
}
@media (width <= 600px) {
.popup-close {
width: 50px;
height: 50px;
background-size: 24px;
}
}
.popup-close:hover {
opacity: 1;
}

.store-product-popup-content {
max-width: 800px;
}

.product-options-popup .popup-content {
max-width: 480px;
}

.gift-form-popup .popup-content h1, .gift-form-popup .popup-content h2, .gift-form-popup .popup-content h3, .gift-form-popup .popup-content h4, .gift-form-popup .popup-content h5, .gift-form-popup .popup-content h6 {
margin-bottom: 12px;
font-family: 'Poppins', sans-serif;
}

.popup-content h2{
font-size:  18px;
font-weight: 600;
color: rgb(255,255,255);
font-family: 'Poppins', sans-serif;
}

.popup-content p{
display: flex;
font-size:  12px;
font-weight: 500;
color: rgb(255,255,255,0.9);
font-family: 'Poppins', sans-serif;
text-align: center;
align-items: center;
justify-content: center;
gap: 10px;
}
.popup-content .desc{
display: flex;
font-size:  17px;
font-weight: 500;
color: rgb(255,255,255,0.9);
font-family: 'Poppins', sans-serif;
text-align: center;
align-items: center;
justify-content: center;
gap: 15px;
}

.popup-content .desc i{
display: flex;
width: 50px;
height: 50px;
color: rgb(0,214,203);
text-shadow:  0 0 20px rgb(0,214,203,0.2);
align-items: center;
justify-content: center;
text-align: center;
background-color: rgb(255,255,255,0.05);
border-radius: 10px;
font-size:  25px;
}


.popup-content .btn-primary {
all: unset;
display: flex;
padding: 10px;
padding-left: 45px;
padding-right: 45px;
color: rgb(0,0,0,0.7);
font-weight: 600;
font-family: 'Poppins', sans-serif;
font-size: 15px;
border-radius: 5px;
background-color: rgb(0,214,203);
box-shadow:  0 0 20px rgb(0,214,203,0.15);
align-items: center !important;
justify-content: center !important;
text-align: center !important;
cursor: pointer;
}

.popup-content .actions {
all: unset;
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
gap: 10px;
}
.popup-content .actions .btn-secondary {
all: unset;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: rgb(255,255,255,0.7);
font-weight: 400;
font-family: 'Poppins', sans-serif;
font-size: 15px;
border-radius: 5px;
/* background-color: rgb(255,255,255,1); */
/* box-shadow:  0 0 20px rgb(255,255,255,0.15); */
background-color: rgb(255,255,255,0.03);
border: 1px solid rgb(255,255,255,0.05);
padding: 10px;
padding-left: 45px;
padding-right: 45px;
align-items: center !important;
justify-content: center !important;
text-align: center !important;
cursor: pointer;
}
.popup-content input {
all: unset;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: rgb(255,255,255,0.7);
font-weight: 400;
font-family: 'Poppins', sans-serif;
font-size: 12px !important;
border-radius: 8px;
border: 1px solid rgb(255,255,255,0.05);
background: rgb(255,255,255,0.03) !important;
width: 70% !important;
}
.gift-form-popup .popup-content .actions {
position: relative;
width: fit-content;
max-width: 100%;
}
.gift-form-popup .popup-content .actions.updating {
pointer-events: none;
}
.gift-form-popup .popup-content .actions.updating > * {
opacity: 0.3;
filter: grayscale(100%);
}
.gift-form-popup .popup-content .actions.updating::before {
content: "";
display: block;
position: absolute;
inset: 0;
z-index: 10;
margin: auto;
width: 30px;
height: 30px;
background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
background-size: contain;
}

.login-popup {
z-index: 1002;
}

.login-popup-content {
max-width: 480px;
padding-bottom: calc(var(--widget-padding) - 12px);
}

.basket {
position: relative;
z-index: 1001;
}
.site-content .basket {
display: none;
}
.basket .basket-empty {
margin: auto;
text-align: center;
font-size: 18px;
}
.basket .basket-header {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 50px var(--content-padding) 30px;
font-size: 22px;
font-weight: 600;
background: rgba(40, 40, 40, 0.5);
}
@media (width > 960px) {
.basket .basket-header {
padding-top: 70px;
}
}
.basket .basket-title {
display: flex;
align-items: center;
gap: 12px;
text-transform: uppercase;
}
.basket .basket-title::before {
content: "";
display: block;
width: 30px;
height: 30px;
background-color: var(--color-text);
mask: url("https://template-assets.tebex.io/images/user.svg") center center no-repeat;
mask-size: contain;
}
.basket .basket-second-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 15px var(--content-padding);
background: var(--color-brighter-bg);
background: rgb(from var(--color-brighter-bg) r g b/0.9);
font-size: 18px;
font-weight: 300;
text-align: center;
}
.basket .basket-second-header .total {
font-size: 14px;
}
.basket .basket-second-header .total strong {
font-size: 18px;
font-weight: inherit;
}
.basket .basket-second-header .currency {
display: flex;
align-items: center;
gap: 6px;
}
.basket .basket-second-header .currency::after {
content: "";
display: block;
width: 20px;
height: 20px;
background: url("https://template-assets.tebex.io/images/dropdown-arrow.svg") center center no-repeat;
}
.basket .basket-content {
flex: 1;
overflow-x: hidden;
overflow-y: auto;
}
.basket .basket-items {
display: flex;
flex-direction: column;
gap: 20px;
padding: var(--widget-padding);
}
.basket .basket-item {
display: flex;
width: 100%;
align-items: center;
gap: 12px;
padding: var(--widget-padding);
background: var(--color-brighter-bg);
}
.basket .basket-item .info {
margin-right: auto;
}
.basket .basket-item .options {
list-style-position: inside;
}
.basket .basket-item .options:has(li) {
padding: 5px 0;
}
.basket .basket-item .options li {
display: block;
padding: 1px 0;
}
.basket .basket-item .options li::before {
content: "";
display: inline-block;
margin-right: 0.4em;
width: 3px;
height: 3px;
vertical-align: middle;
background-color: currentColor;
border-radius: 50%;
}
.basket .basket-item .title {
font-size: 20px;
font-weight: 600;
}
.basket .basket-item .price {
color: var(--color-primary2);
font-size: 14px;
}
.basket .basket-item .price strong {
font-size: 18px;
font-weight: inherit;
}
.basket .basket-item .quantity-field {
height: 40px;
}
.basket .basket-item .remove {
width: 40px;
height: 40px;
}
.basket .basket-item .remove::before {
mask-image: url("https://template-assets.tebex.io/images/delete.svg");
}
.basket .basket-checkout {
margin-top: auto;
padding: 0 var(--content-padding) 50px;
}
@media (width > 960px) {
.basket .basket-checkout {
padding-bottom: 100px;
}
}
.basket .basket-checkout h3 {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: var(--widget-padding);
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
}
.basket .basket-checkout .total {
color: var(--color-primary2);
font-size: 16px;
font-weight: 400;
}
.basket .basket-checkout .total strong {
font-size: 24px;
font-weight: inherit;
}
.basket .basket-checkout .checkout {
width: 100%;
}

.basket-popup .popup-scroll-cont {
justify-content: flex-end;
padding: 0;
}

.basket-popup-content {
display: flex;
flex-direction: column;
align-items: stretch;
width: 100%;
max-width: 520px;
height: 100vh;
height: 100dvh;
padding: 0;
background: var(--color-bg);
transition: translate var(--fade-duration) ease-in-out;
}
@starting-style {
.basket-popup-content {
translate: 100% 0;
}
}
:root .basket-popup[hidden] .basket-popup-content {
translate: 100% 0;
}
.basket-popup-content.updating {
pointer-events: none;
}
.basket-popup-content.updating::before {
content: "";
display: block;
position: absolute;
inset: 0;
z-index: 10;
margin: auto;
width: 38px;
height: 38px;
background: url("https://template-assets.tebex.io/images/loading.svg") center center no-repeat;
background-size: contain;
}
.basket-popup-content.updating > * {
filter: grayscale(100%);
}

.toaster {
display: flex;
flex-direction: column-reverse;
gap: 12px;
position: fixed;
bottom: var(--widget-padding);
left: 0;
right: 0;
z-index: 10000;
margin: 0 auto;
padding: 0 var(--widget-padding);
width: 100%;
height: 100%;
max-width: 520px;
pointer-events: none;
}
.toaster:empty {
display: none;
}

.toast {
display: flex;
align-items: center;
gap: 12px;
width: 100%;
height: 50px;
padding: 0 8px 0 24px;
background: var(--color-brighter-bg);
font-size: 16px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
pointer-events: auto;
transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@starting-style {
.toast {
opacity: 0;
height: 0;
}
}
.toast[hidden] {
display: block;
opacity: 0;
height: 0;
}
.toast.toast-warning {
background: #cab600;
}
.toast.toast-error {
background: #C12E2E;
}
.toast.toast-success {
background: #4caf50;
}

.toast-close {
margin-left: auto;
flex: none;
width: 30px;
height: 30px;
background: url("https://template-assets.tebex.io/images/close.svg") center center/20px no-repeat;
opacity: 0.5;
line-height: 0;
font-size: 0;
color: transparent;
transition: opacity 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.toast-close:hover {
opacity: 1;
background-color: rgba(255, 255, 255, 0.1);
}

.store-category-tiered {
--gap: calc(var(--widget-padding) * .75);
padding: var(--widget-padding);
}

.store-category-tiered-header {
margin-bottom: var(--widget-padding);
font-size: 18px;
}
.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6,
.store-category-tiered-header p {
margin-bottom: 24px;
}

.store-products-tiered {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
gap: var(--gap);
}

.store-product-tiered {
--border-color: rgb(from var(--color-text) r g b / .1);
--primary-color: rgb(from var(--color-primary2) r g b / .25);
display: grid;
grid-row: span 4;
grid-template-rows: subgrid;
gap: var(--gap);
padding: var(--gap);
}
.store-product-tiered.store-product-cta {
background-image: linear-gradient(to bottom, transparent 67%, var(--primary-color));
}
.store-product-tiered .image {
margin: auto;
max-width: 100%;
object-fit: contain;
}
.store-product-tiered .product-title {
font-size: 20px;
font-weight: 600;
text-align: center;
}
.store-product-tiered .countdown {
display: block;
margin-top: 4px;
color: var(--color-removed);
font-size: 0.75em;
font-variant-numeric: tabular-nums;
}
.store-product-tiered .countdown::before {
content: "";
display: inline-block;
vertical-align: -0.15em;
margin-right: 0.25em;
width: 1em;
height: 1em;
background-color: currentColor;
mask: url("https://template-assets.tebex.io/images/countdown.svg") center center/contain no-repeat;
}
.store-product-tiered .descr {
padding-block: var(--gap);
border-block: 1px solid var(--border-color);
color: var(--color-text-secondary);
}
.store-product-tiered .price {
font-size: 14px;
text-align: center;
}
.store-product-tiered .price .discount {
margin-right: 1ch;
color: var(--color-removed);
font-weight: 400;
text-decoration-line: line-through;
}
.store-product-tiered .price strong {
font-size: 20px;
font-weight: inherit;
}
.store-product-tiered .actions {
gap: var(--gap);
}
.store-product-tiered .actions .wide {
width: 100%;
}

.store-quote {
padding: var(--widget-padding);
}
.store-quote .wide {
flex: 1 1 50%;
}

/* @media (width > 960px) { */
.main-home-page{
display: flex;
position: relative;
flex-direction: column;
align-items: center;
justify-content: flex-start;
gap: 30px;
width: 100%;
height:fit-content;
}

.main-home-page .title-container{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 20px;
font-family: 'Poppins', sans-serif;
}



.main-home-page .title-container .title {
display: flex;
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 70px;
background: linear-gradient(to left, rgb(146, 146, 146) 0%, rgba(255,255,255,1) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block; 
opacity: 0;
animation: title1 0.5s;
animation-fill-mode: both;
align-items: center;
justify-content: center;
text-align: center;
}
@keyframes title1 {
0%{
opacity: 0;
transform: translateX(-100px);
}
100%{
opacity: 1;
transform: none;
}
}


.main-home-page .title-container .title { animation-delay: 0.15s; }

.main-home-page .title-container .title .blue{
background: linear-gradient(to left, rgb(0, 143, 136) 0%, rgb(22, 255, 243) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
opacity: 1;
}




.main-home-page .title-container .subtitle{
display: flex;
font-family: 'Poppins', sans-serif;
font-weight: 300;
font-size: 15px;
color: rgb(255,255,2555);
opacity: 0.7;
max-width: 800px;
text-align: center;
animation: opacityOnly 0.5s ;
animation-fill-mode: both;
animation-delay: 0.45s;
opacity: 0;
}
@keyframes opacityOnly {
0%{
opacity: 0;
}
100%{
opacity: 1;
}
}

.main-home-page .eclipse {
position: absolute;
width: 150px;
height: 150px;
border-radius: 50%;
background-color: rgb(0,214,203);
filter: blur(100px);
z-index: -1;
opacity: 0;
animation: appear 0.5s ;
animation-fill-mode: forwards;
animation-play-state: paused;
animation-delay: 0.25s;
pointer-events: none;
user-select: none;
}

@keyframes appear {
0%{
opacity: 0;
}
100%{
opacity: 0.5;
}
}


.main-home-page .buttons-container{
position: relative;
display: flex;
width: 110px;
height: 60px;
background-color: rgb(255,255,255,0.05);
box-shadow: 0 0 5px rgb(0,0,0,0.2);
align-items: center;
justify-content: center;
justify-self: center;
border-radius: 20px;
gap: 10px;
animation: fromBottom 0.5s ;
animation-fill-mode: both;
animation-delay: 0.55s;
}


.main-home-page .buttons-container a{
display: flex;
align-items: center;
justify-content: center;
width: 35px;
height: 35px;
font-size: 17px;
color: rgb(0,0,0,0.7);
background-color: rgb(0,214,203);
border-radius: 50%;
transition: 0.25s ease;
}  
.main-home-page .buttons-container a:hover{
filter: brightness(0.8);
transform: scale(0.95);
}

.why-container{
display: flex;
position: relative;
width: 100%;
height: fit-content;
align-items: center;
justify-content: flex-start;
flex-direction: column;
gap: 50px;
padding-bottom: 90px;
}
.why-container .title-container{
display: flex;
flex-direction: column;
gap: 5px;
align-items: center;
justify-content: center;
animation: fromBottom 0.5s ;
animation-fill-mode: both;
opacity: 0;
animation-delay: 0.25s;
animation-play-state: paused;
}


.why-container .why-title{
display: flex;
align-items: center;
justify-content: center;
text-align: center;
border-radius: 50px;
font-family: 'Poppins';
color: rgb(255,255,255,0.9);
font-weight: 600;
font-size: 30px;
text-align: center;
}

.why-container .why-desc{
all: unset;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-family: 'Poppins';
color: rgb(255,255,255,0.7);
font-weight: 400;
font-size: 13px;
}


@keyframes fromBottom {
0%{
opacity: 0;
transform: translateY(100px);
}
100%{
opacity: 1;
transform: none;
}
}

.why-container .containers-main .container:nth-child(1) { animation-delay: 0.15s; }

.why-container .containers-main{
position: relative;
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 30px;
}

.why-container .containers-main .container{
display: flex;
position: relative;
padding: 15px;
width: 290px;
height: 200px;
background-color: rgb(255,255,255,0.05);
align-items: flex-start;
justify-content: flex-start;
border-radius: 30px;
box-shadow: 0 0 5px rgb(0,0,0,0.2);
border: 1px solid rgb(255,255,255,0.05);
flex-direction: column;
gap: 20px;
animation: showContainer 0.5s;
overflow: visible;
transition: transform 0.25s ease , background-color 0.25s ease, border 0.25s ease;
opacity: 0;
animation-fill-mode: forwards;
animation-play-state: paused;
}

.why-container .containers-main .container.highlight{
border: 2px solid rgb(255,255,255,0.4);
}


@media (width > 960px) {


.why-container .containers-main .container.highlight:hover{
border: 2px solid rgb(255,255,255,0.1);
}


.why-container .containers-main .container:hover{
transform: translateY(-10px) !important;
background-color: rgb(255,255,255,0.07);
cursor: alias;
cursor: default;
}

.why-container .containers-main .container::after {
content: '';
position: absolute;
top: 0;
left: 50%; 
transform: translateX(-50%);
width: 0px;
height: 4px;
/* background-color: rgb(0,214,203);
box-shadow: 0 0 20px rgb(0, 214, 203, 0.2); */
background-color: rgb(255,255,255);
box-shadow: 0 0 20px rgb(255,255,255, 0.2);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
transition: 0.25s ease;
opacity: 0;
}

.why-container .containers-main .container:hover::after{
width: 50px;
background-color: rgb(255,255,255);
box-shadow: 0 0 20px rgb(255,255,255, 0.2);
opacity: 1;
}

}



@keyframes showContainer {
0%{
scale: 0.95;
opacity: 0;
}
100%{
scale: 1;
opacity: 1;
}
}




.why-container .containers-main .container:nth-child(1) { animation-delay: 0.15s; }
.why-container .containers-main .container:nth-child(2) { animation-delay: 0.3s; }
.why-container .containers-main .container:nth-child(3) { animation-delay: 0.45s; }
.why-container .containers-main .container:nth-child(4) { animation-delay: 0.60s; }

.why-container .containers-main .container .top{
display: flex;
gap: 15px;
align-items: center;
justify-content: center;
}

.why-container .containers-main .container .top .icon{
display: flex;
align-items: center;
justify-content: center;
width: 35px;
height: 35px;
border-radius: 10px;
background-color: rgb(0, 214, 203);
color: rgb(0,0,0,0.7);
font-size: 18px;
box-shadow: 0 0 20px rgb(0, 214, 203, 0.10);
margin-left: 10px;
}
.why-container .containers-main .container .top .title{
display: flex;
font-family: 'Poppins', sans-serif;
color: rgb(255,255,255);
font-weight: 600;
font-size: 17px;
text-shadow: 0 0 15px rgb(255, 255, 255, 0.05);
}
.why-container .containers-main .container .bottom .subtitle{
display: flex;
font-family: 'Montserrat', sans-serif;
color: rgb(255,255,255,0.9);
font-weight: 400;
font-size: 13px;
border-radius: 10px;
/* background-color: rgb(255,255,255,0.035); */
/* padding: 10px; */
}
.why-container .container-eclipse{
display: flex;
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
pointer-events: none;
user-select: none;
}

.why-container .container-eclipse .eclipse{
display: flex;
width: 100px;
height: 100px;
position: absolute;
border-radius: 50%;
background-color: rgb(255,255,255);
filter: blur(80px);
opacity: 0.3;
pointer-events: none;
user-select: none;
}

.explore-store{
position: relative;
display: flex;
width: 200px;
height: 50px;
gap: 15px;
font-size: 14px;
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 600;
border-radius: 8px;
background-color: rgb(0, 214, 203);
justify-self: center;
margin-top: 30px;
align-items: center;
justify-content: center;
animation: fromBottom 0.5s ;
animation-fill-mode: both;
animation-delay: 0.35s;
transition: 0.25s ease;
margin-bottom: 50px;
box-shadow: 0 0 30px rgb(0,214,203,0.1);
}
.explore-store:hover{
filter: brightness(0.8);
}

.buttons-container-social {
display: flex;
position: relative;
flex-wrap: wrap;
width: 30%;
align-items: flex-start;
justify-content: center;
gap: 10px;
margin-bottom: 100px;
justify-self: center;
}

@media (width <= 960){
    .buttons-container-social {
        display: flex;
        position: relative;
        flex-wrap: wrap;
        width: 100%;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        }
}

@keyframes fromBottomHalf {
0%{
opacity: 0;
transform: translateY(50px);
}
100%{
opacity: 1;
transform: none;
}
}
.buttons-container-social a:nth-child(1) {
animation-delay: 0.65s;
}
.buttons-container-social a:nth-child(2) {
animation-delay: 0.80s;
}
.buttons-container-social a:nth-child(3) {
animation-delay: 0.95s;
}



.buttons-container-social a {
display: flex;
position: relative;
height: 20px;
padding-left: 10px;
padding-right: 10px;
font-family: 'Poppins', sans-serif;
color: rgb(255,255,255,1);
font-size: 13px;
font-weight: 400;
gap: 10px;
align-items: center;
justify-content: center;
text-align: center;
opacity: 0;
animation: fromBottomHalf 0.5s ;
animation-fill-mode: both;
}

.buttons-container-social a .title {
opacity: 0.7;
transition: 0.25s ease;
}


.buttons-container-social a:hover .title {
opacity: 1;
}


.buttons-container-social .circle {
display: flex;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: rgb(0,214,203);
box-shadow:  0 0 10px rgb(0,214,203,0.2);
}

.buttons-container-social .circle.red {
background-color: rgb(255, 75, 75);
box-shadow:  0 0 10px rgb(255, 75, 75,0.2);
}

.buttons-container-social .circle.white {
background-color: rgb(255, 255, 255);
box-shadow:  0 0 10px rgb(255, 255, 255,0.2);
}




.content-category-name{
display: flex;
width: fit-content;
margin-top: 30px;
font-size: 18px;
color: rgb(255,255,255);
font-family: 'Poppins', sans-serif;
font-weight: 600;
margin-left: 20px;
animation: content-category-name 0.5s;
animation-fill-mode: forwards;
opacity: 0;
animation-delay: 0.25s;
}

@keyframes content-category-name {
0%{
opacity: 0;
transform: translateX(-60px);
}
100%{
opacity: 1;
transform: none;
}
}

.packages-main-container{
display: flex;
flex-wrap: wrap;
gap: 45px;
margin-top: 60px;
width: 100%;
/* align-items: center;
justify-content: center; */
}

.packages-main-container .store-product{
all: unset;
position: relative;
display: flex;
width: 390px;
height: 340px;
background-color: rgb(255,255,255,0.07);
border-radius: 20px;
box-shadow: 0 0 5px rgb(0,0,0,0.3);
align-items: center;
justify-content: flex-start;
flex-direction: column;
overflow: hidden;
animation: store-product 0.5s ;
animation-fill-mode: forwards;
opacity: 0;
border: 1px solid rgb(255,255,255,0.05);
animation-play-state: paused;
}

@keyframes store-product {
0%{
opacity: 0;
transform: scale(0.9);  
}
100%{
opacity: 1;
transform: scale(1);
}
}

/* .packages-main-container .store-product:nth-child(1){animation-delay: 0.25s;} */

.packages-main-container .store-product .image-link{
position: relative !important;
all: unset;
display: flex;
min-width: 100%;
height: auto;
cursor: pointer;
transition: 0.25s ease;
}


@media (width >= 960px){
.packages-main-container .store-product:hover .image-link{
opacity: 0.7;
}



.store-product:hover .new-banner,
.store-product:hover .sale-banner {
transform: translateY(-5px);
}


}

.packages-main-container .store-product .bottomContainer{
position: relative;
display: flex;
height: 100%;
width: 90%;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 20px;
}




.packages-main-container .store-product .bottomContainer .buttons-container{
position: relative;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}


.packages-main-container .store-product .bottomContainer .add-to-cart{
display: flex;
width: 150px;
height: 40px;
font-size: 15px;
gap: 10px;
background-color: rgb(0,214,203);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 800;
align-items: center;
justify-content: center;
text-align: center;
border-radius: 10px;
transition: 0.25s ease;
box-shadow: 0 0 5px rgb(0,0,0,0.3);
}

.packages-main-container .store-product .bottomContainer .actions.updating .add-to-cart{
width: 60px;
background-color: rgb(255,255,255);
}

.packages-main-container .store-product .bottomContainer .actions.in-basket .add-to-cart{
width: 120px;
background-color: rgb(255, 125, 125);
}

.packages-main-container .store-product .bottomContainer .gift{
display: flex;
width: 40px;
height: 40px;
font-size: 15px;
background-color: rgb(255, 255, 255);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 800;
align-items: center;
justify-content: center;
text-align: center;
border-radius: 10px;
overflow: hidden;
transition: 0.25s ease;
box-shadow: 0 0 5px rgb(0,0,0,0.3);
}
.packages-main-container .store-product .bottomContainer .gift p{
display: flex;
opacity: 0;
width: 0;
margin-left: 0;
transition: 0.25s ease;
white-space: nowrap;
overflow: visible;
transform: translateX(50px) scale(0.9);
align-items: flex-end;
justify-content: flex-end;
text-align: end;
}


.packages-main-container .store-product .bottomContainer .gift:hover{
width: 80px;
}

.packages-main-container .store-product .bottomContainer .gift:hover p{
width: 34px;
opacity: 1;
transform: none;
}


.packages-main-container .store-product .bottomContainer .add-to-cart .basket-content-updating,
.packages-main-container .store-product .bottomContainer .add-to-cart .basket-content-in-basket,
.packages-main-container .store-product .bottomContainer .add-to-cart .basket-content-add{
display: flex;
transition: 0.25s ease;
gap: 10px !important;
align-items: center;
justify-content: center;
text-align: center;
pointer-events: none;
}

.packages-main-container .store-product .bottomContainer .add-to-cart .basket-content-updating,
.packages-main-container .store-product .bottomContainer .add-to-cart .basket-content-in-basket
{
position: absolute;
opacity: 0;
transform: translateY(20px);
}

.packages-main-container .store-product .bottomContainer .basket-content-updating svg
{
display: flex !important;
width: 30px !important;
height: 30px !important;
animation: changeBtn 0.25s;
opacity: 0.7;
z-index: 1000;
}
.packages-main-container .store-product .bottomContainer .actions.updating .basket-content-updating{
opacity: 1;
transform: none;
}


.packages-main-container .store-product .bottomContainer .actions.updating .add-to-cart .basket-content-add,
.packages-main-container .store-product .bottomContainer .actions.updating .add-to-cart .basket-content-in-basket{
opacity: 0;
transform: translateY(20px);
}



.packages-main-container .store-product .bottomContainer .actions.in-basket .add-to-cart .basket-content-in-basket
{
opacity: 1;
transform: none;
}

.packages-main-container .store-product .bottomContainer .actions.in-basket .add-to-cart .basket-content-add,
.packages-main-container .store-product .bottomContainer .actions.in-basket .add-to-cart .basket-content-updating{
opacity: 0;
transform: translateY(20px);
}

.packages-main-container .store-product .bottomContainer .framework-tags{
display: flex;
flex-wrap: wrap;
gap: 10px;
}



.packages-main-container .store-product .bottomContainer .framework-tags .framework{
display: flex;
padding: 2px;
padding-left: 6px;
padding-right: 6px;
border-radius: 5px;
background-color: rgb(0,214,203);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 10px;
box-shadow: 0 0 5px rgb(0,0,0,0.3);

}


.packages-main-container .store-product .bottomContainer .framework-tags .framework.white{
background-color: rgb(255, 255, 255) !important;
}

.eclipse-categ{
display: flex;
position: absolute;
top: 120px;
right: 400px;
width: 400px;
height: 300px;
background: url('https://img.freepik.com/free-vector/minimalist-background-gradient-colorful-style_698780-826.jpg?semt=ais_hybrid&w=740&q=80');
background-size: cover;   /* sau contain, depinde ce vrei */
background-repeat: no-repeat;
background-position: center;
z-index: -1;
animation: appear2 0.5s ;
animation-fill-mode: forwards;
animation-play-state: paused;
animation-delay: 0.25s;
filter: blur(80px) brightness(0);
opacity: 0;
pointer-events: none;
user-select: none;
}

@media (width <= 960px) {
    .eclipse-categ{
        left: 50%;
        transform: translateX(-50%);
    } 
}


.eclipse-categ.noanim{
filter: blur(80px) brightness(0.25);
opacity: 1;
animation: none;
}


@keyframes appear2 {
0%{
filter: blur(80px) brightness(0);
opacity: 0;
}
100%{
filter: blur(80px) brightness(0.25);
opacity: 1;
}
}
.packages-main-container .store-product .bottomContainer .product-title-container{
display: flex;
position: relative;
align-items: center;
justify-content: flex-start;
flex-direction: row;
gap: 20px;
}
.packages-main-container .store-product .bottomContainer .price-container{
all: unset ;
}
.packages-main-container .store-product .bottomContainer .price-container{
display: flex;
position: relative;
flex-direction: row;
gap: 5px;
overflow: visible;
align-items: center;
justify-content: center;
}
.packages-main-container .store-product .bottomContainer .price{
all: unset;
}

.packages-main-container .store-product .bottomContainer .price strong{
all: unset;
}


/* .packages-main-container .store-product .bottomContainer .price{
display: flex;
padding: 5px;
padding-left: 8px;
padding-right: 8px;
border-radius: 8px;
background-color: rgb(0,214,203);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-size: 15px ;
font-weight: 600;
box-shadow: 0 0 20px rgb(0,214,203,0.1);
z-index: 1000;
align-items: center;
justify-content: center;
text-align: center;
} */

.packages-main-container .store-product.sale .bottomContainer .price{
margin-top: 15px;
}

.packages-main-container .store-product .bottomContainer .price{
display: flex;
color: rgb(0,214,203,1);
text-shadow: 0 0 20px rgb(0,214,203,0.15);
font-family: 'Poppins', sans-serif;
font-size: 17px ;
font-weight:600;
z-index: 1000;
align-items: center;
justify-content: center;
text-align: center;
}

.packages-main-container .store-product .bottomContainer .price.discounted{
position: absolute;
display: flex;
color: rgb(255, 125, 125,1);
font-family: 'Poppins', sans-serif;
font-size: 12px ;
font-weight: 500;
margin-top: -20px;
text-decoration-line: line-through;
}


/* .packages-main-container .store-product .bottomContainer .price.discounted{
position: absolute;
display: flex;
padding: 2px;
padding-left: 7px;
padding-right: 7px;
border-radius: 7px;
background-color: rgb(255, 125, 125);
box-shadow: 0 0 20px rgb(255, 125, 125,0.1);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-size: 11px ;
font-weight: 600;
text-decoration-line: line-through;
margin-top: -30px;

} */


.packages-main-container .store-product .bottomContainer .product-title{
all: unset;
display: flex;
left: 0;
font-family: 'Poppins';
font-size: 16px;
font-weight: 600;
color: rgb(255,255,255);
}

.packages-main-container .store-product .bottomContainer .product-actions{
all: unset;
display: flex;
left: 0;
font-family: 'Poppins';
font-size: 12px;
font-weight: 600;
color: rgb(255,255,255);
gap: 10px;
align-items: center;
justify-content: center;
justify-self: center;
align-self: center;
}



/* .packages-main-container .store-product .bottomContainer .product-actions .price strong{
all: unset;
} */

/* .packages-main-container .store-product .bottomContainer .product-actions .price{
all: unset;
display: flex;
left: 0;
font-family: 'Poppins';
font-size: 15px;
font-weight: 700;
color: rgb(0,0,0, 0.7);
gap: 10px;
height: 35px;
padding-left: 9px;
padding-right: 9px;
border-radius: 5px;
align-items: center;
justify-content: center;
text-align: center;
background-color: rgb(0,214,203);
}

.packages-main-container .store-product .bottomContainer .product-actions .price.discounted{
background-color: rgb(255, 125, 125);
padding-left: 9px;
height: 30px;
font-size: 13px;
text-decoration-line: line-through;
} */


/* .packages-main-container .store-product .bottomContainer .product-actions .btn-primary{
all: unset;
display: flex;
position: relative;
left: 0;
font-family: 'Poppins';
font-size: 17px;
font-weight: 700;
color: rgb(0,0,0, 0.7);
gap: 10px;
height: 35px;
width: 35px;
border-radius: 5px;
align-items: center;
justify-content: center;
text-align: center;
background-color: rgb(255, 255, 255,1);
cursor: pointer;
transition: 0.25s ease;
} */

/* .packages-main-container .store-product .bottomContainer .actions.in-basket .btn-primary{
background-color: rgb(255, 125, 125);
}  */


.store-product .iconUpdating  {
position: absolute;
}


/* .store-product .iconUpdating svg {
display: none !important;
}

.store-product .actions.updating .iconUpdating svg {
display: flex !important;
width: 30px !important;
height: 30px !important;
animation: changeBtn 0.25s;
opacity: 0.7;
} */

@keyframes changeBtn {
0%{
opacity: 0;
transform: translateY(20px);
}
100%{
opacity: 0.7;
transform: none;
}
}


.store-product  .actions i {
transition: 0.25s ease;
}
/* .store-product  .actions.updating i {
opacity: 0 !important;
transform: translateY(20px) !important;
} */

.store-product .actions  .basket-icon {
position: absolute;
display: flex;
}


.store-product .actions  .trash-icon {
display: flex;
position: absolute;
opacity: 0  !important;
transform: translateY(20px)  !important;
}

/* .store-product .actions.in-basket  .trash-icon {
opacity: 1  !important;
transform: none  !important;
}

.store-product .actions.in-basket  .basket-icon {
opacity: 0  !important;
transform: translateY(20px)  !important;
} */
/* .store-product {
position: relative;
}
.store-product .sale-banner {
all: unset;
position: absolute;
top: 30px;
left: -50px;
width: 175px;
padding: 4px 0;
background: linear-gradient(to left, rgb(0, 214, 203), rgb(255, 255, 255));
color: rgb(0, 0, 0,0.7);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
font-family: 'Poppins', sans-serif;
transform: rotateZ(-44.4deg);
font-weight: 700;
font-size: 17px;
text-align: center;
transform-style: preserve-3d;
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
backface-visibility: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-transform: capitalize;
letter-spacing: 3px;
text-transform: uppercase;
}
.store-product .sale-banner span {
-webkit-font-smoothing: antialiased;
backface-visibility: hidden;
} */

.store-product {
position: relative;
overflow: visible !important;
}
.store-product.sale{
border: 2px solid rgb(255,255,255,1);
}

/* .store-product.new{
border: 2px solid rgba(56, 255, 83, 0.373);
} */

.store-product .new-banner {
all: unset;
position: absolute;
display: flex;
top: 0;
right: 90px;
padding: 3px;
margin-top: -16px;
padding-left: 13px;
padding-right: 13px;
border-radius: 10px;
background-color: rgb(0, 214, 203);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 13px;
z-index: 100;
align-items: center;
justify-content: center;
text-align: center;
gap: 10px;
flex-direction: row;
box-shadow:  0 0 20px rgb(0, 214, 203,0.2);
transition: 0.25s ease;
}

.store-product .sale-banner {
all: unset;
position: absolute;
display: flex;
top: 0;
left: 90px;
padding: 3px;
margin-top: -16px;
padding-left: 13px;
padding-right: 13px;
border-radius: 10px;
background-color: rgb(255,255,255);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 13px;
z-index: 100;
align-items: center;
justify-content: center;
text-align: center;
gap: 10px;
flex-direction: row;
box-shadow:  0 0 20px rgb(255,255,255,0.2);
transition: 0.25s ease;
}
.store-product .sale-banner i {
padding-right: 5px;
}














@media (width <= 960px) {
.content-category-name{
justify-self: center;
}
}

.discord-container{
position: relative;
display: flex;
width: 100%;
height: 120px;
overflow: hidden;
align-items: center;
justify-content: center;
border-radius: 20px;
margin-top: 25px;
margin-bottom: 25px;
}

.discord-container{
animation: discordAppear 0.5s;
animation-delay: 0.25s;
animation-fill-mode: forwards;
opacity: 0;
animation-play-state: paused;
}


@keyframes discordAppear {
0%{
opacity: 0;
transform: translateY(20px);
}
100%{
opacity: 1;
transform: none;
}
}




.discord-container img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

.discord-container .need-support{
position: absolute;
display: flex;
left: 30px;
width: 200px;
height: 50px;
border-radius: 25px;
background-color: rgb(255,255,255,0.1);
backdrop-filter: blur(10px);
align-items: center;
justify-content: center;
text-align: center;
font-family: 'Inter', sans-serif;
font-size: 20px;
font-weight: 700;
color: rgb(255,255,255);
box-shadow: 0 0 5px rgb(0,0,0,0.3);
}

.discord-container .need-support{
opacity: 0;
transform: translateX(-20px);
animation: discordbuttons2 0.5s;
animation-delay: 0.7s;
animation-fill-mode: forwards;
z-index: 1000;
animation-play-state: paused;

}

@keyframes discordbuttons2 {
0%{
opacity: 0;
transform: translate(20px);
}
100%{
opacity: 1;
transform: none;
}
}

@keyframes discordbuttons {
0%{
opacity: 0;
transform: translate(-20px);
}
100%{
opacity: 1;
transform: none;
}
}

.discord-container .join-us{
position: absolute;
display: flex;
right: 30px;
width: 150px;
height: 50px;
border-radius: 25px;
background-color: rgb(255,255,255,0.1);
backdrop-filter: blur(10px);
align-items: center;
justify-content: center;
text-align: center;
font-family: 'Inter', sans-serif;
font-size: 20px;
font-weight: 700;
color: rgb(255,255,255);
box-shadow: 0 0 5px rgb(0,0,0,0.3);
z-index: 1000;
transition: 0.30s ease;
}

.discord-container .join-us:hover{
translate: 0 -5px;
background-color: rgb(255,255,255,0.15);
}


.discord-container .join-us{
opacity: 0;
transform: translateX(-20px);
animation: discordbuttons 0.5s;
animation-delay: 0.7s;
animation-fill-mode: forwards;
animation-play-state: paused;
}

@media (width <= 960px) {
.discord-container .join-us{
position: absolute;
right: auto;
top: auto;
}
.discord-container .need-support{
display: none;
}
}

.product-container-main{
display: flex;
position: relative;
width: 100%;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
justify-content: center;
gap: 30px;
padding-top: 50px;
padding-bottom: 50px;
}

.product-container-main .media{
display: flex;
max-width: 500px;
animation: product-container-main-details 0.5s ;
animation-fill-mode: forwards;
opacity: 0;
}

@media (width <= 960px) {
.product-container-main .media{
    display: flex;
    max-width: 100%;
    animation: product-container-main-details 0.5s ;
    animation-fill-mode: forwards;
    opacity: 0;
    }
.product-container-main .media .thumbs{
display: none;
}

.product-container-main .media .open-lightbox{
    bottom: 20px !important ;
}
}


.product-container-main .product-details-container{
position: relative;
display: flex;
width: 700px;
padding: 20px;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 20px;
}


.product-container-main .product-details{
position: relative;
display: flex;
width: 100%;
padding: 20px;
background-color: rgb(255,255,255,0.05);
border: 2px solid rgb(255,255,2555,0.03);
align-items: flex-start;
gap: 30px;
flex-direction: column;
border-radius: 20px;
box-shadow: 0 0 10px rgb(0,0,0,0.20);
animation: product-container-main-details 0.5s ;
animation-fill-mode: forwards;
animation-delay: 0.25s;
opacity: 0;
overflow: hidden;
}

@media (width <= 600px) {
.product-container-main .product-details{
align-items: center;
justify-content: center;
width: 100%;
}
.product-container-main .product-details-container{
padding: 0;
}

.product-container-main .subtitle{
text-align: center;
}
.product-container-main .sale-banner{
opacity: 0 !important;
}
.product-container-main .hdr {
justify-content: center !important;
}


}

.product-container-main .product-requirements{
display: flex;
position: relative;
flex-direction: column;
align-items: flex-start;
justify-content: center;
width: 100%;
gap: 20px;
animation: fromBottomHalf 0.5s;
animation-fill-mode: forwards;
opacity: 0;
animation-delay: 0.25s;
animation-play-state: paused;
}

.product-container-main .product-requirements .title-container{
display: flex;
position: relative;
align-items: center;
justify-content: center;
text-align: center;
font-family: 'Poppins', sans-serif;
font-size: 14px;
color: rgb(255,255,255,0.8);
font-weight: 400;
}

.product-container-main .product-requirements .requirementsList{
display: flex;
position: relative;
flex-wrap: wrap;
gap: 10px;
}

.product-container-main .product-requirements .requirementsList .requirement{
display: flex;
position: relative;
padding: 7px;
padding-left: 14px;
padding-right: 14px;
border-radius: 30px;
align-items: center;
justify-content: center;
font-family: 'Poppins', sans-serif;
font-size: 12px;
gap: 10px;
animation: fromBottomHalf 0.5s;
animation-fill-mode: forwards;
opacity: 0;
animation-play-state: paused;
transition: 0.25s ease;
}

@media(width >= 960px){
.product-container-main .product-requirements .requirementsList .requirement:hover{
    translate: 0 -5px;
}
}

.product-container-main .product-requirements .requirementsList .requirement:nth-child(1){animation-delay: 0.35s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(2){animation-delay: 0.50s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(3){animation-delay: 0.65s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(4){animation-delay: 0.80s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(5){animation-delay: 0.95s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(6){animation-delay: 1.15s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(7){animation-delay: 1.30s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(8){animation-delay: 1.45s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(9){animation-delay: 1.60s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(10){animation-delay: 1.75s;}
.product-container-main .product-requirements .requirementsList .requirement:nth-child(11){animation-delay: 1.90s;}




.product-container-main .product-requirements .requirementsList .requirement .title{
font-size: 12px;
margin-right: 0;
font-weight: 400;
}

.product-container-main .product-requirements .requirementsList .requirement.aclass{
background-color: rgb(255,255,255,0.05);
border: 1px solid rgb(255,255,255,0.05);
}

.product-container-main .product-requirements .requirementsList .requirement.green{
background-color: rgba(0, 214, 203, 0.05);
border: 1px solid rgb(0, 214, 203,0.1);
}





@keyframes product-container-main-details {
0%{
opacity: 0;
transform: translateY(20px);
}
100%{
opacity: 1;
transform: none;
}
}


.product-container-main .product-details::after {
content: '';
position: absolute;
top: 50%;
left: 0; 
transform: translateY(-50%);
width: 5px;
height: 70px;
background-color: rgb(0,214,203);
box-shadow: 0 0 20px rgb(0, 214, 203, 0.2);
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
animation: product-container-main-detailsafter 0.5s;
animation-delay: 0.75s;
opacity: 0;
animation-fill-mode: forwards;
}

@media (width <= 960px) {
.product-container-main .product-details::after {
content: '';
position: absolute;
top: 0;
left: 50%; 
transform: translateX(-50%);
width: 70px;
height: 5px;
background-color: rgb(0,214,203);
box-shadow: 0 0 20px rgb(0, 214, 203, 0.2);
border-radius: 0;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
animation: product-container-main-detailsafterphone 0.5s;
animation-delay: 0.75s;
opacity: 0;
animation-fill-mode: forwards;
}
}

@keyframes product-container-main-detailsafterphone {
0%{
width: 0;
opacity: 0;
}
100%{
width: 70px;
opacity: 1;
}
}


@keyframes product-container-main-detailsafter {
0%{
height: 0;
opacity: 0;
}
100%{
height: 70px;
opacity: 1;
}
}

.product-container-main .hdr {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 20px;
flex-wrap: wrap;
}

.product-container-main .title{
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-family: "Poppins", sans-serif;
font-size: 23px;
font-weight: 600;
color: rgb(255,255,255);
margin-right: 20px;
}

.product-container-main .hdr .framework-tags{
display: flex;
flex-wrap: wrap;
gap: 10px;
}



.product-container-main .hdr .framework-tags .framework{
display: flex;
padding: 2px;
padding-left: 6px;
padding-right: 6px;
border-radius: 5px;
background-color: rgb(0,214,203);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 10px;
box-shadow: 0 0 5px rgb(0,0,0,0.3);

}

.product-container-main .sale-banner {
all: unset;
position: absolute;
top: 32px; 
right: -48px;
width: 176px; 
padding: 4px 0;
background: linear-gradient(to left, rgb(0, 214, 203), rgb(255, 255, 255));
color: rgb(0, 0, 0,0.7);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
font-family: 'Poppins', sans-serif;
transform: rotateZ(44.4deg);
font-weight: 700;
font-size: 17px;
text-align: center;
transform-style: preserve-3d;
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
backface-visibility: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-transform: capitalize;
letter-spacing: 3px;
text-transform: uppercase;
}
.product-container-main .sale-banner span {
-webkit-font-smoothing: antialiased;
backface-visibility: hidden;
}


.product-container-main .hdr .framework-tags .framework.white{
background-color: rgb(255, 255, 255) !important;
}


.product-container-main .price-container{
display: flex;
position: relative;
flex-direction: row;
gap: 5px;
overflow: visible;
align-items: center;
justify-content: center;
}


.product-container-main .price{
display: flex;
padding: 5px;
padding-left: 8px;
padding-right: 8px;
border-radius: 10px;
background-color: rgb(0,214,203);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-size: 15px;
font-weight: 600;
box-shadow: 0 0 5px rgb(0,0,0,0.3);
z-index: 1000;
}

.product-container-main .price-container.sale .price:not(:has(.discounted)){
margin-top: 15px;
}

.product-container-main .price.discounted{
position: absolute;
display: flex;
padding: 2px;
padding-left: 7px;
padding-right: 7px;
border-radius: 10px;
background-color: rgb(255, 125, 125);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-size: 11px;
font-weight: 600;
box-shadow: 0 0 5px rgb(0,0,0,0.3);
text-decoration-line: line-through;
margin-top: -25px !important;

}

.product-container-main .subtitle{
display: flex;
font-family: 'Poppins', sans-serif;
color: rgb(255,255,255,0.9);
font-size: 14px;
font-weight: 400;
}
.product-container-main .buttons-container{
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.product-container-main .store-product .basket{
all: unset !important;
display: flex;
}


.product-container-main .add-to-cart{
display: flex;
width: 150px;
height: 40px;
font-size: 14px;
gap: 10px;
background-color: rgb(0,214,203);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 800;
align-items: center;
justify-content: center;
text-align: center;
border-radius: 8px;
transition: 0.25s ease;
/* box-shadow: 0 0 5px rgb(0,0,0,0.3); */
box-shadow: 0 0 20px rgb(0,214,203,0.1);
}
.product-container-main .add-to-cart:hover{
filter: brightness(0.9);
}


.product-container-main .actions.updating .add-to-cart{
width: 60px;
background-color: rgb(255,255,255);
pointer-events: none;
}

.product-container-main .actions.in-basket .add-to-cart{
width: 120px;
background-color: rgb(255, 125, 125);
}

.product-container-main .gift{
display: flex;
width: 40px;
height: 40px;
font-size: 14px;
background-color: rgb(255, 255, 255);
box-shadow: 0 0 20px rgb(255,255,255,0.1);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 800;
align-items: center;
justify-content: center;
text-align: center;
border-radius: 8px;
overflow: hidden;
transition: 0.25s ease;
/* box-shadow: 0 0 5px rgb(0,0,0,0.3); */
}
.product-container-main .gift p{
display: flex;
opacity: 0;
width: 0;
margin-left: 0;
transition: 0.25s ease;
white-space: nowrap;
overflow: visible;
transform: translateX(50px) scale(0.9);
align-items: flex-end;
justify-content: flex-end;
text-align: end;
}

@media (width <= 960px){
    .product-container-main .gift{
        width: 80px;
        }
        
        .product-container-main .gift p{
        width: 34px;
        opacity: 1;
        transform: none;
        }
    }


@media (width >= 960px){
.product-container-main .gift:hover{
width: 80px;
}

.product-container-main .gift:hover p{
width: 34px;
opacity: 1;
transform: none;
}
}


.product-container-main .add-to-cart .basket-content-updating,
.product-container-main .add-to-cart .basket-content-in-basket,
.product-container-main .add-to-cart .basket-content-add{
display: flex;
transition: 0.25s ease;
gap: 10px !important;
align-items: center;
justify-content: center;
text-align: center;
pointer-events: none;
}

.product-container-main .add-to-cart .basket-content-updating,
.product-container-main .add-to-cart .basket-content-in-basket
{
position: absolute;
opacity: 0;
transform: translateY(20px);
}

.product-container-main .basket-content-updating svg
{
display: flex !important;
width: 30px !important;
height: 30px !important;
animation: changeBtn 0.25s;
opacity: 0.7;
z-index: 1000;
}
.product-container-main .actions.updating .basket-content-updating{
opacity: 1;
transform: none;
}


.product-container-main .actions.updating .add-to-cart .basket-content-add,
.product-container-main .actions.updating .add-to-cart .basket-content-in-basket{
opacity: 0;
transform: translateY(20px);
}



.product-container-main .actions.in-basket .add-to-cart .basket-content-in-basket
{
opacity: 1;
transform: none;
}

.product-container-main .actions.in-basket .add-to-cart .basket-content-add,
.product-container-main .actions.in-basket .add-to-cart .basket-content-updating{
opacity: 0;
transform: translateY(20px);
}



.desc-container{
position: relative;
display: flex;
width: 100%;
padding: 20px;
height: auto;
border-radius: 20px;
background-color: rgb(255,255,255,0.025);
box-shadow: 0 0 5px rgb(0,0,0,0.3);
border: 1px solid rgb(255,255,255,0.05);
flex-direction: column;
gap: 20px;
margin-top: 20px;
animation: desc-container 0.4s ;
animation-fill-mode: forwards;
opacity: 0;
overflow: hidden;
align-items: center;
justify-content: center;
animation-play-state: paused;
transition: 0.25s ease;
}

 
@media (width >= 960px){
.desc-container:hover{
background-color: rgb(255,255,255,0.04);
translate: 10px 0;
}

}


.animate-on-scroll {
animation-play-state: running !important;
}

.spacing{
display: flex;
height: 100px;
}

.desc-container .eclipsedBackground{
position: absolute;
}

.desc-container .eclipse{
display: flex;
position: absolute;
left: 70px;
background-color: rgb(0,214,203,0.03);
width: 350px;
height: 350px;
border-radius: 50%;
filter: blur(50px);
pointer-events: none;
user-select: none;
}


@keyframes desc-container {
0%{
opacity: 0;
transform: scale(0.95);
}
100%{
opacity: 1;
transform: none;
}
}


/* .desc-container:nth-child(1){animation-delay: 0.25s;}
.desc-container:nth-child(2){animation-delay: 0.5s;}
.desc-container:nth-child(3){animation-delay: 0.75s;}
.desc-container:nth-child(4){animation-delay: 1s;}
.desc-container:nth-child(5){animation-delay: 1.25s;}
.desc-container:nth-child(6){animation-delay: 1.50s;}
.desc-container:nth-child(7){animation-delay: 1.75s;}
.desc-container:nth-child(8){animation-delay: 2s;}
.desc-container:nth-child(9){animation-delay: 2.25s;}
.desc-container:nth-child(10){animation-delay: 2.5s;}
.desc-container:nth-child(11){animation-delay: 2.75s;}
.desc-container:nth-child(12){animation-delay: 3s;}
.desc-container:nth-child(13){animation-delay: 3.25s;}
.desc-container:nth-child(14){animation-delay: 3.5s;}
.desc-container:nth-child(15){animation-delay: 3.75s;} */


.desc-container .title{
display: flex;
flex-wrap: row;
gap: 15px;
font-weight: 600;
font-family: 'Poppins', sans-serif;
color: rgb(255,255,255);
font-size: 15px;
align-items: center;
justify-content: flex-start;
justify-self: flex-start;
padding: 10px;
/* background-color: rgb(255,255,255,0.04); */
border-radius: 20px;
width: 100%;
}



.desc-container .icon{
display: flex;
width: 45px;
height: 45px;
color: rgb(0,214,203,1);
text-shadow:  0 0 20px rgb(0,214,203,0.3);
border-radius: 10px;
font-size: 16px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
background-color: rgb(255, 255, 255,0.05);
align-items: center;
justify-content: center;
text-align: center;
}


.desc-container .description {
/* all: unset; <-- VERIFICĂ 100% CĂ AI ȘTERS ASTA! */
display: flex;
flex-direction: column; 
font-size: 13.5px;
color: rgb(255, 255, 255, 0.9);
gap: 8px; 
padding-left: 10px;
border-radius: 8px;
align-items: flex-start;
justify-content: flex-start;
width: 100%;
padding-bottom: 10px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
}

/* ADĂUGAT ASTA PENTRU PUNCTE */
/* REGULI NOI PENTRU A FORȚA PUNCTELE */

/* Adaugă doar spațiere la listă */

.desc-container .description ul {
padding-left: 15px; 
}
/* Forțează FIECARE 'li' să fie un list item și să aibă punct */
.desc-container .description li {
display: list-item !important; /* FORȚEAZĂ-L să fie un item de listă */
}





.support-container {
display: flex;
position: relative;
justify-self: center;
align-self: center;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 30px;
width: 100%;
}
.support-container .title-container {
display: flex;
font-size: 30px;
/* font-family: 'Poppins', sans-serif;
font-weight: 700; */
/* color: rgb(255,255,255,0.9); */
/* text-shadow: 0 0 30px rgb(255,255,255, 0.15); */
gap: 20px;
align-items: center;
justify-content: center;
flex-direction: column;
/* background: linear-gradient(to top, rgb(255,255,255) 0%, rgb(190, 190, 190) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; */
animation: fromBottomHalf 0.5s;
animation-fill-mode: forwards;
opacity: 0;
animation-play-state: paused;
}
/* .support-container .title-container .title-container-icon {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
width: 50px;
height: 50px;
border-radius: 10px;
font-size:20px;
background-color: rgb(255,255,255,0.05);
color: rgb(0,214,203,1);
text-shadow: 0 0 30px rgb(0,214,203, 0.25);
border: 1px solid rgb(255,255,255,0.05);
} */

.support-container .title-container {
display: flex;
font-size: 30px;
font-family: 'Poppins', sans-serif;
font-weight: 600;
color: rgb(255,255,255,0.9);
gap: 10px;
align-items: center;
justify-content: center;
flex-direction: column;
}

.support-container .title-container .title-container-desc {
font-size: 13px;
color: rgb(255,255,255,0.65);
font-weight: 400;
text-align: center;
}




.support-container .buttons-container {
display: flex;
position: relative;
flex-wrap: wrap;
gap: 20px;
align-items: center;
justify-content: center;
gap: 30px;
padding: 10px;
border-radius: 10px;
background-color: rgb(255,255,255,0.03);
border: 1px solid rgb(255,255,255,0.03);
animation: fromBottomHalf 0.5s;
animation-fill-mode: forwards;
opacity: 0;
animation-play-state: paused;
}
@media (width <= 960px) {
.support-container .buttons-container {
flex-wrap: unset;
flex-direction: column;
}
}

.support-container .eclipse {
display: flex;
position: absolute;
width: 300px;
height: 150px;
background-color: rgb(255,255,255,0.1);
filter: blur(70px);
bottom: -50px;
z-index: -2;
}


.support-container .buttons-container .butt {
all: unset;
display: flex;
position: relative;
align-items: center;
justify-content: center;
text-align: center;
width: 150px;
height: 50px;
color: rgb(0,0,0,0.7);
border-radius: 8px;
background-color: rgb(0,214,203);
font-size: 15px;
font-family: 'Poppins', sans-serif;
font-weight: 600;
gap: 10px;
box-shadow: 0 0 20px rgb(0,214,203,0.1);
animation: fromBottomHalf 0.5s;
animation-fill-mode: forwards;
opacity: 0;
animation-play-state: paused;
cursor: pointer;
transition: 0.25s ease;
}

@media (width >= 960px){
.support-container .buttons-container .butt:hover {
translate: 0 -5px;
filter: brightness(0.8);
}
}

.support-container .buttons-container .butt:nth-child(1) {animation-delay: 0.10s; }
.support-container .buttons-container .butt:nth-child(2) {animation-delay: 0.25s; }
.support-container .buttons-container .butt:nth-child(3) {animation-delay: 0.40s; }


.support-container .buttons-container .butt.half {
background-color: rgb(255,255,255,1);
box-shadow: 0 0 20px rgb(255,255,255,0.1);
}


.support-container .buttons-container .butt .icon,
.support-container .buttons-container .butt .title
{
display: flex;
}


/* 
.support-container .buttons-container .butt .icon{
align-items: center;
justify-content: center;
border-radius: 5px;
width: 35px;
height: 35px;
background-color: rgb(0,0,0,0.2);
}

.support-container .buttons-container .butt.half .icon{
align-items: center;
justify-content: center;
border-radius: 5px;
width: 35px;
height: 35px;
background-color: rgb(255,255,255,0.1);
} */




.tebex-footer-wrapper{
background-color: rgb(255,255,255) !important;
}
/* 
{
display: flex;
position: relative;
align-self: center;
justify-self: center;
flex-wrap: wrap;
gap: 20px;
width: auto;
} */

.checkout-title-container{
display: flex;
position: relative;
align-items: center;
justify-content: flex-start;
flex-direction: column;
margin-bottom: 50px;
}

.checkout-title-container .checkout-title{
display: flex;
position: relative;
text-align: center;
font-family: 'Poppins', sans-serif;
font-weight: 700;
background: linear-gradient(to left, rgb(172, 172, 172) 0%, rgba(255,255,255,1) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 35px;
text-shadow: 0 0 30px rgb(255,255,255,0.1);
}

.checkout-title-container .checkout-subtitle{
display: flex;
position: relative;
text-align: center;
align-items: center;
justify-content: center;
font-family: 'Poppins', sans-serif;
font-weight: 400;
font-size: 13px;
color: rgb(255,255,255,0.6);
}

.checkout-content{
display: flex;
position: relative;
flex-wrap: wrap;
gap: 30px;
align-items: flex-start;
justify-content:center;
width: 100%;
}

.checkout-products{
display: flex;
position: relative;
width: 800px;
max-height: 500px;
padding-right: 15px;
flex-wrap: wrap;
overflow: hidden;
overflow-x: hidden;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: rgba(0,214,203,0.5) transparent;
}



.checkout-products .product{
display: flex;
position: relative;
width: 100%;
height: 105px;
border: 1px solid rgb(255,255,255,0.04);
background-color: rgb(255,255,255,0.03);
border-radius: 15px;
align-items: center;
justify-content: space-between;
flex-direction: row;
overflow: hidden;
margin-bottom: 20px;
transition: 0.25s ease;
}

@media (width <= 960px){
.checkout-products .product{
height: 60px;
}
}

.checkout-products .product .left-part{
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
height: 100%;
transition: 0.25s ease;
}


@media (width <= 960px){
    .checkout-products .product .left-part .title-tags{
    gap: 5px;
    }
    }

.checkout-products .product .left-part .image{
display: flex;
height: 100%;
width: auto;
}

@media (width <= 960px){
.checkout-products .product .left-part .image{
display: flex;
height: 100%;
max-width: 100px;
}
}

.checkout-products .product .left-part .image img{
object-fit: cover;
object-position: center;
width: 100%;
height: 100%;
}

.checkout-products .product .title-tags{
display: flex;
position: relative;
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 15px;
}

.checkout-products .product .title-tags .package-title{
display: flex;
position: relative;
font-size: 15px;
font-family: 'Poppins', sans-serif;
font-weight: 500;
color: rgb(255,255,255);
align-items: center;
justify-content: center;
gap: 10px;
transition: 0.25s ease;
}

.checkout-products .product .title-tags .package-title i{
color: rgb(0,214,203);
text-shadow: 0 0 15px rgb(0,214,203,0.15);
}

.checkout-products .product .title-tags .framework-tags{
display: flex;
flex-wrap: wrap;
gap: 10px;
}



.checkout-products .product .title-tags .framework-tags .framework{
display: flex;
padding: 2px;
padding-left: 6px;
padding-right: 6px;
border-radius: 5px;
background-color: rgb(0,214,203);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 10px;
box-shadow:  0 0 10px rgb(0,214,203,0.1);
}


.checkout-products .product .title-tags .framework-tags .framework.white{
background-color: rgb(255, 255, 255) !important;
box-shadow:  0 0 10px rgb(255,255,255,0.1);
}

@media (width <= 960px){
.checkout-products .product .title-tags .framework-tags{
display: none;
}
        
}

.checkout-products .product .right-part{
display: flex;
position: relative;
align-items: center;
justify-content: center;
gap: 20px;
height: 100%;
}


.checkout-products .product .right-part .remove{
display: flex;
position: relative;
align-items: center;
justify-content: center;
width: 0px;
height: 100%;
background-color: rgb(255, 125, 125);
box-shadow: 0 0 30px rgb(255, 125, 125,0.1);
text-align: center;
font-size: 15px;
color: rgb(0,0,0,0.7);
overflow: hidden;
transition: 0.25s ease;
opacity: 0;
}

@media (width >= 960px){
.checkout-products .product:hover .right-part .remove{
width: 50px;
opacity: 1;
}

}

@media (width <= 960px){
.checkout-products .product .right-part .remove{
width: 50px;
opacity: 1;
}
}





.checkout-products .product .right-part .remove .loading-icon
{
display: flex;
position: absolute;
opacity: 0;
transform: translateY(-20px);
transition: 0.25s ease;
}

.checkout-products .product .right-part .remove .trash-icon
{
opacity: 1;
transform: none;
}

.checkout-products .product.loading .right-part .remove .trash-icon
{
opacity: 0;
transform: translateY(-20px);
}

.checkout-products .product.loading .right-part .remove{
width: 50px;
opacity: 1;
}

@media (width >= 960px){
.checkout-products .product:hover {
cursor: pointer;
background-color: rgb(255,255,255,0.06);
}
}

.checkout-products .product.loading .right-part .remove .loading-icon
{
opacity: 1;
transform: none;
}

.checkout-products .product .right-part .remove .loading-icon svg
{
width: 30px !important;
height: 30px !important;
animation: changeBtn 0.25s;
opacity: 0.7;
z-index: 1000;
}

            


.checkout-products .product .price-container{
all: unset ;
}
.checkout-products .product .price-container{
display: flex;
position: relative;
flex-direction: row;
gap: 5px;
overflow: visible;
align-items: center;
justify-content: center;
}
.checkout-products .product .price{
all: unset;
}

.checkout-products .product .price strong{
all: unset;
}
.checkout-products .left-part .price-container{
    display: none;
}





/* .checkout-products .product .price{
display: flex;
padding: 5px;
padding-left: 8px;
padding-right: 8px;
border-radius: 8px;
background-color: rgb(0,214,203);
color: rgb(0,0,0,0.7);
font-family: 'Poppins', sans-serif;
font-size: 15px ;
font-weight: 600;
box-shadow: 0 0 20px rgb(0,214,203,0.1);
z-index: 1000;
align-items: center;
justify-content: center;
text-align: center;
} */

.checkout-products .product.sale .price{
margin-top: 15px;
}

.checkout-products .product .price{
display: flex;
color: rgb(0,214,203,1);
text-shadow: 0 0 20px rgb(0,214,203,0.15);
font-family: 'Poppins', sans-serif;
font-size: 17px ;
font-weight:600;
z-index: 1000;
align-items: center;
justify-content: center;
text-align: center;
}

@media (width <= 960px){
    .product  .right-part .price-container{
        display: none !important;
    }
    .product .left-part .price-container{
        display: flex !important;
    }
    .checkout-products .product .price{
        font-size: 14px;
    }
}

.packages-main-container .store-product .bottomContainer .price.discounted{
position: absolute;
display: flex;
color: rgb(255, 125, 125,1);
font-family: 'Poppins', sans-serif;
font-size: 12px ;
font-weight: 500;
margin-top: -20px;
text-decoration-line: line-through;
}



.checkout-total{
display: flex;
position: relative;
flex-wrap: wrap;
width: 350px;
align-items: center;
justify-content: center;
padding: 20px;
background-color: rgb(255,255,255,0.03);
border: 1px solid rgb(255,255,255,0.05);
border-radius: 15px;
gap: 15px;
}


.checkout-total .discord-connect{
display: flex;
position: relative;
width: 100%;
flex-direction: row;
gap: 10px;
padding: 10px;
align-items: center;
justify-content: space-between;
background-color: rgb(255,255,255,0.03);
border-radius: 10px;
}

.checkout-total .discord-connect .icon-title{
display: flex;
position: relative; 
align-items: center;
justify-content: center;
gap: 10px;
}

.checkout-total .discord-connect .icon{
display: flex;
position: relative;
width: 30px;
height: 30px;
align-items: center;
justify-content: center;
text-align: center;
color: rgb(255,255,255);
background-color: rgb(255,255,255,0.05);
border-radius: 5px;
font-size: 13px;
text-shadow: 0 0 15px rgb(255,255,255,0.1);
}

.checkout-total .discord-connect .title{
display: flex;
position: relative;
justify-content: center;
text-align: center;
color: rgb(255,255,255);
font-size: 13px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
}

.checkout-total .discord-connect .linkedbutton{
display: flex;
position: relative;
height: 100%;
padding: 6px;
padding-left: 12px;
padding-right: 12px;
align-items: center;
justify-content: center;
font-size: 13px;
font-family: 'Poppins', sans-serif;
font-weight: 600;
color: rgb(0,0,0,0.7);
background-color: rgb(255,255,255);
box-shadow: 0 0 15px rgb(255,255,255,0.1);
border-radius:5px;
min-width: 20px;
min-height: 4px;
}

.checkout-total .total-container{
display: flex;
position: relative;
width: 100%;
flex-direction: row;
gap: 10px;
padding: 10px;
align-items: center;
justify-content: space-between;
border-radius: 10px;
}

.checkout-total .total-container .icon-title{
display: flex;
position: relative; 
align-items: center;
justify-content: center;
gap: 10px;
}

.checkout-total .total-container .icon{
display: flex;
position: relative;
width: 30px;
height: 30px;
align-items: center;
justify-content: center;
text-align: center;
color: rgb(0,214,203);
border-radius: 5px;
font-size: 13px;
text-shadow: 0 0 15px rgb(0,214,203,0.1);
}

.checkout-total .total-container .title{
display: flex;
position: relative;
justify-content: center;
text-align: center;
color: rgb(255,255,255);
font-size: 13px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
}

.checkout-total .total-container .price-container{
display: flex;
position: relative;
align-items: center;
justify-content: center;
font-size: 17px;
font-family: 'Poppins', sans-serif;
font-weight: 500;
color: rgb(0,214,203);
text-shadow: 0 0 15px rgb(0,214,203,0.1);
}

.checkout-total .proceed-to-checkout {
display: flex;
position: relative;
align-items: center;
justify-content: center;
padding: 10px;
padding-left: 17px;
padding-right: 17px;
gap: 10px;
font-family: 'Poppins', sans-serif;
font-weight: 500;
color: rgb(0,0,0,0.7);
background-color: rgb(0,214,203);
border-radius: 5px;
box-shadow: 0 0 15px rgb(0,214,203,0.1);
}

.checkout-total .line {
display: flex;
position: relative;
width: 70%;
height: 1px;
background-color: rgb(255,255,255,0.1);
border-radius: 10px;
margin-top: 20px;
margin-bottom: 10px;
}

.checkout-total .tebex-owned {
display: flex;
position: relative;
align-items: center;
justify-content: center;
text-align: center;
font-size: 12px;
font-family: 'Poppins', sans-serif;
font-weight: 400;
color: rgb(255,255,255,0.5);
}

.checkout-content .no-products{
display: flex;
position: relative;
gap: 20px;
align-items: center;
justify-content: center;
font-size: 20px;
}


.checkout-content .no-products .no-products-icon{
display: flex;
align-items: center;
justify-content: center;
text-align: center;
width: 50px;
height: 50px;
border-radius: 7px;
background-color: rgb(0,214,203,1);
color: rgb(0,0,0,0.7);
box-shadow:  0 0 20px rgb(0,214,203,0.15);
}







.noAnimations * {
animation: none;
opacity: 1;
}

.toggle-navigation-lowwidth{
display: none;
font-size: 20px;
color: rgb(0,214,203);
text-shadow: 0 0 20px rgb(0,214,203,0.25);
margin-left: 10px;
}


.navigation-low-width{
    position: absolute;
    display: flex;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgb(18,24,32,0.1);
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    backdrop-filter: blur(40px);
    height: 0;
    transition: height 0.25s ease, padding 0.25s ease;
    pointer-events: none;
    opacity: 1;
    padding-left: 27px;
    padding-right: 20px;
}


.navigation-low-width.show{
    height: 100vh;
    pointer-events: all;
}


.navigation-low-width .options{
display: flex;
position: relative;
width: 100%;
align-items: center;
justify-content: flex-start;
font-size: 13px;
gap: 20px;
flex-direction: row;
}


.navigation-low-width .options .user-container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    flex-direction: row;
    }



.navigation-low-width .options .options-icon {
display: flex;
position: relative;
align-items: center;
justify-content: center;
min-width: 33px;
min-height: 33px;
border-radius: 8px;
background-color: rgb(255,255,255,0.05);
color: rgb(255,255,255);
text-shadow: 0 0 20px rgb(255,255,255,0.1);

}

.navigation-low-width .options[id=x] .options-icon {
color: rgb(255, 125, 125);
text-shadow: 0 0 20px rgb(255, 125, 125,0.1);
margin-bottom: 20px;
margin-top: 20px;
}

.navigation-low-width .options[id=login] .options-icon {
    color: rgb(0,214,203);
    text-shadow: 0 0 20px rgb(0,214,203,0.1);
    }

    
.navigation-low-width .options-icon[id=user] {
    color: rgb(0,214,203) !important;
    text-shadow: 0 0 20px rgb(0,214,203,0.1) !important;
    background-color: rgb(255,255,255,0) !important;
}

    .navigation-low-width .options[id=logout] .options-icon {
        color: rgb(255, 125, 125);
        text-shadow: 0 0 20px rgb(255, 125, 125,0.1);
        }
    


.navigation-low-width .options.active .options-icon {
    color: rgb(0,214,203);
    text-shadow: 0 0 20px rgb(0,214,203,0.1);
    
}


.navigation-low-width .options .options-title {
display: flex;
font-family: 'Poppins', sans-serif;
font-weight: 500;
color: rgb(255,255,255);
position: relative;
align-items: center;
justify-content: center;
height: 100%;
}

.navigation-low-width .options.active .options-title {
    color: rgb(0,214,203);
    }

    .navigation-low-width .options.active .options-title::after{
        content: '';
        position: absolute;
        bottom: 0px;
        left: 5px; 
        width: 20px;
        height: 2px;
        /* background-color: rgb(0,214,203);
        box-shadow: 0 0 20px rgb(0, 214, 203, 0.2); */
        background-color: rgb(255,255,255);
        box-shadow: 0 0 20px rgb(255,255,255, 0.2);
        transition: 0.25s ease;
        opacity: 1;
        border-radius: 20px;
    }

.navigation-low-width .options.active {
transform: translateX(10px);
}


@media (width <= 960px) {
*:hover {
transform: none !important;
opacity: 1 !important;
filter: none !important;
}
* {
animation-play-state: running !important;
animation-duration: 0s !important;
animation-delay: 0s !important;
}
.toggle-navigation-lowwidth{
    display: flex;
    z-index: 1001;
}
}

.center-categ-index{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
}