/*
Theme Name: CTS-Theme
Theme URI: https://concertticketsource.com
Author: GES
Text Domain: concert-ticket-source
*/
:root {
  --tn-primary: #1988b5;
  --tn-primary-hover: #00408a;
  --tn-accent: #ff9800;
  --tn-muted-bg: #f5f5f7;
} 
:root {
  --bs-primary: #1988b5 !important;
}


body {
/*   font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #111827;
  overflow-x: hidden !important;
}

/* ==================================================
   HEADER – BASE
================================================== */

.site-header {
    border-bottom: 1px solid #eee;
}

.site-header .navbar-brand img.logo {
    max-height: 48px;
    width: auto;
}

/* ==================================================
   DESKTOP MENU
================================================== */

@media (min-width: 992px) {

    .navbar-nav {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .navbar-nav > li {
        list-style: none;
        position: relative;
    }

    .navbar-nav > li > a {
        color: #111 !important;
        font-weight: 600;
        font-size: 15px;
        padding: 6px 2px;
        position: relative;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .navbar-nav > li > a:hover {
        color: #1f85b5 !important;
    }

    /* underline */
    .navbar-nav > li > a::after {
        content: "";
        position: absolute;
        left: 0;
        top: -4px;
        width: 0;
        height: 2px;
        background: #1f85b5;
        transition: width 0.25s ease;
    }

    .navbar-nav > li > a:hover::after,
    .navbar-nav > li.current-menu-item > a::after {
        width: 100%;
    }

    /* ---------- Desktop Submenu ---------- */

    .navbar-nav .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 235px;
        background: #fff;
        border-radius: 5px;
        padding: 10px 0;
		    box-shadow: 0px 0px 5px 0px #1f85b5;
/*         box-shadow: 0 10px 30px rgba(0,0,0,0.12); */
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
        z-index: 999;
    }

    .navbar-nav .menu-item:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navbar-nav .sub-menu li {
        list-style: none;
    }

    .navbar-nav .sub-menu a {
        display: block;
        padding: 10px 16px;
        color: #333;
        font-weight: 500;
        text-decoration: none;
    }

    .navbar-nav .sub-menu a:hover {
        background: #f5f7fa;
        color: #1f85b5;
    }
}

/* ==================================================
   MOBILE MENU (CLEAR & IDENTIFIABLE)
================================================== */

@media (max-width: 991px) {

    /* mobile dropdown container */
    .navbar-collapse {
        background: #ffffff;
        padding: 18px;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        margin-top: 12px;
    }

    .navbar-nav {
        display: block;
    }

    /* all menu links */
    .navbar-nav > li > a {
        display: block;
        padding: 14px 6px;
        font-size: 16px;
        font-weight: 600;
        color: #111 !important;
        text-decoration: none;
        border-top: 1px solid #eee;   /* 🔥 TEXT KE UPAR BORDER */
    }

    /* ---------- Parent menu (submenu wala) ---------- */

    .menu-item-has-children > a {
        background: #f8f9fb;
        border-radius: 6px;
        padding-right: 34px;
        position: relative;
    }

    /* arrow – strong & visible */
    .menu-item-has-children > a::after {
        content: "▾";
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        color: #0d6efd;
    }

    /* ---------- Submenu ---------- */

    .navbar-nav .sub-menu {
        display: none;
        padding-left: 14px;
        margin-top: 6px;
        border-left: 3px solid #0d6efd;
    }

    .navbar-nav .sub-menu a {
        font-size: 15px;
        font-weight: 500;
        padding: 10px 0;
        color: #444 !important;
    }

    .navbar-nav .sub-menu a:hover {
        color: #1988b5 !important;
    }

    /* opened submenu */
    .navbar-nav .sub-menu.open {
        display: block;
    }
}







.btn-primary{
		background: #1988b5;
	color:#fff;
	border-color: #1988b5;
}
.btn-primary:hover{
	background: #000;
	color:#fff;
	border-color: #000;
}

.btn-outline-primary{
	border-color: #1988b5;
	color: #1988b5;
}
.btn-outline-primary:hover{
	border-color: #1988b5;
			background: #1988b5;
	color:#fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: #ffffff;
}

.hero-search {
  background: linear-gradient(135deg, #f5f7fb 0%, #ffffff 60%);
}

.hero-search h1 {
  font-weight: 700;
}

.hero-search .form-control-lg {
  border-radius: 0.5rem;
}

.hero-search .btn-lg {
  border-radius: 0.5rem;
}

.events-list .card {
  border-radius: 0.75rem;
}

.events-list .card-title {
  font-weight: 600;
}

.events-list .card .btn {
  border-radius: 999px;
}

.footer-top {
  background-color: #0b192f;
  color: #fff;
}

.footer-top a {
  color: #e5e7eb;
	text-decoration: unset;
}
.footer-top i {
    font-size: 20px;
}

.footer-bottom {
  background-color: #020617;
  color: #9ca3af;
  font-size: 0.875rem;
}
.list-unstyled .menu-item{
	margin-bottom: 5px;
}
.badge-today {
    background-color: #ff2f00;
    color: #ffffff;
    font-weight: 500;
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    font-size: 0.75rem;
}
#tn-maps {
    height: 900px !important;
}

#tn-maps-inner {
    height: 100% !important;
}

.sea-map-inner {
    height: 100% !important;
}
/* 
@media screen and (max-width: 991px) {
  header.site-header, footer { display: none !important; }
  body { margin: 0; }
  #tn-mapwidget3-root { min-height: 100vh; }
} */


/* Homepage hero + genres layout */
.hero-banner {
background: url(/wp-content/uploads/2025/12/hero.webp);
    background-position: center;
	color: #fff;
    min-height: 300px;
	text-align: center;
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
}
.display-5, .display-4{
	font-weight: 700;
}

.hero-slider .carousel-item {
  min-height: 203px;
	color: #fff;
}

.homepage-genres {
  background-color: #ffffff;
}

/* Genre tiles */
.genre-tile {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.genre-tile:hover {
  transform: translateY(-3px);
  border-color: var(--tn-primary);
  box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.12);
  text-decoration: none;
}

/* Header search suggestions dropdown */
#tn-header-search-suggestions {
  top: 100%;
  left: 0;
  z-index: 1000;
}
.logo{
width: 100%;
max-width: 120px;	
}




/* OUTER full width */
.genre-hero-container {
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* CENTERED image block */
.genre-hero-inner {
    position: relative;
    height: 300px;         /* FINAL IMAGE HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE FIXED HEIGHT, AUTO WIDTH */
.genre-hero-img {
    height: 300px;         /* FIXED HEIGHT */
}

/* LEFT + RIGHT GRADIENTS anchored to image edges */
.left-gradient,
.right-gradient {
    position: absolute;
    top: 0;
    height: 300px;         /* SAME AS IMAGE HEIGHT */
    width: 50px;          /* Controls fade smoothness */
    z-index: 2;
    pointer-events: none;
}

/* LEFT FADE */
.left-gradient {
    left: 0px;   
    background: linear-gradient(to right, black 0%, rgba(0,0,0,0) 100%);
}

/* RIGHT FADE */
.right-gradient {
    right: 0px;
    background: linear-gradient(to left, black 0%, rgba(0,0,0,0) 100%);
}

/* TEXT OVERLAY */
.hero-text {
    position: absolute;
    z-index: 3;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px black;
}

.hero-text h1 {
    font-size: 31px;
    margin: 0 0 10px;
}

.hero-text p {
    font-size: 18px;
    margin: 0;
}
@media screen and (max-width: 533px) {
	.genre-hero-inner{
		    width: 100%;
	}

}
/* .carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) brightness(0);
} */
.carousel-control-next, .carousel-control-prev{
	width: 25px;
}
.carousel-control-prev {
    left: -30px;
}
.carousel-control-next {
    right: -30px;
}

.ticket-card{
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #1f85b5;
	height: 100%;
	gap: 10px;
	
}
.venue-card{
	    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #1f85b5;
	height: 100%;
}

.ticket-card .btn{
	white-space: nowrap;
}
.badge{
	font-weight: 500;
}
.numbering {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #1988b5;
    height: 25px;
    min-width: 25px;
    margin-right: 10px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.concert-heading {
    position: relative;
	text-align: center;
	margin-bottom: 30px;
	font-size: 26px;
}

.concert-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 100px;     
    height: 3px;
    background-color: #1988b5; 
    border-radius: 5px;
}
.title-header{
	background: #0b192f;
    color: #fff;
}
.title-header p{
	color: #d5d5d5;
}

/* Artist Tile Images - Uniform Size */
.artist-tile {
    height: 100%;
}

.artist-tile .card-img-top {
	width: 100%;
	    object-fit: cover;
    object-position: center 20%;
	aspect-ratio: 1 / 1;
}

.artist-tile .card-body {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {
.small, .ticket-card .btn{
	font-size: 12px;
	}
	.concert-heading {
	font-size: 22px;
}
	
}

.pre-checkout-price-cta{
	background: #1988b5;
    font-weight: 600;
    color: #fff;
}

.pre-checkout-price-cta:hover{
	background: #000;
	color: #fff;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.privacy-wrapper h2 {
    margin-top: 35px;
    font-size: 24px;
    font-weight: 700;
}

.privacy-wrapper p,
.privacy-wrapper li {
    line-height: 1.7;
    font-size: 16px;
}

.privacy-wrapper ul {
    padding-left: 20px;
}

/* 
.carousel-inner{
	width: fit-content;
    height: 500px;
    margin: auto;
} */

.carousel{
	background: #000;
}
@media (min-width: 700px) {
.carousel-item img{
	display: block;
	height:500px;
	object-fit: contain;
	margin: auto;
}
	.carousel-item img {
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
}

@media (max-width: 699px) {
.carousel-item img{
	display: block;
	height:300px;
	object-fit: cover;
	width: 100%;
}
}
/* 
.accordion-item {
    border: 1px solid #d9e2ec;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.accordion-button {
    font-weight: 600;
    padding: 18px 20px;
}

.accordion-button:not(.collapsed) {
    background: #f5fbff;
    color: #111;
    box-shadow: none;
}

.accordion-body {
    padding: 18px 20px;
    color: #444;
}

.classic-rock-faq-section .accordion-item{
            border:1px solid #dee2e6;
            border-radius:.5rem !important;
            overflow:hidden;
            margin-bottom:.75rem;
        }
        .classic-rock-faq-section .accordion-button{
            font-weight:600;
            font-size:1rem;
            box-shadow:none !important;
        }
        .classic-rock-faq-section .accordion-button:not(.collapsed){
            background:#f8fbfd;
            color:#111;
        }
        .classic-rock-faq-section .accordion-body{
            color:#444;
            line-height:1.7;
        } */

.classic-rock-hero {
        background: #111;
        color: #fff;
        padding: 60px 0;
        position: relative;
        overflow: hidden
    }

    .classic-rock-hero.has-image {
        background-size: cover;
        background-position: center
    }

    .classic-rock-hero .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .55)
    }

    .classic-rock-hero .container {
        position: relative;
        z-index: 2
    }

    .classic-rock-section {
        padding: 48px 0
    }

    .classic-rock-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px
    }

.classic-rock-link-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.classic-rock-link-grid > * {
    flex: 0 0 calc(33.333% - 12px); /* 3 columns by default */
}

/* Mobile responsive: 1 item per row */
@media (max-width: 767px) {
    .classic-rock-link-grid > * {
        flex: 0 0 100%; /* 1 item per row */
    }
}

    .classic-rock-card {
        border: 1px solid #e9e9e9;
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
        height: 100%;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .04)
    }

    .classic-rock-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        background: #f4f4f4
    }

    .classic-rock-card-body {
        padding: 18px
    }

    .classic-rock-link-box {
        display: block;
        padding: 20px 10px;
        text-decoration: none;
        color: #111;
        background: #fff;
        transition: .2s ease;
        border-radius: 10px;
        box-shadow: 0px 0px 5px 0px #1f85b5;
        text-align: center;
    }

    .classic-rock-events {
        display: grid;
        gap: 18px
    }

    .classic-rock-event {
        display: grid;
        grid-template-columns: 110px 1fr auto;
        align-items: center;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0px 0px 5px 0px #1f85b5;
        height: 100%;
        gap: 10px;
    }

    .classic-rock-event img {
        width: 110px;
        object-fit: cover;
        border-radius: 10px;
        background: #f2f2f2
    }

    .classic-rock-btn {
        display: inline-block;
        background: #111;
        color: #fff;
        text-decoration: none;
        padding: 11px 18px;
        border-radius: 10px;
        font-weight: 600
    }

    .classic-rock-muted {
        color: #666
    }

    .classic-rock-trust {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px
    }

    .classic-rock-trust div {
        padding: 30px 10px;
        border-radius: 10px;
        box-shadow: 0px 0px 5px 0px #1f85b5;
        text-align: center;
    }

    @media (max-width:991px) {

        .classic-rock-grid,
        .classic-rock-trust {
            grid-template-columns: repeat(2, minmax(0, 1fr))
        }

        .classic-rock-event .classic-rock-btn-wrap {
            grid-column: 1/-1
        }
    }

    @media (max-width:575px) {
        .classic-rock-event .btn {
            width: 100%;
        }
    }

    .classic-rock-trust i {
        display: block;
        font-size: 45px;
        color: #1988b5;
        margin-bottom: 5px;
    }

    .classic-rock-trust span {
        font-weight: 600;
    }



        .tn-venue-row {
            border: 1px solid #dcdcde;
            background: #fff;
            padding: 16px;
            margin-bottom: 14px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .tn-venue-row .tn-venue-fields {
            flex: 1;
        }
        .tn-venue-row label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .tn-venue-row input[type="text"] {
            width: 100%;
        }
        .tn-venue-preview {
            width: 100px;
            height: 75px;
            background: #f0f0f1;
            border: 1px dashed #8c8f94;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 24px;
        }
        .tn-venue-preview img {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
        }
        .tn-remove-venue {
            margin-top: 10px !important;
            align-self: flex-end;
        }
        .tn-venue-note {
            background: #f6f7f7;
            border-left: 4px solid #2271b1;
            padding: 12px 14px;
            margin-bottom: 16px;
        }

.venue-tile {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.venue-tile:hover {
    transform: translateY(-3px);
}
.venue-tile .card-img-top {
    border-radius: 10px 10px 0 0;
}

.venue-tile a{
color: #111827;
}
.shadow-c{
	box-shadow: 0px 0px 5px 0px #1f85b5;
}
/* Search suggestion improvements */
#tn-header-search-suggestions {
  overflow: hidden;
  border-radius: 0.5rem;
  max-height: min(70vh, 560px);
  overflow-y: auto;
}

.tn-suggestion-heading {
  background: #f8fafc;
  color: var(--tn-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.85rem 0.35rem;
  text-transform: uppercase;
}

.tn-suggestion-item {
  display: flex !important;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
}

.tn-suggestion-media {
  align-items: center;
  background: #eef6ff;
  border-radius: 999px;
  color: var(--tn-primary);
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  overflow: hidden;
  width: 38px;
}

.tn-suggestion-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tn-suggestion-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: left;
}

.tn-suggestion-title {
  color: #111827;
  font-weight: 600;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tn-suggestion-subtitle {
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-artist-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.search-artist-card:hover {
  border-color: var(--tn-primary);
  box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.search-artist-card img,
.search-artist-placeholder {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.search-artist-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  color: var(--tn-primary);
  display: flex;
  font-size: 2rem;
  justify-content: center;
}

.search-venue-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  padding: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.search-venue-card:hover {
  border-color: var(--tn-primary);
  box-shadow: 0 0.75rem 1.5rem rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.search-venue-icon {
  align-items: center;
  background: #eef6ff;
  border-radius: 999px;
  color: var(--tn-primary);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

/* Tour Page FAQ Section */
.tour-faq-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-top: 1px solid #e8eef5;
}

.tour-faq-card {
    background: #ffffff;
    border: 1px solid #dce8f3;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 25, 47, 0.08);
    padding: 32px;
}

.tour-faq-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.tour-faq-eyebrow {
    display: inline-block;
    color: #168bb8;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 6px;
}

.tour-faq-title {
    margin: 0;
    font-size: clamp(1.6rem, 2.3vw, 2.25rem);
    font-weight: 800;
    color: #0b192f;
}

.tour-faq-group {
    margin-top: 26px;
}

.tour-faq-group:first-of-type {
    margin-top: 0;
}

.tour-faq-category-title {
    color: #0b192f;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.tour-faq-section .accordion-item {
    border: 1px solid #dce8f3;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
}

.tour-faq-section .accordion-button {
    font-weight: 700;
    color: #0b192f;
    padding: 18px 20px;
    box-shadow: none !important;
}

.tour-faq-section .accordion-button:not(.collapsed) {
    background: #eef8fc;
    color: #0b192f;
}

.tour-faq-section .accordion-body {
    color: #4b5563;
    line-height: 1.75;
    padding: 18px 20px;
}

@media (max-width: 767px) {
    .tour-faq-card {
        padding: 22px;
        border-radius: 14px;
    }

    .tour-faq-heading-row {
        display: block;
    }
}

/* Shared FAQ Section - used by Tour, Classic Rock, Location and future FAQ blocks */
.tn-site-faq-section {
    padding: 56px 0;
    background: #fff;
}

.tn-site-faq-section .concert-heading {
    margin-bottom: 38px !important;
}

.tn-site-faq-group {
    margin-bottom: 44px !important;
}

.tn-site-faq-group:last-child {
    margin-bottom: 0 !important;
}

.tn-site-faq-section .faq-category-title {
    color: #071526;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
}

.tn-site-faq-section .accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 4px !important;
    overflow: hidden;
    margin-bottom: 0;
    background: #fff;
}

.tn-site-faq-section .accordion-item + .accordion-item {
    border-top: 0;
}

.tn-site-faq-section .accordion-button {
    background: #fff;
    color: #071526;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    padding: 17px 22px;
    box-shadow: none !important;
}

.tn-site-faq-section .accordion-button:not(.collapsed) {
    background: #f8fbfd;
    color: #071526;
}

.tn-site-faq-section .accordion-button:focus {
    border-color: transparent;
    box-shadow: none !important;
}

.tn-site-faq-section .accordion-body {
    color: #424b57;
    font-size: 15px;
    line-height: 1.75;
    padding: 18px 22px 20px;
}

.tn-site-faq-section .accordion-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .tn-site-faq-section {
        padding: 42px 0;
    }

    .tn-site-faq-section .faq-category-title {
        font-size: 18px;
    }

    .tn-site-faq-section .accordion-button {
        font-size: 15px;
        padding: 15px 16px;
    }

    .tn-site-faq-section .accordion-body {
        padding: 16px;
    }
}

.wpcf7-spinner{
	display: none;
}