:root {
    --background: #264294;
    --blue: #0099d1;
    --yellow: #ffe60b;
    --lightblue: #45babd;
    --header: #4096CC;
    --box-shadow: #1c3170;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    background-color: var(--background);
    font-family: "brandon-grotesque", sans-serif !important;
}

body {
    width: 100%;
    height: 100%;
    margin: 0px;
    font-size: 16px !important;
    overflow-x: hidden;
    overscroll-behavior: none;
    box-sizing: border-box;
    background-color: var(--background);
}

header {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: var(--background);
    box-sizing: border-box;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

img {
    vertical-align: middle;
    border-style: none;
}

.top {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
    box-sizing: border-box;
}

ul {
    display: block;
    list-style-type: none;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
    margin-top: 0;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.headercontainer {
    margin: 0 auto;
    height: auto;
    min-height: 80px;
    padding: 0.5rem 0;
    max-width: 1400px;
    display: flex;
    gap: 1.5rem;
    position: relative;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-back-to-site {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.375rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-back-to-site:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.logo {
    padding: .5rem;
    display: flex;
    align-items: center;
}

.logo .companyLogo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo .companyLogo {
        height: 45px;
    }
}

.header-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 1;
    padding: 0;
    margin: 0;
    list-style-type: none;
    font-family: "brandon-grotesque", sans-serif;
    box-sizing: border-box;
}

.search-form-container {
    display: none;
    position: relative;
    /* display: flex; */
    align-items: center;
}

.search-form-container .search-icon {
    cursor: pointer;
    padding: 7px 20px;
    color: #264294;
    font-size: 2rem;
}

.fa,
.fas {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.btn.btn-outline-primary {
    background-color: transparent;
    border-color: #4096CC;
    color: #fff;
}

.nav-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 100%;
    padding: 0 1rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    box-sizing: border-box;
}


.wrapper {
    width: 100%;
    height: 100%;
    padding: 0.75rem 0;
    display: flex;
    box-sizing: border-box;
}

.top {
    top: .25rem;
}

.bottom {
    bottom: .25rem;
}

.container {
    width: 100%;
    padding: 0 2rem;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    max-width: 1400px;
}

.title {
    width: 100%;
    font-size: 2.25rem;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding-bottom: 0.75rem;
    margin-bottom: 0;
    position: relative;
}

.title::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    content: "";
    width: 22.5rem;
    height: 3px;
    background: #DA5C6F;
}

.navbarcontain {
    width: 100%;
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}



.navbar {
    width: 30%;
    display: flex;
    flex-direction: row;
    border-bottom: solid 2px var(--blue);
    border-top: solid 2px var(--blue);
    padding: 1rem;
}

.navbaroptions {
    color: #fff;
    font-size: 1.5rem;
    padding: 0 2rem;
    text-transform: uppercase;
    font-weight: 700;
}


.lang-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 0.25rem;
}

.lang-menu-item + .lang-menu-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.5);
    margin-right: 0.25rem;
}

.lang-menu-item a {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.lang-menu-item.active a {
    color: #fff;
}

.search {
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: right;
    border-bottom: solid 2px var(--blue);
    border-top: solid 2px var(--blue);
    align-items: center;
    padding: 0 2rem;
}

input {
    height: 50%;
    width: 40%;
}

.newsletter-form {
    background: #5ECFD2;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title:after {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    content: "";
    width: 22.5rem;
    height: 3px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.newsletter-form .bcms-form {
    width: 100%;
    max-width: 42.5rem;
    margin: 1rem auto 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    background: transparent;
    height: 53px;
}

button,
input {
    /* margin: 0px 10px; */
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    text-align: center;
    padding: 5px;
    border: 0px;
    width: 50px;
}

form.bcms-form .bcms-form-row .bcms-form-input {
    width: 100%;
    max-width: unset;
    padding: 0;
}

.newsletter-form .bcms-form .form-type-email {
    flex: 1;
}

.newsletter-form .bcms-form .form-type-email .bcms-form-label {
    display: none;
}

.newsletter-form .bcms-form .form-type-email .bcms-form-input .form-control {
    font-family: "Montserrat", sans-serif;
    font-size: .875rem;
    line-height: 1.5;
    color: #999;
    font-weight: 600;
    border: none;
    border-radius: 0;
    height: 100%;
}

form.bcms-form .bcms-form-row .bcms-form-input {
    width: 100%;
    max-width: unset;
    padding: 0;
    height: 100%;
}

.newsletter-form .bcms-form .form-fn-submit .bcms-form-input .btn {
    height: 100%;
    width: 10rem;
    background: #4CABAE;
    border-color: #4CABAE;
    font-weight: 600;
    font-size: .875rem;
    padding: .375rem .75rem;
    color: #ffffff;
}

.newsletter-form .bcms-form .form-type-email .bcms-form-label {
    display: none;
}

.newsletter-form .bcms-form .form-fn-submit .bcms-form-input {
    height: 100%;
}

.col-sm-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}


.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.newsletter-form .newsletter-form-disclaimer {
    max-width: 42.5rem;
    width: 100%;
    text-align: center;
    margin: 1.5rem auto 0;
    font-family: "Montserrat", sans-serif;
    font-size: .875rem;
    line-height: 1.2;
    font-weight: 500;
    color: #264294;
}

/* ===== FOOTER - matches tehnopark.si ===== */
footer {
    box-sizing: border-box;
}

.tp-footer {
    background: hsl(224 53% 20% / 0.5);
    padding: 4rem 0 2rem;
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

.tp-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tp-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .tp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tp-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tp-footer-col {
    display: flex;
    flex-direction: column;
}

/* Logo */
.tp-footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: opacity 0.2s;
}

.tp-footer-logo-link:hover {
    opacity: 0.8;
}

.tp-footer-logo-img {
    height: 3rem;
    width: auto;
}

@media (min-width: 1024px) {
    .tp-footer-logo-img {
        height: 4rem;
    }
}

/* Description */
.tp-footer-desc {
    color: hsl(210 20% 80%);
    font-size: 0.875rem;
    line-height: 1.625;
    margin: 0 0 1rem 0;
}

/* Social Icons */
.tp-footer-socials {
    display: flex;
    gap: 1rem;
}

.tp-social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: hsl(224 53% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    font-size: 1.1rem;
}

.tp-social-icon:hover {
    background: hsl(183 46% 65%);
    color: hsl(224 53% 15%);
}

.tp-social-icon i {
    font-size: 1.1rem;
}

.tp-social-svg {
    width: 1.25rem;
    height: 1.25rem;
}

.tp-social-icon:hover .tp-social-svg {
    color: hsl(224 53% 15%);
}

/* Footer Headings */
.tp-footer-heading {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

a.tp-footer-heading:hover {
    color: hsl(183 46% 65%);
}

/* Contact List */
.tp-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tp-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: hsl(210 20% 80%);
}

.tp-contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(183 46% 65%);
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 0.95rem;
}

.tp-footer-contact a,
.tp-footer-hours a {
    color: hsl(210 20% 80%);
    text-decoration: none;
    transition: color 0.2s;
}

.tp-footer-contact a:hover,
.tp-footer-hours a:hover {
    color: #fff;
}

/* Hours List */
.tp-footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(210 20% 80%);
}

.tp-hours-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tp-hours-sub {
    margin-left: 2rem;
}

.tp-hours-label {
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.tp-hours-value {
    margin: 0;
    color: hsl(210 20% 80%);
}

/* Information Links */
.tp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tp-footer-links li a {
    color: hsl(210 20% 80%);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.tp-footer-links li a:hover {
    color: #fff;
}

/* Partner Logos */
.tp-footer-partners {
    border-top: 1px solid hsl(224 30% 40%);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.tp-partners-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3rem;
}

.tp-partners-row img {
    height: 3rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .tp-partners-row img {
        height: 4rem;
    }
}

/* Footer Bottom */
.tp-footer-bottom {
    border-top: 1px solid hsl(224 30% 40%);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.tp-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.tp-footer-bottom-links a {
    color: hsl(210 20% 80%);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.tp-footer-bottom-links a:hover {
    color: #fff;
}

.tp-footer-copyright {
    color: hsl(210 20% 80%);
    font-size: 0.875rem;
    margin: 0;
}
/* ===== END FOOTER ===== */

img {
    vertical-align: middle;
    border-style: none;
}

.fa {
    font-weight: 900;
}

.shopcontainer {
    width: 100%;
    box-sizing: border-box;
    padding: 2rem;
}

.shopgrid {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 2rem 3rem 2rem;
}

.shopitem {
    width: 25rem;
    height: 30rem;
    background-color: var(--lightblue);
    box-sizing: border-box;
    padding: 1rem;
    box-shadow: 5px 5px 15px var(--box-shadow);
    margin-bottom: 2rem;
}

#navToggler {
    display: none;
}

.purchasecontain {
    width: 100%;
    box-sizing: border-box;
    background-color: hsl(224 53% 25%);
    padding: 3rem;
    min-height: 300px;
}

.purchasetable {
    max-width: 800px;
    box-sizing: border-box;
    margin: 40px auto 40px auto;
}

.row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*margin-right: -15px;
    margin-left: -15px;*/
    text-align: initial !important;
}

.ticketprice {
    flex: 0 0 25%;
    font-family: "brandon-grotesque", sans-serif;
    color: #FFFFFF;
    font-weight: 700;
    justify-content: center;
    text-align: center;
}


.btnNext {
    width: 100%;
    margin: 2rem auto 2rem auto;
    text-align: center !important;
    box-sizing: border-box;
    padding: 1rem 1rem;
    background-color: var(--lightblue);
    text-transform: uppercase;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}


.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.titleBanner {
    background-color: var(--header);
    /* border-radius: 16px 16px 0px 0px; */
    color: #FFFFFF;
    height: 50px;
    display: flex;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding-left: 16px;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "brandon-grotesque", sans-serif;
}

.ticketcontain {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ticket {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: initial;
    align-items: center;
}

.ticketname {
    flex: 0 0 50%;
    font-family: "brandon-grotesque", sans-serif;
    color: #FFFFFF;
}

.price {
    color: #000000;
    text-align: center;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2rem;
}

.btnCheckout {
    width: 100%;
    color: #FFFFFF;
    text-align: center !important;
    box-sizing: border-box;
    padding: 1rem 0.2rem;
    margin: 2rem 0rem;
    background-color: var(--lightblue);
    text-transform: uppercase;
    color: #FFFFFF;
    /*font-weight: 700;*/
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    border-radius: 10px;
}

.amt {
    flex: 0 0 25%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-circle-minus {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.minus:hover .fa-circle-minus,
.plus:hover .fa-circle-plus {
    color: #fff;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

.fa-circle-plus {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.amtinput {
    height: 1.6rem;
    margin: 0 0.2rem;
    width: 2.5rem;
}

.amt input,
.amt .count {
    background: transparent;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    width: 2.5rem;
    -moz-appearance: textfield;
}

.amt input::-webkit-outer-spin-button,
.amt input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.separate {
    flex: 0 0 100%;
    max-width: 100%;
}

.separate::after {
    content: "";
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 14px;
    height: 20px;
}

.paymentcontainer {
    border-bottom: none;
    margin: auto;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    background-color: hsl(224 53% 25%);
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.paymentflex {
    margin-top: 3rem;
    width: 100%;
    margin: auto;
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    text-align: initial !important;
}

.datatable {
    padding: 2rem;
    background-color: var(--header);
    box-shadow: 0 10px 10px -10px var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /*margin: 3rem 0;*/
}

.pymnttitle {
    width: 100%;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
    /* padding: 2rem 0rem; */
}

.dtt {
    width: 70%;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
}

.name-row {
    display: flex;
    gap: 1rem;
}

.name-field {
    flex: 1;
}

.name-field .form-control {
    width: 100%;
}

.mailtitle {
    color: #FFFFFF;
    box-sizing: border-box;
    /*padding: 0.7rem 0;*/
    width: 100%;
    font-size: 0.9rem;
}

.cardtitle {
    color: #FFFFFF;
    box-sizing: border-box;
    padding: 0.7rem 0;
    width: 60%;
    font-size: 0.9rem;
}


.form-control {
    display: block;
    text-align: center;
    width: 100%;
    padding: 1rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-card {
    display: block;
    width: 60%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-data {
    display: block;
    width: 60%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 2rem;
    margin: auto;
}

.dataname {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.carddata {
    width: 60%;
    display: flex;
    justify-content: center;
}

.rpt {
    padding: 0.2rem 0 2rem 0;
    font-size: 0.7rem;
    width: 100%;
    color: #d0e6ff;
}

.card {
    padding: 0.2rem 0 1rem 0;
    font-size: 0.9rem;
    width: 70%;
    color: #ffffff;
}

.reftitle {
    width: 100%;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.refnum {
    width: 100%;
    color: #000000;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
    padding: 1.5rem;
}

.totalAmount {
    margin: 0px;
    font-size: 2rem;
    color: #fff;
}

.totalAmount h4,
.totalAmount h5 {
    font-weight: 700;
    color: #fff;
}

.mainMenuButtons {
    width: 50px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
div {
    font-family: "brandon-grotesque", sans-serif !important;
}

.companyLogo {
    max-width: none;
}

.form-check-input {
    margin-right: -2.2rem !important;
}

.modal-header {
    background-color: var(--lightblue);
}

.modal-content {
    border-radius: 10px;
}

.checkContainer {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    text-align: initial;
    align-items: center;
}

.checkBoxText {
    flex: 0 0 90%;
}

.modalTermsConditions {
    display: inline;
}

#flexCheckDefault.checkBox {
    height: 20px;
    display: flex;
    flex: 0 0 10%;
}

#idDataProcessingc.checkBox {
    height: 20px;
    display: flex;
    flex: 0 0 10%;
}

#idGeneralTermsc.checkBox {
    height: 20px;
    display: flex;
    flex: 0 0 10%;
}

#idMailingNewsc.checkBox {
    height: 20px;
    display: flex;
    flex: 0 0 10%;
}

#btn_modalClose {
    background-color: #67b8bb;
}

#btn_modalClose.btn {
    padding: 0.4rem;
    width: 6rem;
}

header {
    border-bottom: 1px solid var(--background);
}

#idshopList.row {
    margin: 0px !important;
}



@media screen and (max-width: 550px) {

    .paymentcontainer {
        padding: 0;
    }

    .checkBoxText {
        font-size: 0.8rem;
    }

    h5 {
        font-size: 0.8rem;
        font-weight: 600;
    }

    .amt a {
        margin: 0px 10px 0px 10px;
    }

    .ticketname {
        flex: 0 0 75%;
        font-size: 0.9rem;

    }

    .amt {
        flex: 0 0 100%;
        margin-top: 10px;
    }

    .container {
        padding: 0 1rem;
    }

    .title {
        margin-bottom: 1rem;
    }

    .title:after {
        width: 100%;
    }

    .wrapper {
        margin-top: 1rem;
    }

    .navbar-nav {
        left: -1rem;
    }
}

@media screen and (max-width: 1400px) {
    /*
    .lang-menu {
        display: none;
        position: relative;
        z-index: 1001;
    }
        */

    .navbar-nav {
        left: -1rem;
    }

    .header-nav {
        position: absolute;
        z-index: 1000;
        top: 100px;
        left: -2rem;
        background: #4096CC;
        flex-direction: column;
        justify-content: flex-start;
        width: 100vw;
        height: calc(100vh - 100px);
        transform: translateY(calc(-100% - 100px));
        transition: all 0.4s ease;
        overflow-y: scroll;
    }

    /*
    .logo {
        padding-top: 0;
        margin-right: auto;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1001;
        padding: 0;
    }
*/
    header .container {
        padding: 0 2rem;
        height: 80px;
    }

    header {
        /*position: fixed;*/
        overflow: visible;
        /*background: transparent;*/
        width: 100vw;
        transition: all 0.4s ease;
    }

    .headercontainer {
        width: 100%;
        align-items: center;
    }

    #navToggler {
        display: none;
        /*display: flex;*/
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1001;
        height: 3.75rem;
        width: 3.75rem;
        border-radius: 4rem;
        border: 3px solid #43220c;
        background: #FFC632;
    }

    #navToggler .box span {
        height: 3px;
        width: 100%;
        background: #43220c;
        border-radius: 3px;
        transition: all 0.4s ease;
    }

    #navToggler .box {
        width: 1.75rem;
        height: 1.25rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

}

@media screen and (max-width: 460px) {

    .purchasecontain {
        padding: 0.5rem;
    }

    .companyLogo {
        max-width: none;
    }

    .navbar {
        width: 80%;
        padding: 0.75rem;
    }

    .amt {
        flex: 0 0 100%;
    }

    .datatable2 {
        padding: 1rem;
    }

    .shopitem {
        width: 100%;
    }

    .wrapper {
        padding: 1rem 0;
    }

    .pymnttitle {
        font-size: 0.9rem;
        text-align: center;
    }

    .price {
        font-size: 1.4rem;
    }

    .section-title:after {
        width: 100%;
    }

    .amtinput {
        width: 1.6rem;
    }
}

@media screen and (max-width:768px) {

    .title {
        font-size: 1.75rem;
    }

    .newsletter-form .bcms-form .form-fn-submit .bcms-form-input .btn {
        height: 48px;
    }

    .newsletter-form {
        padding: 3rem 2rem;
    }

    .newsletter-form .bcms-form .form-fn-submit .bcms-form-input {
        display: flex;
        justify-content: center;
    }

    .newsletter-form .bcms-form .form-fn-submit .bcms-form-input .btn {
        padding: 1rem;
        line-height: 1;
    }

    .newsletter-form .bcms-form {
        flex-direction: row;
        align-items: center;
    }

    .newsletter-form .bcms-form .form-type-email {
        margin-bottom: 1.5rem;
    }

    .newsletter-form .bcms-form .bcms-form-row {
        width: 100%;
        text-align: center;
    }

    .newsletter-form .bcms-form {
        display: flex;
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-top .footer-col {
        align-items: center;
        text-align: center;
    }

    footer#footer .footer-top .footer-col.back-to-top {
        align-items: center;
    }
}

@media screen and (max-width: 991px) {
    .footer-logos {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Group tabs */
.group-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 3px solid var(--lightblue);
}

.group-tab {
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 28px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "brandon-grotesque", sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    margin-right: 4px;
    position: relative;
    top: 3px;
    transition: background-color 0.2s, color 0.2s;
    user-select: none;
}

.group-tab:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.group-tab-active {
    background-color: var(--lightblue);
    color: #FFFFFF;
    border-color: var(--lightblue);
    z-index: 1;
}

.group-tab-active:hover {
    background-color: var(--lightblue);
}

.group-products {
    padding-top: 16px;
}

@media screen and (max-width: 460px) {
    .group-tab {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}