<meta charset="UTF-8">
@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-Thin.ttf);
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-ExtraLight.ttf);
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-Light.ttf);
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-Medium.ttf);
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-SemiBold.ttf);
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-ExtraBold.ttf);
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-Black.ttf);
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary-color: #851155;
    --secondary-color: #131313;
    --tertiary-color: #212120;
    --text-a: #dfdfdf;
    --text-b: #ffffff;
}

* {
    box-sizing: border-box;
}

*,*:focus,*:hover,*:active,*:before,*:after {
    outline: 0;
}

*::selection {
    background: rgb(255 255 255 / 27%);
    color: white;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #424242;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

body {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--tertiary-color);
    background-size: 550px;
    font-family: montserrat, sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--text-a);
    border: 0;
    cursor: pointer;
}

p, h1, h2, h3, h4, h5 {
    margin: 0;
}

.section-main, nav, footer {
    min-width: 100%;
    position: relative;
    display: block;
}

.navbar-in, .header-in, .section-in, .footer-in {
    width: 100%;
    padding-left: 40px;
    height: 100%;
    margin-left: auto;
    max-width: 1500px;
    position: relative;
    z-index: 5;
    padding-right: 40px;
    margin-right: auto;
}

nav {
    padding: 2.8rem 0;
}

.navbar-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-l, .navbar-r {
    display: flex;
    align-items: center;
    grid-gap: 40px;
}

.header-container {
    height: 56vh;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(/assets/images/background.png);
    border-radius: 1.25rem;
    position: relative;
}

.navbar-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-b);
}

.navbar-title {
    color: var(--primary-color);
    color: var(--text-b);
    font-weight: 700;
    font-size: 1.7em;
}

.header-holder {
    max-width: 750px;
    text-align: center;
}

.header-text {
    color: #fff;
    font-weight: 900;
    line-height: 60px;
    letter-spacing: 3px;
    font-size: 3rem;
}

.header-link {
    color: #fff;
    padding-top: 20px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 18px;
}

.header-link i {
    margin-left: 10px;
}

.navbar-title span {
    color: var(--primary-color);
}

.navbar-link.c {
    background: var(--primary-color);
    padding: 16px 50px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.header:before {
    position: absolute;
    width: 100%;
    height: 45vh;
    content: "";
    z-index: -1;
    background: #0c0c0c url(https://i.imgur.com/OSWB7Gt.png);
    top: 0;
    left: 0;
}

.products-holders {
    margin: 100px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
}

.product-card {
    position: relative;
    border-radius: 15px;
    box-shadow: 6px 6px 20px -4px #00000012, inset 0 0 0 1px rgb(0 0 0 / 5%);
    background: var(--secondary-color);
}

.product-body {
    padding: 25px;
}

.product-image {
    background: url(https://egh.gg/assets/images/product-bg.webp) no-repeat;
    background-size: cover;
    border-radius: 15px 15px 0 0;
    height: 220px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    height: 140px;
    position: relative;
}

.product-image:before {
    content: "";
    position: absolute;
    box-shadow: 0px 0px 80px 50px #851155;
}

.product-stock {
    font-size: 15px;
    color: var(--text-a);
    font-weight: 600;
}

.product-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-b);
}

.product-btn {
    display: block;
    background: var(--primary-color);
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 15px;
}

.product-btn[data="disabled"] {
    user-select: none;
    pointer-events: none;
}

.product-desc {
    font-size: 15px;
    line-height: 24px;
    color: var(--text-a);
}

.about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    margin-top: 100px;
    padding: 50px 0;
    position: relative;
    grid-gap: 80px;
    align-items: center;
}

.about-l {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background-size: cover;
    background-position: center bottom;
    padding: 20px 0;
    position: relative;
}

.about:before {
    z-index: -1;
    content: "";
    position: absolute;
    width: 85%;
    height: 100%;
    left: -20%;
    background: var(--secondary-color);
    border-radius: 0 15px 15px 0;
}

.about-r {
    padding: 20px 0;
}

.about-btn {
    color: #fff;
    background: var(--primary-color);
    padding: 15px 50px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 150ms ease 0s;
    text-align: center;
    display: block;
    width: fit-content;
    cursor: pointer;
}

.about-r p {
    margin: 20px 0 30px 0;
    color: var(--text-a);
    line-height: 26px;
    font-size: 15px;
    font-weight: 400;
}

.about-r h2 {
    font-size: 39px;
    color: var(--text-b);
    line-height: 50px;
}

.about-r h2 span {
    color: var(--primary-color);
    letter-spacing: 0px;
}

.about:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 50%;
    left: -20%;
    top: 50%;
    background: #2a2a2a;
    z-index: -2;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    padding-top: 100px;
    padding-bottom: 30px;
    position: relative;
}

.features:before, .faq:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    left: -20%;
    bottom: 0;
    background: #2a2a2a;
    z-index: -2;
}

.feature-card {
    position: relative;
    display: flex;
    grid-gap: 20px;
    padding: 25px;
    background: var(--secondary-color);
    border-radius: 6px;
    align-items: center;
    transition: 150ms ease 0s;
}

.feature-l {
    background: linear-gradient( 22deg , #380b25, var(--primary-color));
    width: 70px;
    min-width: 70px;
    height: 70px;
    min-height: 70px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-l img, .feature-l svg {
    height: 32px;
    fill: #ffffff;
    transition: 150ms ease 0s;
}

.feature-r {
    display: block;
    position: relative
}

.feature-r h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .2px;
    margin-bottom: 6px;
    color: var(--text-b);
}

.feature-r p {
    font-weight: 400;
    color: var(--text-a);
    line-height: 24px;
    font-size: 15px;
}

.faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    padding-bottom: 100px;
    position: relative;
}

.faq-container {
    position: relative;
    background: var(--secondary-color);
    border-radius: 6px;
    transition: 150ms ease 0s;
    padding: 25px;
}

.faq-header {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.faq-header img, .faq-header svg {
    fill: var(--primary-color);
    padding: 10px;
    background: #ffffff17;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

.faq-header h1 {
    font-size: 24px;
    color: var(--text-b);
    font-weight: 600;
}

.faq-body {
    font-weight: 400;
    color: var(--text-a);
    line-height: 24px;
    font-size: 15px;
    margin-top: 10px;
}

footer {
    background: var(--secondary-color);
    padding: 30px 0;
    border-top: 10px solid #3a3a3a;
    margin-top: auto;
}

.footer-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-p {
    font-size: 14px;
    font-weight: 500;
    color: #8E8E8E;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.footer-l {
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
}

.footer-link {
    padding: 5px 18px;
    background: var(--primary-color);
    border-radius: 5px;
    font-weight: 500;
    color: var(--text-b);
    font-size: 14px;
}

.footer-r {
    display: flex;
    grid-gap: 15px;
}

.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    top: 0;
    left: 0;
    background: rgb(0 0 0/40%);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden
}

.modal.active {
    visibility: visible
}

.modal.active .modal-in {
    transform: translateY(0px) scale(1);
    opacity: 1
}

.modal-in {
    background: var(--tertiary-color);
    border: 1px solid #3f3f3f;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    transition: 150ms ease 0s;
    border-radius: 5px;
    display: block;
}

.modal-in:before {
    content: "";
    width: 95%;
    height: 8px;
    position: absolute;
    bottom: -9px;
    background: var(--primary-color);
    z-index: -1;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    width: 60px;
    height: 60px;
    border: 3px solid #f9f9f9;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 130ms ease 0ms;
    font-size: 29px;
    cursor: pointer
}

.modal-close:hover {
    transform: scale(1.1)
}

.modal-header {
    background: #303030;
    border-radius: 5px 5px 0 0;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    grid-gap: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.modal-header i {
    font-size: 40px;
    color: var(--text-b);
    position: relative;
}

.modal-r {
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal-r h1 {
    font-size: 25px;
    color: #FFF;
}

.modal-r p {
    color: #fff;
    font-size: 15px;
    margin-top: 5px;
}

.modal-notice-bar {
    background: var(--primary-color);
    width: 100%;
    padding: 10px 15px;
}

.modal-notice-bar p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.payment-popup-form {
    padding: 50px;
    display: flex;
    flex-direction: column;
    grid-gap: 14px;
    position: relative;
}

.loading-disable:before {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    background: url(/assets/images/loading.gif) no-repeat;
    background-position: center;
    background-size: contain;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 0 3px 3px;
    margin: auto;
    z-index: 5;
}

.flp-input {
    background: #363636;
    border: 2px solid #424242;
    padding: 15px 25px;
    font-size: 16px;
    font-family: montserrat,sans-serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    color: var(--text-a);
    transition: 200ms ease 0ms;
    border-radius: 4px;
    width: 100%
}

.flp-input::placeholder {
    color: var(--text-a);
    transition: 200ms ease 0s;
    transform-origin: 0% 50%
}

.flp-input:focus::placeholder {
    color: var(--text-a);
    transform: scale(0)
}

.flp-input:focus {
    background: #3d3d3d;
    border: 2px solid #424242
}

.error {
    display: flex;
    flex-direction: column;
    width: 100%;
    grid-gap: 10px;
}

.error span {
    font-size: 14px;
    background: #363636;
    border: 1px solid #4c4c4c;
    color: var(--text-a);
    border-radius: 2px;
    padding: 5px 10px
}

.payment-popup-modes {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}

.payment-mode-card input {
    display: none;
}

.payment-mode-in img {
    width: 320px;
}

.payment-mode-in {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 5px;
    /* padding: 10px; */
    border: 3px solid #101010;
    background: #101010;
    cursor: pointer;
}

.payment-mode-card {
    display: block;
    position: relative;
}

.payment-popup-footer {
    display: flex;
    grid-gap: 15px
}

.product-pop-btn.go, .btn-primary, .btn-secondary {
    width: 100%;
    height: fit-content;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 15px;
    color: #fff;
    border: none;
    font-family: montserrat,sans-serif;
    transition: 150ms ease 0s;
    cursor: pointer;
    user-select: none
}

.product-quantity {
    width: 230px;
    background: var(--secondary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center
}

.update_quantity {
    background: #4d4d4d;
    color: white;
    font-weight: 700;
    border: none;
    width: 50px!important;
    border-radius: 100px;
    margin: 0 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: montserrat, sans-serif;
    height: 22px;
}

.product-q-btn {
    color: #fff;
    background: 0 0;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 23px;
    font-weight: 400;
    user-select: none;
}

.product-q-btn[disabled] {
    opacity: .2;
    user-select: none;
    cursor: unset
}

.product-quantity span {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 10px;
    user-select: none
}

.payment-mode-card.disabled:before {
    content: "Coming Soon";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0006;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    backdrop-filter: blur(1px);
    text-transform: uppercase;
    border-radius: 4px
}

.payment-mode-title {
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.payment-mode-card label:hover label,.payment-mode-card input:checked+label {
    background: #131313;
    border-color: var(--primary-color)
}

.payment-mode-card.disabled:before,.payment-mode-card.disabled .payment-mode-in {
    cursor: not-allowed
}

.payment-mode-card.disabled {
    border-color: #404040;
    background: #212120
}

.payment-mode-in[for="paysafecard"]:before {
    position: absolute;
    bottom: -2px;
    left: -2px;
    content: "10% Gebühren bei PaySafeCard";
    background: var(--primary-color);
    font-size: 13px;
    width: calc(100% + 4px);
    padding: 3px 0;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-align: center;
    border-radius: 0 0 5px 5px;
}

.payment-mode-in[for="paysafecard"] {
    position: relative;
    padding-top: 5px;
    padding-bottom: 30px;
}

.modal-header:before {
    background: #00000070;
    border-radius: 5px 5px 0 0;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
}

.order-info {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    max-width: 340px;
    width: 100%;
}

.order-info-header, .order-info-stat {
    background: #282828;
    border: 1px solid #38383a;
    padding: 20px;
    border-radius: 8px;
}

.order-info-stat {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    width: 100%;
}

.order-info-stat-in {
    background: #121314;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px;
}

body[data="order"] .header-in {
    display: flex;
    grid-gap: 20px;
}

body[data="order"] .header-container {
    width: 100%;
    height: auto;
}

.order-info-stat-in span:last-child {
    margin-left: 10px;
}

.order-info-header-title {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 10px;
}

.order-info-header-title h1 {
    font-size: 27px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

.order-info-header-desc {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.order-info-header-title img {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    display: flex!important;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 8px;
}

.order-info-header-title img {
    content: url("/assets/images/icons/order-default.svg");
}

.order-info-header-title img[icon="unpaid"] {
    content: url("/assets/images/icons/order-unpaid.svg");
}

.order-info-header-title img[icon="pending"] {
    content: url("/assets/images/icons/order-pending.svg");
}

.order-info-header-title img[icon="complete"] {
    content: url("/assets/images/icons/order-complete.svg");
}

.order-info-header-title img[icon="dead"] {
    content: url("/assets/images/icons/order-dead.svg");
}

.order-status-button {
    display: block;
    background: var(--primary-color);
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.order-status-button img {
    margin-left: 8px;
    height: 13px;
}

body[data="document"] .header-container {
    height: 280px;
}

body[data="document"] .header:before {
    height: 330px;
}

.info-container {
    position: relative;
    background: var(--secondary-color);
    border-radius: 6px;
    transition: 150ms ease 0s;
    padding: 25px;
    margin-top: 40px;
    margin-bottom: 60px;
    min-height: 150px;
    border: 1px solid #303030;
    color: #fff;
}

.info-container h4 {
    font-size: 23px;
    margin: 10px 0;
}

.info-container p {
    line-height: 30px;
    font-size: 15px;
}

.info-container a {
    color: var(--primary-color);
}

.payment-popup-checkbox {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
}

.payment-popup-checkbox-c {
    display: flex;
    align-items: center;
    grid-gap: 7px;
}

.payment-popup-checkbox-c label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-b);
}

.payment-popup-checkbox-c label a {
    color: var(--primary-color);
}

.swal-button {
    width: 100%;
    background: var(--primary-color);
    outline: 0!important;
    box-shadow: none!important;
    transition: 150ms ease 0s;
}

.swal-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swal-button:hover {
    background: var(--secondary-color)!important;
}

.swal-icon--success {
    border-color: var(--primary-color)!important
}

.swal-icon--success__line {
    background-color: var(--primary-color)!important;
}

.swal-icon--success__ring {
    border: 4px solid hsl(324.71deg 33.33% 90%)!important;
}

.swal-text {
    text-align: center;
}
/*NEWS LETTER PAGE */
.newsletter-page {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}

.btn-row {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

.announcement {
    background: var(--primary-color)
}

.announcement p {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 23px;
}
.announcement p svg {
    margin-right: 10px;
}

@media screen and (max-width: 1200px) {
    .products-holders {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .navbar-link {
        display: none;
    }

    .navbar-link.c {
        display: block;
    }

    .header-text {
        font-size: 27px;
        font-weight: 400;
        line-height: 37px;
        letter-spacing: inherit;
    }

    .header-container {
        height: auto;
    }

    .header:before {
        height: 32vh;
    }

    .products-holders {
        grid-template-columns: 1fr;
    }

    .about:before, .about:after {
        width: calc(100% + 80px);
        left: -40px;
        border-radius: 0;
        display: table-column-group;
    }

    .about {
        grid-template-columns: 1fr;
        grid-gap: 0px;
    }

    .about-r h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .about-l {
        height: 240px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .faq {
        grid-template-columns: 1fr;
    }

    .footer-in {
        flex-direction: column;
        grid-gap: 11px;
    }

    .footer-r {
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .features:before {
        display: none;
    }

    .product-image {
        height: 180px;
    }

    .product-title {
        font-size: 22px;
    }

    .modal-in {
        width: 93%;
    }

    .payment-popup-modes {
        grid-template-columns: 1fr;
    }

    .product-quantity {
        height: 50px;
    }

    .payment-popup-form {
        padding: 20px;
    }

    .product-pop-btn.go {
        font-size: 14px;
    }
}

@media screen and (max-height: 700px) {
    .modal-header {
        display: none;
    }
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

