@charset "UTF-8";
* {
  box-sizing: border-box !important;
}

:root {
  --primary-color: #bfc98a;
  --secondary-color: #84b19a;
  --white-color: #ffffff;
  --body-color:#222222;
  --h-color:#1f1f1f;
  --body-weight: 400;
  --btn-weight: 500;
  --title-font: "InstrumentSerif-Regular", "Arial", "Helvetica", sans-serif;
  --normal-font: "Inter-Regular", "Arial", "Helvetica", sans-serif;
}

@font-face {
  font-family: "InstrumentSerif-Regular";
  src: url("../fonts/Instrument_Serif/InstrumentSerif-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "InstrumentSerif-Italic";
  src: url("../fonts/Instrument_Serif/InstrumentSerif-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/inter/Inter_Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Inter-Light";
  src: url("../fonts/inter/Inter_Light.ttf") format("truetype");
}
/*-------------------------------------------------------------------

== Mixins

-------------------------------------------------------------------*/
/*-------------------------------------------------------------------

== Reset style

-------------------------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
  word-wrap: break-word;
}

.elementor-element {
  padding: 0 !important;
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  font-size: 1rem;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
a:hover {
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit !important;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  border-radius: 0;
  outline: none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

button {
  cursor: pointer;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  transition: 0.3s ease;
}
button:active, button:focus, button:visited {
  outline: none;
}
button:focus-visible {
  outline: none;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
p + p {
  margin-top: 1.25rem;
}

body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover,
a:focus,
a:active {
  color: var(--secondary-color);
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

a:-webkit-any-link:focus-visible {
  outline-offset: 0;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.hidden {
  display: none !important;
}

input[type=text]:active, input[type=text]:focus, input[type=email]:active, input[type=email]:focus, input[type=url]:active, input[type=url]:focus, input[type=password]:active, input[type=password]:focus, input[type=search]:active, input[type=search]:focus, input[type=number]:active, input[type=number]:focus, input[type=tel]:active, input[type=tel]:focus, input[type=range]:active, input[type=range]:focus, input[type=date]:active, input[type=date]:focus, input[type=month]:active, input[type=month]:focus, input[type=week]:active, input[type=week]:focus, input[type=time]:active, input[type=time]:focus, input[type=datetime]:active, input[type=datetime]:focus, input[type=datetime-local]:active, input[type=datetime-local]:focus, input[type=color]:active, input[type=color]:focus, textarea:active, textarea:focus {
  box-shadow: none !important;
}

a {
  transition: 0.3s ease;
}

body {
  color: var(--body-color);
  background-color: rgb(247, 247, 247);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--h-color);
}

.baby-town-header {
  padding: 20px 15px;
  max-width: 95%;
  margin: 0 auto;
}
.baby-town-header .entry-header-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.baby-town-header .entry-header-bottom-content .navigation-site-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 15px;
}
.baby-town-header .entry-header-bottom-content .navigation-site-wrap ul li.current-menu-item a {
  color: var(--primary-color);
}
.baby-town-header .entry-header-bottom-content .navigation-site-wrap ul a {
  color: var(--body-color);
}
.baby-town-header .entry-header-bottom-content .navigation-site-wrap ul a:hover {
  color: var(--secondary-color);
}
.baby-town-header .navigation-site-wrap {
  display: flex;
  gap: 45px;
  align-items: center;
}
.baby-town-header .navigation-site-wrap .online-sale-admin-form a {
  border-radius: 8px;
  display: inline-flex;
  padding: 15px 25px;
  background: var(--secondary-color);
  color: #fff;
}
.baby-town-header .navigation-site-wrap .online-sale-admin-form a:hover {
  color: #1f1f1f;
  background: var(--primary-color);
}

.tbvs-dates-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
}
.tbvs-dates-grid .tbvs-date-item .tbvs-date-day {
  opacity: 0.7;
  font-size: 15px;
  color: #222;
  font-weight: 700;
  text-transform: uppercase;
}
.tbvs-dates-grid .tbvs-date-item .tbvs-date-display {
  font-size: 15px;
}
.tbvs-dates-grid .tbvs-date-item .tbvs-date-availability {
  font-size: 12px;
}
.tbvs-dates-grid .tbvs-date-item:hover {
  border-color: var(--primary-color);
}
.tbvs-dates-grid .tbvs-date-item.selected {
  border-color: rgb(76, 175, 80);
}
.tbvs-dates-grid .tbvs-date-item.selected .tbvs-date-day {
  opacity: 1;
}
.tbvs-dates-grid .tbvs-date-item.selected .tbvs-date-display {
  color: rgb(76, 175, 80);
}
.tbvs-dates-grid .tbvs-date-item.selected .tbvs-date-day {
  color: rgb(76, 175, 80);
}

.tbvs-seatmap-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: none;
}
.tbvs-seatmap-container .tbvs-dates-section {
  flex: 0 0 100%;
  max-width: 100%;
}
.tbvs-seatmap-container .tbvs-messages {
  flex: 0 0 100%;
  max-width: 100%;
}
.tbvs-seatmap-container .tbvs-map-section {
  flex: 0 0 65%;
  max-width: calc(65% - 20px);
}
.tbvs-seatmap-container .tbvs-sidebar {
  flex: 0 0 35%;
  max-width: 35%;
  margin-top: 2px;
  border-radius: 8px;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content h4 {
  font-size: 17px;
  margin-bottom: 12px;
  padding-bottom: 0;
  border-bottom: 0;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-no-selection {
  font-size: 15px;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat {
  flex-wrap: wrap;
  padding-top: 35px;
  position: relative;
  /* Приховати стрілки у Chrome, Safari, Edge, Opera */
  /* Приховати стрілки у Firefox */
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-seat-info {
  order: 1;
  flex: 0 0 55%;
  max-width: 55%;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-seat-name {
  font-size: 14px;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-seat-details {
  display: flex;
  gap: 4px;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-quantity-controls {
  order: 1;
  flex-grow: 0;
  display: flex;
  justify-content: flex-end;
  background: #fff;
  border: 1px solid #ddd;
  gap: 4px;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-quantity-controls button {
  font-weight: normal !important;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 0;
  color: #ccc;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-quantity-controls button:hover {
  color: var(--primary-color);
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-quantity-controls input {
  background: transparent;
  border-color: transparent !important;
  font-size: 15px;
  width: auto;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-remove-seat {
  position: absolute;
  top: 0;
  right: 0;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-seat-price {
  order: 3;
  flex-grow: 1;
  margin-left: 0;
  display: flex;
  gap: 4px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--primary-color);
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-quantity-input::-webkit-inner-spin-button,
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-sidebar-content .tbvs-selected-seats .tbvs-selected-seat .tbvs-quantity-input {
  -moz-appearance: textfield;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-total-price-row {
  margin-bottom: 0;
  padding-bottom: 0;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-total-price-row .currenct-s {
  margin-left: 4px;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-total-section {
  flex-direction: column;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-total-section .tbvs-price-simple {
  margin-top: 0;
  padding-top: 0;
  border: 0 !important;
  margin-bottom: 0;
  padding-bottom: 0;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-total-section .tbvs-total-row > span {
  font-size: 17px;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-clear-selection {
  font-weight: normal;
  font-size: 14px;
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-add-to-cart {
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  background: var(--primary-color);
}
.tbvs-seatmap-container .tbvs-sidebar .tbvs-add-to-cart:hover {
  background: var(--secondary-color);
}
.tbvs-seatmap-container .tbvs-simple-map-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place {
  display: flex;
  gap: 25px;
  border-radius: 5px;
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place .tbvs-simple-place-status {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-weight: 700;
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place .tbvs-simple-place-status .tbvs-available-count {
  font-weight: normal;
  color: var(--secondary-color);
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place h3 {
  display: block !important;
  font-size: 17px;
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place .tbvs-simple-place-info {
  width: 100%;
  margin-bottom: 0;
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place .tbvs-simple-place-description {
  min-height: auto;
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place .tbvs-quantity-badge {
  font-size: 11px;
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place:hover {
  cursor: pointer;
  border-color: var(--primary-color);
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place.selected {
  border-color: var(--primary-color);
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place.selected .tbvs-quantity-badge {
  background-color: var(--secondary-color);
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place .tbvs-simple-place-price {
  font-size: 14px;
  font-weight: 700;
}
.tbvs-seatmap-container .tbvs-simple-map-container .tbvs-simple-place .tbvs-simple-place-price .tbvs-price-amount {
  color: var(--secondary-color);
  font-size: 17px;
}
.tbvs-seatmap-container .tbvs-loading {
  grid-column: 1/-1;
}
.tbvs-seatmap-container .tbvs-legend {
  display: none !important;
}
.tbvs-seatmap-container .tbvs-simple-map-container {
  margin-top: 0;
  padding-top: 2px;
}
.tbvs-seatmap-container .tbvs-map-section {
  border: 0;
  background: transparent;
  border-radius: 0;
}
.tbvs-seatmap-container .tbvs-map-section h3 {
  display: none !important;
}
.tbvs-seatmap-container .tbvs-map-wrapper {
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: auto;
}

.tbvs-reservation-timer {
  bottom: 20px;
  top: auto !important;
  min-width: 230px !important;
  box-shadow: 0 4px 12px rgb(132, 177, 154) !important;
  background: var(--secondary-color) !important;
}
.tbvs-reservation-timer .tbvs-timer-checkout-btn {
  margin-top: 15px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 11px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.tbvs-reservation-timer.warning {
  box-shadow: 0 4px 12px #dbc17b !important;
  background: #dbc17b !important;
}
.tbvs-reservation-timer.critical {
  box-shadow: 0 4px 12px #d7b0bd !important;
  background: #d7b0bd !important;
}

.faq-title {
  font-size: 25px !important;
}

.faq-style-accordion .faq-item .faq-question-text {
  font-size: 16px;
}

.faq-style-accordion .faq-item.active {
  border-color: var(--primary-color) !important;
}

.faq-style-accordion .faq-item.active .faq-question {
  background: var(--primary-color) !important;
}

.faq-style-accordion .faq-item:hover {
  border-color: var(--primary-color) !important;
}

.faq-style-accordion .faq-toggle {
  color: var(--primary-color) !important;
}

.faq-style-accordion .faq-item.active .faq-toggle {
  color: #fff !important;
}

.faq-answer-content {
  padding: 25px 25px 25px 25px;
}

.certificate-sell-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.certificate-sell-container .certificate-sell-title {
  flex: 0 0 100%;
  max-width: 100%;
}
.certificate-sell-container .certificates-grid {
  margin: 0 !important;
  flex: 0 0 65%;
  max-width: calc(65% - 20px);
}
.certificate-sell-container .certificates-grid .certificate-card .certificate-select-btn {
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  background: var(--primary-color);
}
.certificate-sell-container .certificates-grid .certificate-card .certificate-select-btn:hover {
  background: var(--secondary-color);
}
.certificate-sell-container .certificates-grid .certificate-card:hover, .certificate-sell-container .certificates-grid .certificate-card.selected {
  border-color: var(--primary-color) !important;
}
.certificate-sell-container .certificates-grid .certificate-details {
  padding: 0;
}
.certificate-sell-container .certificates-grid .certificate-details .certificate-price {
  color: var(--primary-color) !important;
}
.certificate-sell-container .certificate-image {
  height: auto;
}
.certificate-sell-container .certificate-image img {
  height: auto;
}
.certificate-sell-container .certificate-sidebar {
  flex: 0 0 35%;
  max-width: 35%;
}
.certificate-sell-container .certificate-sidebar .tbvs-seat-price {
  margin-left: 0;
}
.certificate-sell-container .certificate-sidebar h4 {
  font-size: 17px;
  margin-bottom: 12px;
  padding-bottom: 0;
  border-bottom: 0;
}
.certificate-sell-container .certificate-sidebar .tbvs-selected-seats .tbvs-seat-info .tbvs-seat-name {
  font-size: 14px;
}
.certificate-sell-container .certificate-sidebar .tbvs-total-row {
  font-size: 17px;
}
.certificate-sell-container .certificate-sidebar .tbvs-actions button {
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
}
.certificate-sell-container .certificate-sidebar .tbvs-actions button.tbvs-add-to-cart {
  background: var(--primary-color);
}
.certificate-sell-container .certificate-sidebar .tbvs-actions button.tbvs-add-to-cart:hover {
  background: var(--secondary-color);
}
.certificate-sell-container .certificate-success-message {
  display: none !important;
}

#order_review {
  position: relative;
}

.woocommerce-checkout .woocommerce-notices-wrapper, .woocommerce-checkout .woocommerce-error, .woocommerce-checkout .woocommerce-form-coupon-toggle {
  display: none !important;
}
.woocommerce-checkout form.woocommerce-checkout {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.woocommerce-checkout form.woocommerce-checkout #customer_details {
  flex: 0 0 65%;
  max-width: calc(65% - 35px);
}
.woocommerce-checkout form.woocommerce-checkout #customer_details .form-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.woocommerce-checkout form.woocommerce-checkout #customer_details .form-row label {
  line-height: 1;
  font-size: 14px;
}
.woocommerce-checkout form.woocommerce-checkout #customer_details .form-row:before, .woocommerce-checkout form.woocommerce-checkout #customer_details .form-row:after {
  display: none;
}
.woocommerce-checkout form.woocommerce-checkout #customer_details input {
  border: 1px solid #ddd;
}
.woocommerce-checkout form.woocommerce-checkout #customer_details textarea {
  min-height: 130px;
  border: 1px solid #ddd;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap {
  flex: 0 0 35%;
  max-width: 35%;
  background: #fff;
  padding: 15px 25px;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table {
  font-size: 15px;
  border: 0;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table thead {
  display: none !important;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table td, .woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table th {
  padding: 10px 0;
  border: 0;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item {
  position: relative !important;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item .tbvs-product-remove {
  width: 0 !important;
  padding: 0 !important;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item .tbvs-remove-cart-item {
  position: absolute;
  right: 0;
  top: 25px;
  transition: 0.3s ease;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item .product-name {
  position: relative;
  width: 60%;
  max-width: 60%;
  white-space: normal;
  word-wrap: break-word;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item .product-total {
  text-align: right;
  width: 40%;
  vertical-align: middle;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item .variation {
  display: flex;
  flex-direction: column;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item .variation dd {
  margin-bottom: 5px;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item .variation p {
  margin-top: 0;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item + .cart_item td {
  border-top: 1px solid #ccc;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table .cart_item:hover .tbvs-remove-cart-item {
  opacity: 1;
  visibility: visible;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table tfoot tr th, .woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table tfoot tr td {
  width: 50%;
  max-width: 50%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #ccc;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table tfoot tr td {
  text-align: right;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table tfoot tr:first-child th, .woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table tfoot tr:first-child td {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #ccc;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap #payment {
  background: transparent;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap #payment .wc_payment_methods {
  padding: 0;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap #payment .wc_payment_methods div {
  font-size: 14px;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap #payment .wc_payment_methods div p {
  margin-top: 0;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .place-order {
  padding: 0 !important;
  flex-direction: column;
  display: flex;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .place-order .woocommerce-privacy-policy-text {
  font-size: 13px;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .place-order:before {
  display: none !important;
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .place-order button {
  padding: 25px 20px;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  background: var(--primary-color);
}
.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .place-order button:hover {
  background: var(--secondary-color);
}

.woocommerce-order-received .woocommerce-customer-details {
  display: none !important;
}

.tvbs-footer {
  margin-top: 35px;
  padding-top: 35px;
  font-size: 14px;
  background: #000000;
  color: #fff;
}
.tvbs-footer .footer-top-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 100px;
}
.tvbs-footer .footer-top-content .footer-top-left-content {
  display: flex;
  flex-wrap: wrap;
  gap: 65px;
}
.tvbs-footer .footer-top-content .footer-top-left-content .column-title {
  margin-top: 0;
  margin-bottom: 35px;
}
.tvbs-footer .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 15px;
  margin-top: 30px;
  color: #B0B0B0;
  gap: 20px;
  padding-bottom: 15px;
}
.tvbs-footer .footer-bottom-content .footer-bottom-left-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tvbs-footer .footer-bottom-content .footer-bottom-left-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.tvbs-footer .footer-bottom-content .footer-bottom-left-content ul li a {
  color: inherit;
  transition: 0.3s ease;
}
.tvbs-footer .footer-bottom-content .footer-bottom-left-content ul li a:hover {
  opacity: 0.7;
}
.tvbs-footer .footer-text-content {
  margin-top: 15px;
}

.contact-info-wrap {
  margin-bottom: 30px;
}
.contact-info-wrap .contact-info-item a, .contact-info-wrap .contact-info-item span {
  display: flex;
  gap: 3px;
  align-items: center;
  color: inherit;
}
.contact-info-wrap .contact-info-item a {
  transition: 0.3s ease;
}
.contact-info-wrap .contact-info-item a:hover {
  opacity: 0.7;
}

.social-prof-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}
.social-prof-wrap ul li a {
  display: inline-flex;
  transition: 0.3s ease;
}
.social-prof-wrap ul li a:hover {
  opacity: 0.7;
}

#certificate-sale-form .offline-markup-notice {
  display: none !important;
}

.mobile-menu-btn {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: flex-end;
}
.mobile-menu-btn span {
  background: #222222;
  position: relative;
  display: inline-flex;
  width: 1.5625rem;
  height: 0.125rem;
  transition: width 0.3s ease-in-out;
}
.mobile-menu-btn span:before, .mobile-menu-btn span:after {
  background: #222222;
  right: 0;
  position: absolute;
  content: "";
  width: 2.1875rem;
  height: 0.125rem;
}
.mobile-menu-btn span:before {
  top: -0.625rem;
}
.mobile-menu-btn span:after {
  bottom: -0.625rem;
}

/*-------------------------------------------------------------------

== Mobile Menu

-------------------------------------------------------------------*/
.fl-mobile-menu-wrapper {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1098;
}

.fl-mobile-menu-wrapper .fl-sidebar-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1099;
  cursor: pointer;
}

.fl-mobile-menu-wrapper .fl--mobile-menu-navigation-wrapper {
  position: fixed;
  z-index: 1100;
  right: 0;
  top: 0;
  width: 17.5rem;
  background: #222222;
  padding: 2.8125rem 0.625rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100vh;
}

.fl-mobile-menu-wrapper .fl--mobile-menu-navigation-wrapper .fl--mobile-menu-navigation {
  max-height: calc(100% - 0.9375rem);
  overflow-x: auto;
}

.fl--mobile-menu-navigation-wrapper .widget_fl_theme_helper_wmpl_change_languages {
  padding-left: 0.9375rem;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
}

.fl--mobile-menu {
  background: inherit;
  z-index: 9;
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 5px;
}
.fl--mobile-menu li a {
  font-size: 16px;
  color: #ffffff;
  width: 100%;
  display: flex;
  padding: 10px 15px;
}

.fl--mobile-menu > li:last-child .menu-link {
  border-bottom: none;
}

.fl--mobile-menu li {
  -webkit-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
  overflow: hidden;
}

.fl--mobile-menu li.opened {
  -webkit-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
  background: #3a3a3a;
}

.fl--mobile-menu li.opened > .menu-link .fl-menu-flipper-icon {
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.fl--mobile-menu li.opened > .menu-link .fl-menu-flipper-icon .fl-front-content i {
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}

.fl--mobile-menu li .menu-link {
  border-bottom: 0.0625rem solid #3a3a3a;
  position: relative;
  line-height: 1.1;
  display: block;
  padding: 1.0625rem 2.5rem 1.0625rem 1.5rem;
  color: #fff;
  font-size: 0.6875rem;
  text-transform: uppercase;
}

.fl--mobile-menu li .menu-link .fl-menu-flipper-icon {
  position: absolute;
  right: 0;
  color: rgba(255, 255, 255, 0.55);
  height: 100%;
  width: 3.125rem;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fl--mobile-menu li .menu-link:hover {
  color: #000;
}

.fl--mobile-menu li:last-child {
  border-bottom: none;
}

.fl--mobile-menu li .sub-menu {
  display: none;
  background: #3a3a3a;
}

.fl--mobile-menu li .sub-menu li .menu-link {
  text-transform: none;
  font-size: 0.6875rem;
}

.fl--mobile-menu li .sub-menu li .sub-menu {
  border-left: none;
  margin-left: 0;
}

.fl--mobile-menu li .sub-menu li .sub-menu li a {
  padding-left: 2.3125rem;
}

> .fl--mobile-menu li:first-child .menu-link {
  border-bottom: none;
}

.fl--mobile-menu li ul {
  margin: 0;
  padding: 0;
}

.fl--mobile-menu-navigation-wrapper::-webkit-scrollbar, .fl--mobile-menu-navigation::-webkit-scrollbar {
  width: 0.375rem;
  background: #fff;
  margin-right: 1.25rem;
}

.fl--mobile-menu-navigation-wrapper::-webkit-scrollbar-thumb, .fl--mobile-menu-navigation::-webkit-scrollbar-thumb {
  height: 9.375rem;
  border-radius: 0.625rem;
  background: #f7f7f7;
}

body.admin-bar .fl--mobile-menu-navigation-wrapper {
  top: 30px;
}

body.admin-bar ul.fl-sidebar-social-profiles {
  bottom: 50px;
}

.fl-menu-flipper-icon {
  position: absolute;
  right: 0;
  color: #fff;
  height: 100%;
  width: 50px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  -webkit-perspective: 40px;
  perspective: 40px;
}

.fl-menu-flipper-icon .fl-front-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: inherit;
  z-index: 2;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fl-menu-flipper-icon .fl-back-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: inherit;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.fl-close-sidebar-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.6s ease-in;
  -o-transition: opacity 0.6s ease-in;
  transition: opacity 0.6s ease-in;
  border: 0;
  border-radius: 0;
  position: absolute;
  height: 25px;
  width: 25px;
  margin: 0;
  outline: 0;
  padding: 10px;
  vertical-align: top;
  top: 15px;
  right: 5px;
  z-index: 99999;
  cursor: pointer;
}

.fl-close-sidebar-icon:before {
  content: "X";
  color: #fff !important;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fl--mobile-menu > li > .menu-link {
  font-weight: 600;
}

.fl-header-menu-container .fl--mobile-menu-icon {
  display: none !important;
}

.woocommerce-order .wc-item-meta {
  margin: 0;
  padding: 0;
  padding-left: 12px;
  list-style: none;
}

.woocommerce-thankyou-order-details {
  margin: 0;
  padding: 0;
}

.ticket-codes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ticket-codes ul li + li {
  margin-top: 12px;
}

.woocommerce-order-received table {
  border-top: 0 !important;
}
.woocommerce-order-received table thead {
  display: none;
}

.order-again {
  display: none !important;
}

.tbvs-ticket-downloads .button {
  margin-left: 12px !important;
  background: var(--primary-color) !important;
  color: #fff !important;
  transition: 0.3s ease;
}
.tbvs-ticket-downloads .button:hover {
  background: var(--secondary-color) !important;
}

.woocommerce-thankyou-order-received {
  font-size: 21px;
  margin-bottom: 35px;
  border: 1px solid;
  width: auto;
  display: inline-flex;
  padding: 18px;
  border-radius: 12px;
}

.woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table td, .woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap .woocommerce-checkout-review-order-table th {
  padding: 20px 0;
}

.checkout-total-wrap #order_review_heading {
  margin-bottom: 10px !important;
}

/*-------------------------------------------------------------------

== Responsive

-------------------------------------------------------------------*/
/*-------------------------------------------------------------------

==  max-width 992px

-------------------------------------------------------------------*/
@media screen and (max-width: 992px) {
  .tvbs-footer .footer-top-content {
    gap: 25px;
  }
  .tvbs-footer .footer-top-content .footer-top-left-content {
    gap: 15px;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: space-between;
  }
  .tvbs-footer .footer-top-content .footer-top-left-content .column-titleP {
    margin-bottom: 25px;
  }
  .padding-page-section {
    padding: 0;
  }
  .hidden-lg {
    display: none;
  }
  .gap-100 {
    padding-top: 5rem;
  }
  .gap-lg-30 {
    padding-top: 30px;
  }
  .gap-lg-40 {
    padding-top: 40px;
  }
  .gap-30 {
    padding-top: 1.25rem;
  }
  body {
    font-size: 0.9375rem;
    line-height: 1.5rem;
  }
  h1 {
    font-size: 3.625rem;
    line-height: 4.25rem;
  }
  h2 {
    font-size: 2.9375rem;
    line-height: 3.5625rem;
  }
  h3 {
    font-size: 1.75rem;
    line-height: 2.375rem;
  }
  h4 {
    font-size: 1.3125rem;
    line-height: 1.9375rem;
  }
  h5 {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  h6 {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
  }
  .templines-default-btn-style {
    font-size: 0.9375rem;
  }
  .templines-header.header-style-two {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .templines-header.header-style-two .header-content-wrap {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .templines-header.header-style-two .header-content-wrap .entry-header-bottom-content .right-header-entry-content .navigation-site-wrap {
    display: none;
  }
  .baby-town-header {
    padding-left: 0;
    padding-right: 0;
  }
  .baby-town-header .navigation-site-wrap {
    gap: 15px;
  }
  .tbvs-attendance-counter {
    margin-bottom: 0 !important;
  }
  .tbvs-attendance-counter .tbvs-attendance-text {
    font-size: 14px;
  }
  #tbvs-messages {
    display: none !important;
  }
  .tbvs-seatmap-container .tbvs-map-section {
    flex: 0 0 100%;
    max-width: 100% !important;
  }
  .tbvs-seatmap-container .tbvs-sidebar {
    flex: 0 0 100%;
    max-width: 100% !important;
    order: 5;
  }
  .templines-header.header-style-one .bottom-header-content-wrap .entry-header-bottom-content .navigation-site-wrap {
    text-align: right;
    padding-right: 1.25rem;
  }
  .templines-header.header-style-one .top-header-content-wrap .entry-header-top-content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    font-size: 0.875rem;
  }
  .templines-header.header-style-one .top-header-content-wrap .entry-header-top-content .right-header-top-content .additional-information-wrap {
    padding-right: 1.5625rem;
  }
  .templines-main-screen-home-page-one-wrap .entry-main-screen-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .templines-main-screen-home-page-one-wrap .content-wrapper .main-screen-pre-title {
    font-size: 0.9375rem;
  }
  .templines-main-screen-home-page-one-wrap .content-wrapper .main-screen-title {
    font-size: 4.6875rem;
    line-height: 5.3125rem;
  }
  .templines-main-screen-home-page-one-wrap .content-wrapper .main-screen-title .main-screen-title-decor-text {
    font-size: 3.4375rem;
    padding: 0.3125rem 0.9375rem;
    line-height: 4.0625rem;
  }
  .property-item .entry-property-item-content .top-property-item-content .preview-img-wrap .templines-badge-wrap .item-badge {
    font-size: 0.75rem;
  }
  .templines-project-residence-container {
    background: var(--background-light-color) !important;
  }
  .brand-items-wrapper {
    flex-wrap: wrap;
  }
  .brand-items-wrapper .brand-slider-item {
    margin-top: 0.9375rem;
  }
  .brand-items-wrapper .brand-slider-item:nth-child(3) .entry-brand-item-content {
    border-right: 0;
  }
  .templines-banner-wrapper.in-footer-visible {
    padding: 1.875rem 3.4375rem;
  }
  .text-lg-center {
    text-align: center;
  }
  footer.footer-style-one.footer-dark-style .top-footer-content-wrapper {
    padding-bottom: 2.5rem;
  }
  .templines-main-screen-home-page-two-wrap .text-main-screen-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .templines-main-screen-home-page-two-wrap .main-screen-title-wrap .main-screen-title {
    font-size: 3.125rem;
    line-height: 3.75rem;
  }
  .templines-main-screen-home-page-two-wrap .entry-main-screen-content .main-screen-img-wrap {
    padding-right: 1.5625rem;
  }
  .templines-main-screen-home-page-two-wrap .entry-main-screen-content .main-screen-img-wrap .main-img-decor-two {
    right: -2.1875rem;
  }
  .templines-main-screen-home-page-two-wrap .entry-main-screen-content .main-screen-search-content-wrap {
    margin-top: 0.9375rem;
    padding-right: 0;
  }
  .templines-decor-rotate-img-wrap {
    width: 8.125rem;
    height: 8.125rem;
  }
  .templines-decor-rotate-img-wrap .rotate-text-img {
    width: 93%;
    height: 93%;
  }
  .property-item-icon-box {
    margin-top: 1.25rem;
  }
  .templines-counter .entry-counter-content .counter-number-wrap {
    font-size: 2.3125rem;
  }
  .property-bg-section {
    max-width: 100%;
    left: 0;
    border-radius: 0;
  }
  footer.footer-style-one.footer-light-style {
    padding: 0;
  }
  footer.footer-style-one.footer-light-style .top-footer-content-wrapper {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .templines-main-screen-home-page-three-wrap .entry-main-screen-content .main-screen-content-container .main-screen-title-wrap {
    padding-left: 6%;
    padding-right: 6%;
  }
  .templines-main-screen-home-page-three-wrap .entry-main-screen-content .main-screen-content-container .main-screen-title-wrap .main-screen-title {
    font-size: 3.125rem;
    line-height: 3.75rem;
  }
  .templines-main-screen-home-page-three-wrap .entry-main-screen-content .main-screen-content-container .main-screen-text-content {
    padding-left: 6%;
    padding-right: 6%;
    font-size: 1.125rem;
  }
  .templines-main-screen-home-page-three-wrap .main-screen-home-page-slider-pagination .prev-arrow-swiper-main-screen-button, .templines-main-screen-home-page-three-wrap .main-screen-home-page-slider-pagination .next-arrow-swiper-main-screen-button {
    width: 2.8125rem;
    height: 2.8125rem;
  }
  .templines-main-screen-home-page-three-wrap .main-screen-home-page-slider-pagination .prev-arrow-swiper-main-screen-button {
    left: 1.25rem;
  }
  .templines-main-screen-home-page-three-wrap .main-screen-home-page-slider-pagination .next-arrow-swiper-main-screen-button {
    right: 1.5625rem;
  }
  .transparent-bg {
    background: transparent !important;
  }
  .revers-column-lg {
    flex-direction: column-reverse;
  }
  .templines-video-box-wrapper .templines-video-btn-wrap {
    width: 5.3125rem;
    height: 5.3125rem;
  }
  .templines-video-box-wrapper .templines-video-btn-wrap svg {
    max-width: 1.5625rem;
  }
  footer .widget_templines_decor-description_footer .entry-decor-description-content .decor-text-content {
    font-size: 2.8125rem;
    line-height: 3.4375rem;
  }
  .templines-main-screen-home-page-four-wrap .main-screen-img-column {
    margin-bottom: -5.9375rem;
    top: -1.875rem;
  }
  .templines-main-screen-home-page-four-wrap .main-screen-img-decor {
    max-width: 75%;
  }
  .teplines-testimonial-text-item-wrap .top-text-content {
    margin-bottom: 3.125rem;
  }
  .teplines-testimonial-text-item-wrap .text-content {
    font-size: 1.75rem;
    line-height: 2.375rem;
  }
  .teplines-testimonial-text-item-wrap .bottom-text-info {
    margin-top: 2.8125rem;
  }
  .teplines-testimonial-text-item-wrap:before {
    font-size: 3.4375rem;
  }
  .main-screen-header .entry-main-screen-content {
    min-height: 21.875rem;
  }
  .templines-title-bordered-content-wrap .templines-bordered-title {
    font-size: 5.625rem;
  }
  .templines-testimonial-slider.testimonial-slider-style-two {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .templines-testimonial-slider.testimonial-slider-style-two {
    max-width: 53.4375rem;
  }
  .faq-title {
    font-size: 1.1875rem;
  }
  .faq-answer-content p {
    margin-top: 0 !important;
  }
  .faq-title .toggle-icon {
    width: 1.0625rem;
    height: 1.0625rem;
  }
  .templines-gallery-grid-post-type .templines-gallery-item {
    max-width: 48%;
    width: 100%;
  }
  .templines-gallery-grid-post-type .templines-gallery-item img {
    width: 100%;
  }
  .property-item.list-item-style.with-border .entry-property-item-content {
    flex-direction: column;
  }
  .property-item.list-item-style.with-border .entry-property-item-content .left-property-item-content {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .property-item.list-item-style.with-border .entry-property-item-content .right-property-item-content {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .catalog-list__aside {
    padding-right: 0;
  }
  .property-top-filter-wrapper .property-top-filter-form-container {
    gap: 0.625rem;
  }
  .blog__aside {
    padding-left: 0;
  }
  .widget_templines_instagram .templines-instagram-widget-images .instagram-img-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .widget_templines_social_profiles ul li a {
    width: 2.3125rem;
    height: 2.3125rem;
  }
}
/*-------------------------------------------------------------------

==  max-width 768px

-------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .tbvs-ticket-downloads .ticket-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .tbvs-ticket-downloads .button {
    margin-left: 0 !important;
    text-align: center;
  }
  .woocommerce-order-details h2 {
    font-size: 24px;
  }
  .woocommerce ul.order_details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
  }
  .woocommerce ul.order_details li {
    border-right: 0 !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }
  .tvbs-footer .footer-bottom-content {
    flex-direction: column;
  }
  .tvbs-footer .footer-bottom-content .footer-bottom-left-content {
    flex-direction: column;
  }
  .woocommerce-checkout form.woocommerce-checkout #customer_details {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .woocommerce-checkout form.woocommerce-checkout .checkout-total-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .fl-mega-menu {
    display: none !important;
  }
  .mobile-menu-btn {
    display: inline-flex !important;
  }
  .revers-column-md {
    flex-direction: column-reverse;
  }
  .hidden-md {
    display: none !important;
  }
  h1 {
    font-size: 3rem;
    line-height: 3.625rem;
  }
  h2 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
  h3 {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
  h5 {
    font-size: 1.0625rem;
    line-height: 1.6875rem;
  }
  h6 {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
  }
  .header-style-one.header-style-dark .top-header-content-wrap .entry-header-top-content .left-header-top-content .header-contact-info {
    display: none;
  }
  .templines-header.header-style-one .top-header-content-wrap .entry-header-top-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .templines-main-screen-home-page-one-wrap .content-wrapper .main-screen-title {
    font-size: 3rem;
    line-height: 3.625rem;
  }
  .templines-main-screen-home-page-one-wrap .content-wrapper .main-screen-title .main-screen-title-decor-text {
    line-height: 2.8125rem;
    font-size: 2.1875rem;
  }
  .templines-main-screen-home-page-one-wrap .content-wrapper .main-screen-text-content br {
    display: none;
  }
  .templines-search-form .top-form-content {
    flex-direction: column;
  }
  .templines-search-form .top-form-content .top-entry-search-form-content-wrap {
    flex-direction: column;
  }
  .templines-search-form .top-form-content .top-entry-search-form-content-wrap .search-form-content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0.625rem;
    padding-bottom: 0.625rem;
    border-bottom: 0.0625rem solid var(--border-color);
  }
  .templines-search-form .top-form-content .top-entry-search-form-content-wrap .search-form-content {
    padding-right: 0;
    border-right: 0;
  }
  .templines-search-form .bottom-search-from-content {
    width: 100%;
    max-width: 80%;
  }
  .templines-search-form .top-form-content .search-form-btn {
    justify-content: flex-end;
  }
  .gap-md-10 {
    padding-top: 0.625rem;
  }
  .gap-md-20 {
    padding-top: 1.25rem;
  }
  .gap-md-30 {
    padding-top: 1.875rem;
  }
  .gap-md-40 {
    padding-top: 2.5rem;
  }
  .gap-100 {
    padding-top: 3.75rem;
  }
  .brand-items-wrapper .brand-slider-item {
    border-right: 0 !important;
  }
  .brand-items-wrapper .brand-slider-item:nth-child(even) {
    border-left: 0.0625rem solid var(--border-color);
  }
  .brand-slider-item .entry-brand-item-content {
    border: 0;
  }
  .blog-posts-swiper-slider-arrow-pagination {
    display: none;
  }
  .templines-banner-wrapper.in-footer-visible {
    padding: 1.875rem 1.25rem;
  }
  footer .widget_nav_menu .widget--title {
    margin-bottom: 0.9375rem;
  }
  .templines-counter .entry-counter-content .counter-number-wrap {
    font-size: 1.5625rem;
    margin-bottom: 0.9375rem;
  }
  .templines-counter.counter-with-border-left {
    padding-left: 0;
    border-left: 0;
  }
  .header-contact-info {
    display: none;
  }
  .text-center-md {
    text-align: center;
  }
  .about-us-text-section {
    font-size: 1.125rem;
  }
  .testimonial-slider-item .entry-testimonial-slider-item-content .testimonial-text-content {
    font-size: 1rem;
  }
  .testimonial-slider-item .entry-testimonial-slider-item-content {
    padding: 1.5625rem 0.9375rem;
  }
  .templines-header.header-style-two .header-content-wrap .entry-header-bottom-content .right-header-entry-content .widget {
    display: none;
  }
  .templines-main-screen-home-page-three-wrap {
    min-height: 60vh;
  }
  .templines-main-screen-home-page-three-wrap .main-screen-img-slider-wrap {
    display: none;
  }
  .templines-main-screen-home-page-three-wrap .entry-main-screen-content .main-screen-content-container .main-screen-title-wrap {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .templines-main-screen-home-page-three-wrap .entry-main-screen-content .main-screen-content-container .main-screen-title-wrap .main-screen-title {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
  .main-screen-btn-wrap .templines-dark-btn-style {
    display: none;
  }
  .templines-tabs-slider-bottom .solution-info-item-wrap .entry-item-content .info-item-svg-wrap svg {
    max-width: 1.875rem;
  }
  .templines-title-bordered-content-wrap .templines-bordered-title {
    font-size: 3.4375rem;
  }
  footer.footer-style-two .top-footer-content-wrapper {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .templines-about-us-content .templines-title br {
    display: none;
  }
  .templines-about-us-content img {
    width: 100%;
  }
  .about-us-text-section.style-home-page-four {
    padding: 0;
  }
  .templines-icon-box-item.icon-box-style-three {
    margin-top: 1.5rem;
  }
  .teplines-testimonial-text-item-wrap .text-content {
    font-size: 1.1875rem;
    line-height: 1.8125rem;
  }
  .teplines-testimonial-text-item-wrap:before {
    bottom: auto;
    font-size: 2.5rem;
  }
  .templines-gallery-grid-post-type .templines-gallery-item {
    max-width: 100%;
  }
  .templines-contact-form-wrap.margin-left {
    margin-left: 0;
  }
  .property-top-filter-wrapper {
    justify-content: center;
  }
  .property-item.list-item-style .entry-property-item-content .right-property-item-content .entry-right-item-content .top-property-item-content .company-property-info-wrap .company-phone-number {
    font-size: 0.8125rem;
  }
  .property-item.list-item-style .entry-property-item-content .right-property-item-content .entry-right-item-content .bottom-property-item-content .price-and-bnt-content .info-price-content .price-item-content {
    font-size: 1.3125rem;
  }
  .property-item.list-item-style.with-border .entry-property-item-content .right-property-item-content {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .comments_wrap .comment .comments__inner {
    flex-wrap: wrap;
  }
  .comments_wrap .comment .comments__inner .blog-comments__img {
    padding: 0;
    flex: 0 0 100%;
    text-align: center;
  }
  .comments_wrap .comment .comments__inner .comment-author-name {
    text-align: center;
  }
  .property-title-wrap-price-wrap {
    flex-wrap: wrap;
  }
  .property-title-wrap-price-wrap .property-title {
    margin-bottom: 0.625rem;
    font-size: 1.875rem;
  }
  .property-title-wrap-price-wrap .price-item-content {
    font-size: 1.4375rem;
  }
  .property-item-top-info-wrap {
    flex-wrap: wrap;
  }
  .property-item-top-info-wrap .review-location-wrap {
    flex-wrap: wrap;
    margin-bottom: 0.625rem;
  }
  .property-item-top-info-wrap .review-location-wrap .review-wrap {
    margin-left: 0;
    margin-top: 0.5rem;
    flex: 0 0 100%;
  }
  .property-item-detail-wrap .property-detail-items .property-detail-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .templines-pagination-wrap {
    margin-top: 1.25rem;
  }
  .blog-post-tag-content {
    flex-wrap: wrap;
  }
  .blog-post-tag-content .article-bottom-tags__inner {
    margin-top: 0.625rem;
  }
}

/*# sourceMappingURL=general.css.map */
