.subscription-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    color: var(--primary-color);
    padding-bottom: 20px;
}
.subscription-box {
    position:relative;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease;
    border:2px solid var(--primary-color);
}.ticket-box{
    position:relative;
}
.subscription-box:hover {
    transform: translateY(-5px);
}

.subscription-box p {
    color: var(--secondary-color);
}

button {
    font-size: 14px;
    border-radius: 5px;
}
        /* General styles */
body {
    font-family: var(--primary-font), sans-serif;  
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--secondary-font), sans-serif;  
}

h1 {
    font-family: var(--h1-font),  Arial, Lucida, sans-serif;  
}

h2 {
    font-family: var(--h2-font),  Arial, Lucida, sans-serif;  
}

h3 {
    font-family: var(--h3-font),  Arial, Lucida, sans-serif;  
}

h4 {
    font-family: var(--h4-font),  Arial, Lucida, sans-serif;  
}

h5 {
    font-family: var(--h5-font),  Arial, Lucida, sans-serif; 
}

h6 {
    font-family: var(--h6-font),  Arial, Lucida, sans-serif;  
}

a {
    font-family: var(--a-font),  Arial, Lucida, sans-serif; 
}

div {
    font-family: var(--div-font),  Arial, Lucida, sans-serif;  
}

span {
    font-family: var(--span-font),  Arial, Lucida, sans-serif;  
}

ul {
    font-family: var(--ul-font),  Arial, Lucida, sans-serif; 
}

ol {
    font-family: var(--ol-font),  Arial, Lucida, sans-serif;  
}

li {
    font-family: var(--li-font),  Arial, Lucida, sans-serif;  
}

button {
    font-family: var(--button-font),  Arial, Lucida, sans-serif;  
}

input {
    font-family: var(--input-font),  Arial, Lucida, sans-serif;  
}

label {
    font-family: var(--label-font),  Arial, Lucida, sans-serif;  
}

textarea {
    font-family: var(--textarea-font),  Arial, Lucida, sans-serif;  
}

strong {
    font-family: var(--strong-font),  Arial, Lucida, sans-serif;  
}

header {
    font-family: var(--header-font),  Arial, Lucida, sans-serif;  
}

footer {
    font-family: var(--footer-font),  Arial, Lucida, sans-serif;  
}

        /* Default (Desktop View) */
.left-menu {
    display: block;
}

.mobile-header,
.burger-menu-links {
    display: none;
}

/* Mobile View */
@media (max-width: 768px) {
    .left-menu {
        display: none !important; /* Hide desktop menu */
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: var(--primary-color);
        border-bottom: 2px solid var(--highlight-two);
    }

    .mobile-header .logo {
        height:70px;
    }

    .burger-menu {
        font-size: 24px;
        cursor: pointer;
        color: var(--highlight-two);
    }

    .burger-menu-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 99%;
        background-color: var(--primary-color);        
        border: 1px solid var(--highlight-two);
        z-index: 1000;
        padding: 10px 0;
    }
    .burger-menu-links.active {
    display: block; /* Shown when active */
}
    .burger-menu-links a,
    .burger-menu-links button {
        display: block;
        color: var(--highlight-two);
        text-decoration: none;
        text-align: left;
        padding: 10px 20px;
        font-size: 16px;
        border-bottom: 1px solid #020f24;
        background: none;
        border: none;
        text-transform: uppercase;
    }

    .burger-menu-links a:hover,
    .burger-menu-links button:hover {
        background-color: var(--secondary-color);
        background: rgba(255, 255, 255, 0.1);
    }

    .burger-menu-links button {
        font-weight: 700;
        cursor: pointer;
    }
}

.account-page {
            display: flex;
            height: 100vh;
            width: 100%;
        }

        /* Left Side Menu */
        .left-menu {
            display: grid;
            grid-template-rows: 1fr 5fr 1fr;
            min-width:300px;
                   width: 400px;
    background-color: var(--primary-color);
    border: 3px solid #020f24;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
    margin: 20px 20px 10px 20px;
        }

        .left-menu .logo {
            justify-self: center;
            height: 100px;
        }

        .menu-links {
            position: relative;
            top: calc((100% - (50.6px * 3)) / 2);
        }

        .menu-links a {
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 20px;
    display: block;
    color: var(--highlight-two);
    text-decoration: none;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s;
        }

        .menu-links a:hover {
            color: var(--secondary-color);
        }

        /* Right Side Content */
        .right-content {
                font-family: var(--secondary-font), Helvetica, Arial, Lucida, sans-serif !important;
                width: 90%;
                display: flex;
                align-items: normal;
                flex-direction: column;
                    padding: 20px;
                margin-top: 25px;
        }

        .right-content h2 {
                font-size: 18px;
    margin-bottom: 20px;
    font-weight: 100;
    word-wrap: break-word;
    font-weight:600;
        }

        .form-group {
            margin-bottom: 10px;
            width: 100%;
            max-width: 80%;
        }

        .form-group label {
                display: block;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
        }
        .form-label {
            cursor: pointer;
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
        }
      

        .form-group input[type="checkbox"] {
            /* appearance: none; */
    /* -webkit-appearance: none; */
    /* width: 1px; */
    /* height: 1px; */
    background-color: var(--secondary-color) !important;
    /* border: 2px solid var(--primary-color); */
    border-radius: 4px;
    cursor: pointer;
    /* transition: background-color 0.3sease, border-color 0.3sease; */
    margin-top: 10px;
}
.form-group input[type="checkbox"]:checked {
    background-color: var(--primary-color)!important; /* Background color when checked */
    border-color: var(--highlight-two); /* Change border color when checked */
}

.form-group input[type="checkbox"]:focus {
    outline: 1px solid var(--highlight-two); /* Optional: Add focus indicator */
}


        .login-button {
            background-color: var(--secondary-color);
            padding: 12px 12px;
            font-weight: 700;
            text-transform: uppercase;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            cursor: pointer;
            border-radius: 4px;
            font-size: 14px;
            margin-top: 20px;
        }

        .login-button:hover {
            background-color: var(--primary-color);
            color: var(--secondary-color);
        }

        .forgot-password {
            display: block;
            margin-top: 30px;
            font-size: 14px;
            color: var(--primary-color);
            text-decoration: none;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }
        .form-group input,
        .form-group select {
                width: 100%;
                padding: 10px;
                margin-top: 3px;
                border: 2px solid var(--primary-color);
                border-radius: 5px;
                font-size: 16px;
                background-color: var(--secondary-color)!important;
                color: var(--primary-color);
                padding-inline: 10px;
                box-sizing: content-box;
        }
        .signup-button:hover {
            background-color: var(--primary-color)!important;
            border: 2px solid var(--secondary-color)!important;
            color: var(--secondary-color)!important;
        }
        /* Submit button */
        .signup-button {
        background-color: var(--secondary-color) !important;
        padding: 12px 12px !important;
        font-weight: 700;
        text-transform: uppercase;
        border: 2px solid var(--primary-color) !important;
        color: var(--primary-color) !important;
        cursor: pointer;
            border-radius: 4px;
            font-size: 14px;
            margin-top: 20px;
        }

    
        .left-menu button {
        width: 100px;
    height: auto;
 
}
.ticket-grid{
    justify-content: left;
}
        /* Mobile View */
        @media (max-width: 768px) {
            
            .styled-p {
        padding-right: 0!important;
        font-size: 12px!important; 
    }
    
            .ticket-grid{
    justify-content: center;
}
            .account-page {
                flex-direction: column;
            }

            

            .right-content {
                width: 90%;
                padding: 5%;
                margin-top: 2%;
            }
            .form-group {
                margin-bottom: 10px;
                width: 100%;
                max-width: 90%;
                }
            .banner {
                max-width:94%!important;
            }
        }
        @media (min-width: 769px) and (max-width: 1178px) {
                .left-menu{
                        padding: 20px;
                }
        }
        table {
        width: 95%;
        border-collapse: collapse;
        color: var(--primary-color);
    }

    th {
        text-align: left;
        width: 60%;
        padding: 10px 0;
        color: var(--primary-color);
        text-transform: uppercase;
        font-size: 14px;
    }

    th:nth-child(2) {
        text-align: right;
        width: 40%;
    }

    td {
        text-align: left;
        padding: 10px 0;
        font-size: 14px;
    }

    td:nth-child(2) {
        text-align: right;
    }

    tr:first-child {
        border-bottom: 2px solid var(--primary-color);
    }

    tr:last-child {
        border-bottom: 2px solid var(--primary-color);
    }

    tr:last-child td {
        font-weight: bold;
        color: var(--primary-color);
        text-transform: uppercase;
    }
    
    .styled-p {
        padding-right: 5%;
        margin: 0; 
        font-size: 16px; 
        color: var(--primary-color); 
        float: right;
    }
        
        .billing-box {
            margin-top: 20px;
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        
        .oneofftable table {
        width: 95%;
        border-collapse: none!important;
        color: var(--primary-color);
    }

.oneofftable tr:first-child {
        border:none !important;
    }
    
    .oneofftable tr:last-child {
        border-bottom: 2px solid var(--primary-color)!important;border-top:0;
    }

    .oneofftable tr:last-child td {
        font-weight: normal;
        color: var(--primary-color);
        text-transform: initial;
    }
    
    
/* General styles for the button and the banner */
/* Lock scrolling */
body.lock-scroll {
    overflow: hidden;
}

/* Full-page overlay */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

/* Cookie banner */
#ccc {

}

#ccc a{
    text-decoration: none;
}
#ccc a:hover{
    color: var(--primary-color);
}
.ccc-button-left {
  position: fixed;
    bottom: -22px;
    left:-1px;
    padding: 0px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 20%;
    z-index: 1000;
}

.ccc-slide-left {
  position: fixed;
  top: 0;
  width: 300px;
  height: 100%;
  background-color: var(--secondary-color);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-x: scroll;
}

.ccc-slide-left.open {
  left: 0; /* Slide in when active */
}

#ccc-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

#ccc-title {
  font-size: 18px;
}

#ccc-button-holder {
  margin-top: 20px;
}

.ccc-button {
  background-color: var(--primary-color);
  color: var(--highlight-two);
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  font-weight:600;
  font-size:14px;
}

.ccc-button:hover {
  background-color: var(--highlight-one);
}

.checkbox-toggle {
  display: flex;
  align-items: center;
}

.checkbox-toggle input {
  margin-right: 10px;
}

.checkbox-toggle-on,
.checkbox-toggle-off {
  margin-right: 5px;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--highlight-two);
  border-radius: 22px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(18px);
}
#ccc-end{
padding-bottom: 30px;
}   
#ccc-close:hover{
    color: var(--highlight-one);
}
.h-captcha{
 
 margin: 20px 0 0 0;   
}

.banner {
 margin-bottom: 10px;
    width: 100%;
    max-width: 83%;
}   
}