/**
Theme Name: flink think Theme
Author: flink think GmbH
Author URI: https://www.flinkthink.ch/
Description: Schlichtes und modernes Theme der Web Agentur flink think GmbH aus Pratteln, Basel-Landschaft, Schweiz
Theme URI: https://www.flinkthink.ch/
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flink-think-theme
Template: astra
*/

a:focus,
.uabb-faq-question-label:focus,
.uabb-faq-question-label:active,
.uabb-faq-questions-button:focus,
.uabb-faq-questions-button:active,
.uabb-faq-icon-wrap:focus,
.uabb-faq-icon-wrap:active {
    outline: none;
}

.woocommerce-message, .cart-empty.woocommerce-info {
  color: #081f25 !important;
}

/* Header */

.ast-header-button-2[data-section="section-hb-button-2"] p {
  margin: 0px !important;
} 

.ast-header-button-2 .ast-custom-button {
      color: #fff;
      background: transparent;
      border-color: #d8bc94;
      border-top-width: 1px;
      border-bottom-width: 1px;
      border-left-width: 1px;
      border-right-width: 1px;
      border-radius: 4px;
      font-weight: bold;
  }
[data-section*="section-hb-button-"] .ast-builder-button-size-md .ast-custom-button {
      font-size: 17px;
      padding: 15px 25px !important;
  }

@media only screen and (max-width : 576px) {
  [data-section*="section-hb-button-"] .ast-builder-button-size-md .ast-custom-button {
      padding: 15px 8px !important;
  }
  .ast-header-break-point.ast-hfb-header .ast-cart-menu-wrap {
    font-size: 1em !important;
  }
}

.ast-woo-header-cart-info-wrap {
  display: none !important;
}

.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item {
  line-height: 40px !important;
}

.main-header-menu .menu-text:after {
  display:block;
  content: '';
  height: 4px;
  display: block;
  background-color: #D8BC94;
  border-radius: 3px;
  width: 100%;
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
.main-header-menu .menu-text:hover:after { transform: scaleX(1); }

.current_page_item .menu-text:after {
  transform: scaleX(1);
}

/* Formulare */

input[type="text"]:focus {
	box-shadow: none !important;
}
form p {
	text-transform: none !important;
}
select {
	padding: .2rem !important;
}
textarea {
	box-shadow: none !important;
}
/* Material Button CSS */

@keyframes ripple {
  0% {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0);
  }
}

.frm_radio {
    margin-left: -15px !important;
    margin-bottom: 15px !important;
}

.frm_radio label {
    display: inline-block;
    height: 25px;
    position: relative;
    padding: 0px 15px;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: bottom;
}

.frm_radio input[type=radio] {
    position: absolute !important;
    margin-left: -9999px;
    visibility: hidden;
}

.frm_radio input[type=radio] + span {
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
}

.frm_radio input[type=radio] + span {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.frm_radio input[type=radio] + span:before,
.frm_radio input[type=radio] + span:after {
    position: absolute;
    content: '';
    border-radius: 50%;
    transition: all .3s ease;
    transition-property: transform, border-color;
}

.frm_radio input[type=radio]:checked + span:before {
    border-color: #467AA0;
    animation: ripple 0.2s linear forwards;
}

.frm_radio input[type=radio] + span:before {
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.54);
}

.frm_radio input[type=radio] + span:after {
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  transform: scale(0);
  background: #467AA0;
}

.frm_radio input[type=radio]:checked + span:after {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
}

/* Animate in Fields */

.form-field, .frm_submit {
	-webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


/* Flat Style Button */

.frm_checkbox {
    margin-left: 0px;
    margin-bottom: 15px !important;
}

.frm_checkbox label {
    height: 25px;
    position: relative;
    padding: 0 0 0 35px !important;
    text-indent: 10px !important;
    margin-bottom: 0;
    cursor: pointer;
    vertical-align: bottom;
}

.frm_checkbox input[type=checkbox] {
    position: absolute !important;
    margin-left: -9999px;
    visibility: hidden;
}

/* Hide the browser's default checkbox */
.frm_checkbox label input[type=checkbox]{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.frm_checkbox span{
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.frm_checkbox label:hover input[type=checkbox] ~ span{
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.frm_checkbox label input[type=checkbox]:checked ~ span{
  background-color: #467AA0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.frm_checkbox span:after{
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.frm_checkbox label input[type=checkbox]:checked ~ span:after{
  display: block;
}

/* Style the checkmark/indicator */
.frm_checkbox label span:after{
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Startseite */
.btngroup .fl-button-group {
  background: #FFFFFF;
  box-shadow: 0 20px 30px 0 rgba(0,0,0,0.30);
  border-radius: 8px;
  padding: 20px 10px 20px 30px;
}
.btngroup a.fl-button {
  padding-left: 25px !important;
  padding-right: 25px !important;
}
.btngroup {
  margin-left: -30px;
}
  
/* Content */

.contentlink a{
  text-decoration: underline !important;
}
.contentlink a:hover{
    text-decoration: none !important;
  }
.gold {
  color: #D8B282;
}

.blue {
  color: #023E4B;
}

.inforounded .uabb-button {
  border: 1px solid #D8B282 !important;
}

.newsfilter ul.uabb-masonary-filters > li {
  border: 1px solid #023E4B;
}

.newsfilter ul.uabb-masonary-filters > li:hover {
  background-color: #023E4B;
  color: #fff;
}

.boxshadow {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
}
.howworks {
  margin-top: -350px;
}
.startshadow {
  border-radius: 5px !important;
}

.testimonials p {
  margin-bottom: 16px !important;
}
.testimonials .zitat {
  height: 450px;
  overflow: hidden;
}

@media only screen and (max-width : 1280px) {
.testimonials .zitat {
    height: auto;
  }  
}

div#n2-ss-2 .n2-ss-slider-3 {
  max-width: 100% !important;
}

h1, .entry-content h1, h2, .entry-content h2, h3, .entry-content h3 {
  letter-spacing: -1px;
}

h5 {
  letter-spacing: 4.375 !important;
}

.inforounded .uabb-button, .inforounded .uabb-infobox {
  border-radius: 5px !important;
}

html:not(.fl-builder-edit) .z10 .fl-row-content-wrap {
  z-index: 10;
}
html:not(.fl-builder-edit) .z100 .fl-row-content-wrap {
  z-index: 100;
}
.infotext {
  font-size: 16px;
  line-height: 18px !important;
}

ul.uabb-masonary-filters {
  margin-left: 0px !important;
}

.faq .uabb-faq-content a {
  color: #d2b489;
  font-weight: 700;
  text-decoration: underline !important;
}
.faq .uabb-faq-content a:hover {
  text-decoration: none !important;
}

.blog-text-content a {
  font-weight: 700 !important;
  text-decoration: underline !important;  
}

.blog-text-content a:hover {
  text-decoration: none !important;  
}
.fl-post-info-date {
  color: #052931 !important;
}

.advboard .uabb-infobox {
  border-radius: 5px;
  min-height: 790px;
}
.advboard .uabb-infobox-tex p, .advboard .uabb-infobox-content .uabb-infobox-text p {
  margin-bottom: 15px !important;
  padding-bottom: 0px !important;
}
.advboard .uabb-infobox-tex p:last-child {
  margin-bottom: 0px !important;
}

/* Price Boxes 
.uabb-pricing-table-outter-1, .uabb-pricing-table-outter-2 {
  width: 20% !important;
}
*/
.priceboxes .uabb-button {
  border: 1px solid #023e4b !important;
}

.priceboxes .uabb-pricing-table-features {
  min-height: 520px;
}

@media only screen and (max-width : 576px) {
.priceboxes .uabb-pricing-table-features {
    min-height: auto;
  }  
}
/* Header */
.ast-header-button-1 .ast-custom-button::after, .ast-header-button-2 .ast-custom-button::after {
  font-family: "Font Awesome 5 Pro"; font-weight: 400; content: "\f178";
  margin-left: 10px;
}
.ast-header-button-2 .ast-custom-button::before {
  font-family: "Font Awesome 5 Pro"; font-weight: 400; content: "\f30d";
  margin-right: 10px;
}


/* Facet WP */
.facetwp-radio:hover {
  background-color: #E3E5E5 !important;
}

.facetwp-btn {
  right: 12px;
}

.facetwp-facet {
  margin-bottom: 20px !important;
  font-size: 16px;
}

.facetwp-checkbox, .facetwp-radio, .facetwp-facet-flexibilitaet .facetwp-radio  {
  width: auto;
  float: left;
  background-image: none !important;
  background: rgba(255,0,0,0);
  color: #052931;
  margin-right: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 4px;
  border: 1px solid #023E4B;
  text-align: center;
  font-weight: bold;
}


.facetwp-facet-flexibilitaet .facetwp-radio .facetwp-counter, .facetwp-radio .facetwp-counter{
  display: none;
}



.facetwp-counter {
  background-color: #fff !important;
  margin-left: 5px !important;
  color: #009BDF;
  border-radius: 15px;
  padding: 0px 4px;
  font-size: 12px;
  display: none !important;
}
.facetwp-facet-startdatum .checked {
  color: inherit !important; 
  background-color: #fff !important;
}

.facetwp-facet-zielgruppe, .facetwp-facet-categories, .facetwp-facet-themen_adresse, .facetwp-facet-sprache_adresse {
  clear: both;
}

.facetwp-expand {
  padding: 3px 5px !important;
  margin-left: 5px !important;
  font-size: 10px;
}

.facetwp-checkbox:hover {
  background-color: #ddd;
}

.checked {
  background-color: #023E4B !important;
  color: #fff !important;
}		

/*
.facetwp-radio:before,.facetwp-checkbox:before { 
  content: "\f0c8";
  font-family: 'Font Awesome 5 Pro';
  display: inline-block;
  margin-right: 7px;
}

.facetwp-radio.checked:before,.facetwp-checkbox.checked:before { 	
  content: "\f14a"; 
  font-family: 'Font Awesome 5 Pro';
  margin-right: 7px;
} 
*/

.reset button {
  font-weight: bold;
  border-radius: 4px;
}

/* Tooltip */
a.tooltip {
  position: relative;
  text-decoration: none;
}
a.tooltip:after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 20%;
  background: #ffcb66;
  padding: 5px 15px;
  color: black;
  -webkit-border-radius: 10px;
  -moz-border-radius : 10px;
  border-radius : 10px;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition : all 0.4s ease;
  transition : all 0.4s ease;
}
a.tooltip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid #ffcb66;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  -webkit-transition: all 0.4s ease;
  -moz-transition : all 0.4s ease;
  transition : all 0.4s ease;
  opacity: 0;
  left: 30%;
  bottom: 90%;
}
a.tooltip:hover:after {
  bottom: 100%;
}
a.tooltip:hover:before {
  bottom: 70%;
}
a.tooltip:hover:after, a:hover:before {
  opacity: 1;
}

/* Table */
.compare {
  background-color: #fff;
  border-radius: 5px;
}
.compare table {
  padding: 10px;
}
.compare .table-header-th {
  border-top: 0px !important;
}
.compare .table-body-td:first-child, .compare .table-header-th:first-child {
  border-left: 0px !important;
}
.compare .table-body-td:last-child, .compare .table-header-th:last-child {
  border-right: 0px !important;
}
.compare .table-body-30, .compare .table-body-31, .compare .table-body-32, .compare .table-body-32, .compare .table-body-33, .compare .table-body-34 {
  border-bottom: 0px !important;
  vertical-align: top !important;
  padding-top: 50px !important;
}



.table-btn {
  background-color: #c7a676;
  border-radius: 4px;
  padding: 15px 25px;
  font-weight: bold;
  margin-top: 22px;
  text-decoration: none !important;
  display: block;
  margin-bottom: 22px;
}
.table-btn:hover {
  color: #fff;
}

/* Account */
.mepr-nav-item a{
  border-radius: 4px;
  padding: 18px 30px;
  font-weight: bold !important;
  font-size: 18px;
  border: 1px solid #023E4B;
  margin: 0px 10px 20px 0px;
  text-decoration: none !important;
  line-height: 70px;
}
span.mepr-nav-item.mepr-subscriptions, span.mepr-nav-item.mepr-payments, span.mepr-nav-item.mepr-logout {
  margin-left: 0px !important;
}
.mepr-active-nav-tab a {
  background-color: #023E4B;
  color: #fff !important;
}
div#mepr-account-nav {
  margin-bottom: 60px !important;
}

@media only screen and (max-width : 576px) {
 .mepr-nav-item a{ 
   font-size: 16px;
   padding: 18px 20px;
 } 
}

/* Gravity forms */
.gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title {
    line-height: 1!important;
    margin: 0 0 10px 0px!important;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
  font-family: Intelo;
    opacity: 1;
    font-weight: bold;
    color: #fff;
}

.gf_step_current_page, .gf_step_page_count {
  padding-left: 5px;
  padding-right: 5px;
}

.gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_blue {
  background: #b4975a;
}

.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
    font-weight: normal;
}

.gform_wrapper .top_label .gfield_label, .gform_wrapper legend.gfield_label {
    font-family: Intelo;
    font-weight: 500;
    font-size: 16px;
    margin: 0px;
    color: #303133;
}

.gform_wrapper .gform_page_footer .button.gform_button, .gform_wrapper .gform_page_footer .button.gform_next_button {
    margin-right: 10px;
    background: #b4975a;
    color: #fff;
}

.gform_wrapper .top_label .gsection_description {
    width: 100%;
    margin: 15px 0 10px;
    font-size: 15px;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 15px;
}

.gform_wrapper ul.gfield_checkbox li input[type="checkbox"], .gform_wrapper ul.gfield_radio li input[type="radio"] {
    width: 20px !important;
    min-width: 20px;
}

/* Forms */
.mepr-submit {
  font-weight: bold !important;
  border-radius: 4px !important;
}

}
.row div[class*="col-lg-"].align_left > .uncol > .uncoltable > .uncell > .uncont .btn, .row div[class*="col-lg-"] .row-inner .align_left > .uncol > .uncoltable > .uncell > .uncont .btn {
  transform-origin: center;
}
}
.ginput_container_text {
  background-color: #fafafa !important;
}
.tagify__tag-text {
  color: #333 !important;
}
/* Sign Up Form */
@media only screen and (min-width : 900px) {
.mepr_price_cell {
  font-size: 150%;
  color: black;
}
.mp_wrapper .mp-form-row.mepr_first_name, .mp_wrapper .mp-form-row.mepr_last_name, .mp_wrapper .mp-form-row.mepr_mepr-address-city, .mp_wrapper .mp-form-row.mepr_mepr-address-country, .mp_wrapper .mp-form-row.mepr_mepr-address-state, .mp_wrapper .mp-form-row.mepr_mepr-address-zip, .mp_wrapper .mp-form-row.mepr_mepr_company, .mp_wrapper .mp-form-row.mepr_mepr-address-one, .mp_wrapper .mp-form-row.mepr_mepr-address-two, .mp_wrapper .mp-form-row.mepr_password, .mp_wrapper .mp-form-row.mepr_password_confirm {
  width: 46% !important;
  margin-right: 2%;
  float: left;
}
.mp_wrapper select {
  height: 50px !important;
}
.mp_wrapper .mp-form-row.mepr_email {
  width: 94% !important;
}
.mp-form-row.mepr_mepr-address-city {
  clear: both;
}
.mepr-payment-methods-wrapper {
  clear: both;
}
}

.mepr-price-box-footer {
min-height: 50px;
}

/* Tickets */
.wpem-form-wrapper .wpem-form-group select {
line-height: inherit;
width: 70px;
}

.wpem-ticket-register-button  button[type="submit"] {
color: #000 !important;
}

/* WooCommerce Cart */
.shop_table th, .woocommerce-cart .cart-collaterals .cart_totals > h2 {
  color: #081f25 !important;
}
.cart-subtotal th, .order-total th  {
  color: #fff !important;
}

/* How it works */
/*
.steparrow .uabb-infobox-title-wrap::after {
  position: absolute;
  content: "\";
  font-family: 'Font Awesome Pro';

  background: green;
  z-index: 1;
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
}
*/
/* Blog */
.fl-post-info-date {
  font-weight: bold;
}
.fl-author-bio-thumb img {
  border-radius: 50%;
}
.fl-author-bio-content h3 {
  font-family: Intelo !important;
  font-size: 18px !important;
  color: #052931 !important;
  font-weight: bold !important;
  padding-top: 15px;
}

/* Hover Boxen - Post Grid */
.newsstart .uabb-blog-post-inner-wrap, .shortlinks .uabb-infobox{
  transition: all 0.4s;
}
.newsstart .uabb-blog-post-inner-wrap:hover, .newsstart .uabb-blog-post-inner-wrap:hover, .shortlinks .uabb-infobox:hover {
  border-radius: 0;
  box-shadow: none;
  background-color: rgba(255,255,255,0);
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
}
.newsstart .uabb-blog-post-inner-wrap:hover, .shortlinks .uabb-infobox:hover {
  background-color: rgba(255,255,255,1);
  
  box-shadow: 0 15px 30px 0 rgba(0,0,0,0.10);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
}

.newsstart .uabb-blog-posts-col-2 {
  transition: all 0.4s;
}
.newsstart .uabb-blog-posts-col-2:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);  
}

/* Footer */
.site-below-footer-wrap[data-section="section-below-footer-builder"] .ast-builder-grid-row {
  max-width: 1299px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Mobile Hacks */
@media only screen and (max-width : 992px) {
  .fl-row-fixed-width {
    max-width: 690px;
  }
}

@media only screen and (max-width : 768px) {
  .fl-col-small:not(.fl-col-small-full-width) {
    max-width: 450px; /* anstatt 400px? */
  }
  .fl-button-group .fl-button-group-buttons .fl-button-group-button, .fl-button-group-layout-horizontal .fl-button-wrap {
    width: 100% !important;
  }
  .btngroup {
    margin-left: 30px !important;
  }
  .btngroup .fl-button-group {
    padding: 15px;
  }
  .btngroup a.fl-button {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .testimonials .zitat {
      height: auto;
    }
    
  .boxshadow {
    box-shadow: none;
  }
  
  .startshadow .fl-col > .fl-col-content {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3)
  }
  h1, .entry-content h1, h1.fl-heading {
    font-size: 45px !important;
  }
  h2, .entry-content h2, h2.fl-heading {
    font-size: 35px !important;
  }
  .uabb-table-wrapper .table-body-td {
    font-size: 13px !important;
    padding: 5px !important;
  }
  .uabb-table-features .before-icon {
    font-size: 16px !important;
  }
  .table-header-th {
    font-size: 16px !important;
    padding: 10px !important;
    text-align: center;
  }
}
.woocommerce-placeholder {
  display: none;
}
/* Single Events */
.register-button {
  color: #fff;
  background: #ceaf82;
  border-color: #d8bc94;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-radius: 4px;
  font-weight: bold;
  padding: 15px 25px;
  font-size: 17px;
  margin-bottom: 20px;
}

.register-button:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f178";
  margin-left: 10px;
}

.register-button:hover {
  background-color: #072f3a;
  color: #fff !important;
}

:root { 
  --tec-color-accent-primary: #b4975a; 
  --tec-color-accent-primary-hover: #00323f;
  --tec-color-link-accent-hover: #072f3a;
  --tec-font-family-sans-serif: Intelo,Verdana,sans-serif;
}
.single-tribe_events .site-content > .ast-container {
  background-image: linear-gradient(90deg, #f8f1ea 62%, #f3e9dc 35%);
}
.tribe-events-page-template .site-content > .ast-container, .page-id-80085 .site-content > .ast-container  {
  background-image: linear-gradient(90deg, #f8f1ea 62%, #f3e9dc 35%);
}

.page-id-80085 .site-content > .ast-container h1, .page-id-80085 .site-content > .ast-container .entry-content h1, 
.page-id-80085 .site-content > .ast-container h2, .page-id-80085 .site-content > .ast-container .entry-content h2, 
.page-id-80085 .site-content > .ast-container h3, .page-id-80085 .site-content > .ast-container .entry-content h3, 
.page-id-80085 .site-content > .ast-container h4, .page-id-80085 .site-content > .ast-container .entry-content h4 {
  color: var(--ast-global-color-1);
}

.tribe-events-cal-links .tribe-events-ical {
  margin-right: var(--tec-spacer-8);
}
.tribe-events-view--list, .page-id-80085 .page {
  max-width: 1200px;
  margin: 90px auto;
}
.single-tribe_events .tribe-events-ics {
  padding-left: var(--tec-spacer-7);
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='18'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='%23141827' d='M0 .431V17.57c0 .238.163.431.364.431h17.273c.2 0 .363-.193.363-.431V.43c0-.237-.163-.43-.363-.43H.364C.163 0 0 .193 0 .431zm18 7.585h-1.015V4.687H.991v12.07h15.994v-3.753H18V8.016zM.99 1.239h15.995v2.315H.991V1.239z'/%3E%3Cpath stroke='%23141827' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.2' d='M22.918 10.5H9.207m11.488-3.255l3.252 3.272-3.213 3.213'/%3E%3C/g%3E%3C/svg%3E") 0/24px no-repeat;
  color: var(--tec-color-link-accent);
  font-size: var(--tec-font-size-2);
  font-weight: var(--tec-font-weight-regular);
  line-height: var(--tec-line-height-3);
  text-decoration: none;
  display: inline-block;
}
.tribe-events-single-event-title {
  font-family: TRY Vesterbro,Helvetica,Arial,sans-serif;
  font-weight: 500;
  text-transform: none !important;
}
.tribe-checkout-backlinks {
  display: none;
}


