@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
    --white: #fff;
    --black: #000;
    --primary: #f7910e;
    --secondary: #ecb360;
    --heading-text: "Bright", serif;
    --body-text: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: url("../images/bgoverlay.png") #331200;
    overflow-x: hidden;
    font-family: var(--body-text);
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}

/* How to add New font */
@font-face {
    font-family: "Bright";
    src: url("../fonts/bright.otf");
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2;
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-family: var(--heading-text);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* Lenis Smooth Scroll */

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* loader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

/* loader */

/* btn css */

.themeBtn {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.875rem 2.625rem !important;
    border-radius: 30px;
    line-height: normal;
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-align: center;
}

.themeBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: -33;
}

.themeBtn.uploadBtn::before {
    background: #331200;
}

.themeBtn.dark::before {
    background-color: var(--black);
}

.themeBtn.light::before {
    background-color: var(--secondary);
}

.themeBtn::after {
    content: "";
    position: absolute;
    top: 100px;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px var(--white) inset,
    0 0 0 20px rgba(255, 255, 255, 0.25) inset;
    background-color: var(--secondary);
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn.dark::after {
    box-shadow: 0 0 0 10px var(--black) inset,
    0 0 0 20px rgba(0, 0, 0, 0.25) inset;
    background-color: var(--white);
}

.themeBtn:hover::after {
    top: 50px;
    transform: scale(3);
}

.themeBtn:hover {
    color: var(--white);
}

.themeBtn.dark:hover {
    color: var(--black);
}


.themeBtn.light {
    padding: 0.875rem 2rem !important;
}

.themeBtn.light:hover {
    color: var(--black) !important;
}

.themeBtn.light:hover::after {
    background-color: var(--white);
}

/* btn css */

.heading {
    font-size: 3.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Header */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding: 0;
    transition: 0.3s ease-in-out;
}

.top-bar {
    background-color: var(--secondary);
    padding: 10px 0;
}

.socialLinks {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--white);
}

.socialLinks a {
    color: var(--white);
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid var(--white);
    border-radius: 50%;
    font-size: 11px;
}

.socialLinks a:hover {
    background-color: var(--black);
    border-color: var(--black);
}

.top-bar .links {
    display: flex;
    justify-content: end;
}

.top-bar .links li a {
    padding: 0 1rem;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.5s ease;
}

.top-bar .links li a:hover {
    color: var(--black);
}

.top-bar .links li + li a {
    border-left: 1px solid var(--white);
}

.an-navbar {
    padding: 1rem 0 0 0;
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-nav .nav-item .nav-link {
    padding: 0 0;
    display: inline-block;
    position: relative;
}

/*.navbar-nav .nav-item .btn {*/
/*    font-size: 1.375rem;*/
/*    color: var(--white);*/
/*    box-shadow: none !important;*/
/*}*/
.navbar-nav .nav-item .nav-link.centerLogo {
    margin-top: -1rem;
}

li.nav-item {
    flex: 1;
    text-align: center;
}

li.nav-item:last-child {
    text-align: end;
}

/* Toggle Menu  */

.btn-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-menu span {
    width: 50px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--white);
    display: block;
    transition: 0.5s ease;
}

.btn-menu span:nth-child(2) {
    width: 36px;
}

menu {
    width: 100%;
    height: 100vh;
    background-color: var(--secondary);
    padding: 0;
    position: fixed;
    top: -110%;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 110;
    transition: 0.5s ease;
}

menu ul {
    display: flex;
    flex-wrap: wrap;
}

menu li {
    width: 50%;
    transform: translateY(50px);
    opacity: 0;
    transition: 0.5s ease;
    transition-delay: 0.35s;
}

menu li a {
    font-size: 3rem;
    color: var(--white);
}

menu li a:hover {
    color: var(--black);
}

menu ul li + li {
    margin-top: 1rem;
}

.menu-open menu {
    top: -1rem;
}

.btn-menu {
    box-shadow: none !important;
}

.menu-open .btn-menu span:nth-child(1) {
    transform: rotate(45deg) translate(12px, 15px);
}

.menu-open .btn-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -5px);
}

.menu-open .themeBtn.light {
    outline: 1px solid var(--white);
    color: var(--white);
}

.menu-open .btn-menu span:nth-child(2) {
    width: 0;
}

.menu-open menu li {
    opacity: 1;
    transform: translateY(0px);
    text-transform: capitalize;
}

/*.menu-open menu li:nth-child(odd) {*/
/*    transition-delay: 0.5s;*/
/*}*/

/*.menu-open menu li:nth-child(even) {*/
/*    transition-delay: 1s;*/
/*}*/


.menu-open menu li:nth-child(1) {
    transition-delay: 0.05s;
}

.menu-open menu li:nth-child(2) {
    transition-delay: 0.1s;
}

.menu-open menu li:nth-child(3) {
    transition-delay: 0.15s;
}

.menu-open menu li:nth-child(4) {
    transition-delay: 0.2s;
}

.menu-open menu li:nth-child(5) {
    transition-delay: 0.25s;
}

.menu-open menu li:nth-child(6) {
    transition-delay: 0.3s;
}

.menu-open menu li:nth-child(6) {
    transition-delay: 0.35s;
}

.menu-open menu li:nth-child(7) {
    transition-delay: 0.4s;
}

.menu-open menu li:nth-child(8) {
    transition-delay: 0.45s;
}

.menu-open menu li:nth-child(9) {
    transition-delay: 0.5s;
}

.menu-open menu li:nth-child(10) {
    transition-delay: 0.55s;
}


a#navbarDropdown span {
    display: block;
}

.dropdown-toggle::after {
    margin-right: -2rem;
    float: right;
    margin-top: -1rem;
}


/*.menu-open menu li:nth-child(4) {*/
/*    transition-delay: 1s;*/
/*}*/

/*.menu-open menu li:nth-child(5) {*/
/*    transition-delay: 1.2s;*/
/*}*/

/*.menu-open menu li:nth-child(6) {*/
/*    transition-delay: 1.4s;*/
/*}*/

/*.menu-open menu li:nth-child(7) {*/
/*    transition-delay: 1.6s;*/
/*}*/

/* Toggle MEnu */

/* ! Header */

/* Main Hero Section */
.main-slider {
    padding: 0;
    height: 1070px;
    background: url("../images/mainbg.png") no-repeat center bottom / cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.main-slider .swiper-button-prev,
.main-slider .swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--white);
    color: var(--white);
    transition: 0.5s ease;
}

.main-slider .swiper-button-prev::after,
.main-slider .swiper-button-next::after {
    font-size: 1.5rem;
}

.main-slider .swiper-button-prev {
    left: 10rem;
}

.main-slider .swiper-button-next {
    right: 10rem;
}

.main-slider .swiper-button-prev:hover,
.main-slider .swiper-button-next:hover {
    background-color: var(--white);
    color: var(--primary);
}

.weekcard figure img {
    min-height: 405px;
    object-fit: cover;
}

.weekcard > div {
    padding: 10px 0;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.weekcard > div::before {
    content: "";
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    height: 250px;
    border-radius: 50%;
    background-color: var(--primary);
    z-index: -1;
    transition: 0.75s ease;
}

.weekcard:hover > div::before {
    opacity: 1;
    transform: scale(2.5);
}

.weekcard a {
    color: var(--white);
    text-decoration: underline !important;
}

.weekcard h4 {
    font-size: 1.875rem;
    letter-spacing: 4px;
}

/* !@Main Hero Section */

/* Upcoming Show Section */
.showcard > div {
    padding: 1rem 0;
}

.showcard figure img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.showcard span {
    color: var(--primary);
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
}

.showcard ul {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    margin: 1rem 0;
}

.showcard ul li {
    font-size: 1.25rem;
}

.showcard ul li + li {
    margin-top: 5px;
}

/*.showcard ul li a {*/
/*    color: var(--white);*/
/*}*/



.showcard ul li a {
    color: var(--white);
    display: flex
;
    align-items: center;
    text-transform: capitalize;
    font-size: 14px;
}



.showcard ul li i {
    width: 36px;
    color: var(--primary);
    margin-left: 12px;
}

/* !@Upcoming Show Section */

/* Footer */
footer {
    background-color: var(--secondary);
    padding-top: 4rem;
}

footer h2 {
    color: var(--white);
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

footer a {
    color: var(--white);
}

footer a:hover {
    color: var(--black);
}

footer .links li {
    margin-bottom: 1rem;
}

footer .socialLinks {
    gap: 30px;
    margin-top: 3.75rem;
}

footer .socialLinks a {
    font-size: 1.5rem;
    border: 0;
}

footer .newsletter {
    display: flex;
    border: 1px solid var(--white);
    border-radius: 33px;
    padding: 10px 1rem;
}

footer .newsletter input {
    color-scheme: light dark;
    background-color: transparent !important;
    border: 0;
    box-shadow: none !important;
}

footer .newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

footer .newsletter button {
    color: var(--white);
}

.copyRight {
    border-top: 1px solid rgba(242, 242, 242, 0.6);
    padding: 1.75rem 0;
    margin-top: 3.75rem;
}

.copyRight p {
    color: var(--white);
    margin: 0;
}

.copyRight .options {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 76px;
}

.copyRight .options a {
    text-decoration: underline !important;
    color: var(--white);
}

.copyRight .options a.btn {
    text-decoration: none !important;
    color: var(--secondary);
    background-color: var(--white);
    border-radius: 5px;
    width: 36px;
    height: 36px;
    display: grid;
    place-content: center;
}

/* ! Footer */

/* ========== INNER PAGE ========== */

.inner-page {
    height: 740px;
    background: url("../images/mainbg.png") center bottom/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.inner-page h2 {
    font-size: 6.625rem;
    font-weight: 400;
}

.listItem {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 635px;
    margin: 2.5rem 0;
}

.listItem li + li {
    margin-top: 10px;
}

.listItem li label {
    display: flex;
    gap: 30px;
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--heading-text);
}

.listItem li label input {
    width: 20px;
    accent-color: var(--primary);
    border: 0;
}

.map {
    margin-top: 5rem;
    border-radius: 30px;
    overflow: hidden;
}

.meetcard {
    text-align: center;
    cursor: pointer;
}

.meetcard figure {
    position: relative;
    z-index: 1;
}

/* .meetcard figure::before {
    content: "";
    position: absolute;
    top: 8px;
    width: 318px;
    height: 318px;
    margin: auto;
    border-radius: 50%;
    background-color: var(--secondary);
    z-index: -1;
    transition: 0.5s ease;
} */

.meetcard:hover figure::before {
    background-color: var(--primary);
}

.meetcard h4 {
    text-transform: uppercase;
    font-size: 3.125rem;
    margin: 1.5rem auto 6.375rem;
}

/* .userDetail-section figure {} */

.userDetail-section figure {
    position: relative;
    z-index: 1;
}

.userDetail-section figure img {
    border: 5px solid var(--secondary);
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.userDetail-section figure::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    width: 100%;
    aspect-ratio: 1;
    margin: auto;
    border-radius: 50%;
    background-color: var(--secondary);
    z-index: -1;
    transition: 0.5s ease;
}

.userDetail-section .content h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
}

.userDetail-section .content div {
    margin-top: 3rem;
}

.userDetail-section .content div h5 {
    font-size: 1.5625rem;
    margin-bottom: 10px;
}

.userDetail-section .socialLinks a {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.userDetail-section .row + .row {
    margin-top: 7rem;
}

.userDetail-section .show-img {
    min-height: 548px;
    object-fit: cover;
}

.about-section figure {
    position: relative;
    text-align: right;
}

.about-section figure img:nth-child(2) {
    position: absolute;
    left: -2rem;
    bottom: -2rem;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.about-section .qoute {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--white);
}

.about-section .qoute h4 {
    font-size: 1.875rem;
    letter-spacing: 2px;
    margin: 0;
}

.signupForm {
    margin-top: 2rem;
}

.signupForm input,
.signupForm select,
.commentForm .signupForm textarea {
    border: 1px solid var(--secondary);
    height: 61px;
    border-radius: 35px;
    background-color: transparent !important;
    color-scheme: light dark;
    padding: 0 1.5rem !important;
    box-shadow: none !important;
}

.signupForm input:focus {
    border-color: var(--secondary);
}

.signupForm input::placeholder {
    color: rgba(255, 255, 255, 0.64);
}

/* Calender CSS */
.calendar-inner {
    width: max-content;
    overflow-x: auto;
}

.evo-calendar,
.calendar-inner,
.calendar-events {
    background-color: var(--secondary);
    border-radius: 1rem 0 0 1rem;
    border: 0;
}

.calendar-events {
    display: none;
}

.calendar-sidebar {
    background-color: var(--primary);
    box-shadow: 15px 0 20px 0 rgba(0, 0, 0, 0.12);
}

.calendar-sidebar > span#sidebarToggler {
    box-shadow: 0px 3px 10px 0 rgba(0, 0, 0, 0.12);
}

.sidebar-hide .calendar-inner {
    width: calc(100% - 0px);
}

button.icon-button > span.bars::after {
    width: 16px;
    height: 4px;
    border-radius: 4px;
}

button.icon-button > span.bars::before {
    width: 27px;
    height: 4px;
    border-radius: 4px;
}

button.icon-button > span.bars {
    width: 24px;
    height: 4px;
    border-radius: 4px;
}

.calendar-sidebar > .calendar-months > li.active-month {
    background: var(--secondary) !important;
}

.day.calendar-active.calendar-today,
tr.calendar-body .calendar-day .day.calendar-active,
tr.calendar-body .calendar-day .day.calendar-active:hover {
    background: #f7910e !important;
    border: unset !important;
    color: var(--black) !important;
}

tr.calendar-body .calendar-day .day {
    color: var(--black) !important;
    font-size: 22px;
}

tr.calendar-header .calendar-header-day {
    font-size: 30px;
    color: var(--black);
    font-family: "Bright";
    padding: 1.75rem;
}

th[colspan="7"] {
    font-size: 37px;
    color: var(--black);
    font-family: "Bright";
}

.submissionForm {
    background-color: var(--secondary);
    border-radius: 15px;
    padding: 5.125rem;
}

.submissionForm input,
.submissionForm .img-upload {
    border: 1px solid var(--black);
    border-radius: 50px;
    padding: 0 1.5rem !important;
    width: 100%;
    height: 65px;
    color: var(--black) !important;
    margin-bottom: 1.875rem;
    background-color: transparent !important;
    color-scheme: light dark;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.submissionForm .img-upload i {
    margin-left: auto;
}

.select2-selection__rendered {
    height: 30px !important;
}

.select2-selection {
    border: 1px solid var(--black) !important;
    border-radius: 50px !important;
    padding: 0 1.5rem !important;
    width: 100%;
    height: 65px;
    color: var(--black) !important;
    margin-bottom: 1.875rem;
    background-color: transparent !important;
    color-scheme: light dark;
    box-shadow: none !important;
    display: flex !important;
    align-items: center;
}

.submissionForm input:focus,
.submissionForm select:focus {
    border-color: var(--black);
}

.submissionForm select option {
    background-color: var(--primary);
    color: var(--white);
}

.submissionForm input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.text-dark {
    color: var(--black) !important;
}

/* Upload File Events */
.file {
    width: 100%;
    height: 300px;
    background-color: transparent;
    z-index: 1;
    color: #000;
    position: relative;
    text-align: center;
    padding-top: 45px;
    margin: 50px auto;
    border: 1px solid #000;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.file span {
    font-size: 30px;
    position: relative;
    margin-bottom: 0.25rem;
}

.file input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
}

.file-info {
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    padding: 1rem 1.75rem;
    transition: opacity 0.3s ease;
    border: 1px solid #000000;
    border-radius: 50px;
}

/* Comedian Network page */
.comedianText p {
    margin-bottom: 1rem;
}

.comedianTable {
    background: var(--secondary);
    border-radius: 0.5rem;
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.comedianTable table {
    width: 100%;
}

.comedianTable .subTitle {
    font-size: 1.25rem;
    font-family: var(--heading-text);
    text-transform: uppercase;
    line-height: 0.9;
    white-space: nowrap;
}

.comedianTable__content {
    width: 100%;
    height: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.3rem;
    border-radius: 50px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.comedianTable__content,
.comedianTable__content :is(th, td) {
    border: 1px solid #1d0000;
}

.comedianTable__content th {
    width: 25%;
}

.comedianTable__content :is(th, td) {
    padding: 1.75rem 0;
    height: 100px;
}

.comedianTable__content td img {
    width: 40px;
}

.comedianTable__text .subTitle {
    height: 100px;
}

.comedianTable__textHead tbody tr {
    width: 25%;
}

.comedianTable__textHead tr .subTitle {
    text-align: center;
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.comedianTable > .themeBtn {
    width: fit-content;
    display: block;
    margin: 2.5rem auto 0;
}

/* Popup */
.popup .modal-dialog {
    max-width: 1000px;
    margin: 1.75rem auto;
}

.popup .modal-content {
    background: var(--secondary);
    padding: 4rem 10rem;
}

.popup .close {
    font-size: 2rem;
    font-weight: 500;
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5rem 2rem;
}

.popup :is(.heading, .price, p) {
    color: #000;
    text-align: center;
    margin: 0;
}

.popup .price {
    font-weight: 600;
}


.showcard.showcard2 h4 {
    font-size: 49px;
    text-transform: uppercase;
    font-family: 'Bright';
}


.row.upcmngshow {
    border-bottom: 2px solid #9F8C80;
    padding-bottom: 5rem;
}

.row.upcmngshow figure img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
}


section.upcoming-section.upcmng2 {
    padding: 10rem 0 2rem 0;
}


/*  */

.loginPopup .modal-content {
    background: var(--secondary);
    border-radius: 15px;
}

.loginPopup .modal-content .modal-header {
    border: 0;
    padding-bottom: 0;
}

.loginPopup .modal-content .modal-body {
    padding-top: 0;
    padding: 5rem;
    padding-top: 0;
}

.loginPopup .signupForm input,
.commentForm .signupForm input,
.commentForm .signupForm textarea,
.commentForm .signupForm select,
.dashboardInfo .signupForm input {
    border-color: var(--black);
    color: var(--black);
}

.signupForm select {
    margin-right: 0.5rem;
    appearance: none;
    background: url(../images/chevron.png) no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.commentForm .signupForm textarea {
    height: unset;
}

.loginPopup .signupForm input select::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.signupForm .formdata {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.signupForm .formdata a,
.signupForm .formdata p {
    color: #000;
}

.formdata a.text-decoration {
    text-decoration: underline !important;
}

.showcard {
    margin: 0 0 2rem;
}

.object-fit {
    width: 100%;
    object-fit: cover;
}

.eventsDetail-sec {
    border-bottom: 1px solid #dddddd;
}

.eventsDetail-content.showcard span {
    font-size: 1rem;
}

.eventsDetail-content h4 {
    font-size: 3rem;
    text-transform: uppercase;
}

.commentContent {
    background-color: var(--secondary);
    padding: 4rem 3rem;
    border-radius: 1rem;
    position: relative;
}

.commentContent :is(h3, h4, h6, p, a, i) {
    color: var(--black);
}

.commentContent .heading {
    letter-spacing: 0;
}

.commentCard {
    position: relative;
    padding: 2.25rem 0;
    border-bottom: 1px solid #C48E43;
}

.commentCard-head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.commentCard-head img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.commentCard-title h4 {
    font-size: 2.25rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1;
    margin: 0 0 0.15rem;
}

.commentCard-title h6 {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Poppins';
    text-transform: uppercase;
    text-decoration: underline;
}

.commentCard-content p {
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 0 5.25rem;
}

.commentCard-btn {
    position: absolute;
    top: 50px;
    right: 0;
}

.commentCard-btn a {
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
}

.commentCard-btn a span {
    margin-left: 0.5rem;
}

.commentCard-inner {
    padding: 1rem 0 0;
    border: none;
    margin-left: 4.5rem;
}

.evo-calendar {
    box-shadow: 15px 0 20px 0 rgba(0, 0, 0, 0.12) !important;
    display: flex;
}

.searchScedule {
    padding: 2rem 1rem;
    height: 620px;
    overflow: hidden;
    overflow-y: visible !important;
    margin-top: 1rem
}

.searchScedule::-webkit-scrollbar {
    height: 3px;
    width: 10px;
    height: 620px;
}

.searchScedule::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 1rem;
}

.searchScedule::-webkit-scrollbar-track {
    background-color: #371900;
    padding: 2px;
    border-radius: 1rem;
}

.searchScedule h3 {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--black);
}

.searchScedule input {
    width: 100%;
    border: 1px solid var(--black);
    height: 60px;
    border-radius: 50px;
    padding: 0 1.5rem;
    margin: 0 0 2rem;
    background-color: var(--secondary);
}

.searchScedule h2 {
    font-size: 1rem;
    color: var(--black);
    font-weight: 600;
    font-family: 'Poppins';
    margin: 0;
}

.searchScedule h4 {
    font-size: 2.25rem;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.searchScedule ul li {
    border-top: 1px solid #828282;
    padding: 1rem 2.5rem 1rem 0;
}

.searchScedule ul li h5 {
    font-size: 1.5rem;
    text-transform: capitalize;
    color: var(--black);
}

.searchScedule ul li span {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.searchScedule ul li p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 10px;
}

.searchScedule ul li a {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
    border-bottom: 1px solid;
}

.bgSecondary {
    background-color: var(--secondary);
    border-radius: 1rem;
}

/* dashboard */
.headerBg {
    background: url("../images/dashboard-bg.png") no-repeat center/ cover;
    /*border-bottom: 5px solid var(--primary);*/
    position: relative;
    padding: 0 0 1rem;
    z-index: 999;
}

a.dropdown-item {
    color: var(--black) !important;
}


.userProfile-option,
.dashboardCard-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.userProfile-option img {
    width: 70px;
    height: 70px;
    border: 2px solid var(--white);
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

.userProfile-name a {
    font-size: 1.5rem;
    font-family: var(--heading-text);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
}

.dashboardCard {
    padding: 4rem 6rem 4rem 4rem;
    height: 100%;
}

.dashboardCard :is(h2, h3, h4) {
    text-transform: uppercase;
    color: var(--black);
}

.dashboardCard-user {
    padding: 0 0 2rem;
}

.dashboardCard-user img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

.dashboardCard-title h4 {
    font-size: 1.75rem;
}

.dashboardCard-title .themeBtn {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem;
}

.dashboardCard .themeBtn::before {
    background-color: #371804;
}

.dashboardCard .themeBtn::after {
    background-color: var(--primary);
}

.dashboardInfo {
    padding: 2rem 0 0;
    border-top: 1px solid #C89046;
}

.dashboardInfo-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 1.5rem;
}

.dashboardInfo-title h3 {
    font-size: 2.6rem;
    letter-spacing: 2px;
    line-height: 1;
    margin: 0;
}

.dashboardInfo-title .themeBtn {
    padding: 0.6rem 1.25rem !important;
}

.dashboardInfo-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dashboardInfo-content ul li {
    font-size: 1.15rem;
    font-weight: 500;
    font-family: var(--body-text);
    text-transform: capitalize;
    margin: 0 0 1.25rem;
    color: var(--black);
}

.dashboardInfo-content .infoDescription li {
    font-weight: 600;
}

.purchaseCard-info {
    padding: 3rem 3.5rem;
}

.purchaseCard h3 {
    font-size: 3.25rem;
    text-transform: uppercase;
    color: var(--black);
}

.purchaseCard h3 span {
    font-size: 2.25rem;
}

.purchaseCard h4 {
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--body-text);
    color: var(--black);
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.purchaseCard .themeBtn:hover::after {
    transform: scale(5);
}

.purchaseCard .themeBtn:last-child::before {
    background-color: var(--secondary);
}

.purchaseCard .themeBtn:last-child::after {
    background-color: var(--primary);
}

.dashboardInfo .signupForm input {
    height: 55px;
}

.infoTitle {
    font-size: 1.15rem;
    font-weight: 500;
    font-family: var(--body-text);
    text-transform: capitalize;
    margin: 0 0 1.25rem;
    color: var(--black);
}

.infoTitle .themeBtn::before {
    background: var(--primary) !important;
}

.comedianTable .table-bordered td,
.comedianTable .table-bordered th,
.comedianTable .table-bordered,
.comedianTable .table-bordered thead td,
.comedianTable .table-bordered thead th {
    border-width: 2px;
    border-color: #000;
    text-transform: capitalize;
}


/*  REVISION    */
.showcard span {
    font-size: 1rem;
}

.showcard h4 {
    font-size: 2rem;
}

.showcard ul {
    font-size: 1rem;
}

.meetcard figure img {
    width: 318px;
    height: 318px;
    border-radius: 10px!important;
}

.comedianText p {
    margin-bottom: 1rem;
    font-size: 1rem;
    /* font-weight: 700; */
}


.comedianTable table tr td:not(:first-child) {
    text-align: center;
}

.comedianTable table tr td img {
    opacity: 0.5;
}

.about-section figure img {
    width: 600px;
    height: 600px;
}

.about-section figure img:nth-child(2) {
    width: 300px;
    height: 300px;
}

footer .socialLinks a {
    width: 3rem;
    height: 3rem;
}

footer .socialLinks {
    gap: 1rem;
}

footer .socialLinks a:hover {
    color: white;
}


/*.showcard ul li {*/
/*    font-size: 1.25rem;*/
/*}*/



.showcard ul li {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.comedianTable-wrap {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
}

.comedianTable-wrap.active {
    filter: blur(0);
    pointer-events: all;
}

.eventdate {
    color: var(--primary)
}

#termsCheckbox {
    height: auto;
    margin-top: -9px;
    margin-right: 5px;
}

.termModal .modal-content {
    padding-right: 0 !important;
    padding-bottom: 0 !important;
}

.termModal .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
    color: var(--white);
    background: var(--primary);
    opacity: 1 !important;
    z-index: 1;
}

#termsModal .modal-body h2, h3, p {
    color: #000;
}

#termsModal ul {
    list-style-type: disc; /* Ensure bullets are shown */
    margin-left: 20px; /* Add some margin to indent the list */
}

#termsModal li {
    margin-bottom: 10px; /* Optional: add some spacing between list items */
}

.txt-orange {
    color: var(--primary);
}

.web_address {
    font-size: 16px;
}

ul.socialLink.main-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

ul.socialLink.main-social li a i {
    height: 60px;
    width: 60px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    border: 1px solid #fff;
}
