/*

Theme Name:   Custom Theme

Description:  Custom Theme ist ein Child-Theme von Hello Elementor.

Author:       Gawin Steiner

Author URL:   https://gawinsteiner.ch

Template:     hello-elementor

Version:      1.0

Text Domain:  theme-by-gawin

*/


/*******************************************************************************************************************************
Hauptnavigation
*******************************************************************************************************************************/
#mainnav .elementor-nav-menu--dropdown.elementor-nav-menu__container {
    box-shadow: 0px 0px 10px #000000;
}



h1, h2, h3, h4 {
	hyphens: auto;
}

.elementor-widget-text-editor a {
    text-decoration: underline !important;
}

.pnomargin p:last-child {
	margin: 0;
}
/*******************************************************************************************************************************
Lineup Filters
*******************************************************************************************************************************/

.filter-container {
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    column-gap: 10px;
	row-gap: 20px;
	flex-wrap: wrap;
}

.dropdown {
	position: relative;
	font-size: 14px;
	color: #333;
	width: 100%;
	float: left;
}
.reset-button button {
	line-height: 30px;
    height: 30px;
    padding: 0 20px;
    border: none;
    font-size: 1em;
}

@media (min-width: 1024px) {
	.dropdown, .reset-button {
		width: calc(20% - 8px);
	}
	.reset-button {
		text-align: right;
	}
}

.dropdown-label {
  display: block;
  height: 30px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  line-height: 1;
  cursor: pointer;
  position: relative;
	border-radius: 20px;
}

.dropdown-label::before {
  content: "▼";
  position: absolute;
  right: 10px;
  top: 7px;
}


.dropdown-list {
  padding: 12px;
  background: #fff;
  position: absolute;
  top: 30px;
  left: 2px;
  right: 2px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
  transform-origin: 50% 0;
  transform: scale(1, 0);
  transition: transform 0.15s ease-in-out 0.15s;
  max-height: 66vh;
  overflow-y: scroll;
  z-index: 10;
}

.dropdown-option {
  display: block;
  padding: 8px 12px;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}

.dropdown.on .dropdown-list {
  transform: scale(1, 1);
  transition-delay: 0s;
}

.dropdown.on .dropdown-list a {
    color: #000;
}

.dropdown.on .dropdown-option {
  opacity: 1;
  transition-delay: 0.2s;
}

.dropdown.on .dropdown-label::before {
  content: "▲";
}

.dropdown input[type="checkbox"] {
  position: relative;
  top: -1px;
  margin-right: 4px;
}





/**************************************************************************

MEDIUM COMMENT

**************************************************************************/

/*******************************************************************************************************************************
CF7 Form
*******************************************************************************************************************************/

.wpcf7 label {
    margin-top: 20px;
	width: 100% !important;
}

.wpcf7 input, .wpcf7 textarea {
    border-radius: 1.2rem !important;
    border: 0 !important;
    width: 100% !important;
    margin-top: 5px;
}

.wpcf7 textarea {
    height: 90px;
}

.wpcf7-checkbox, .wpcf7-radio {
    margin-bottom: 10px;
    display: block;
}

.wpcf7-not-valid-tip {
    margin-top: 5px;
    padding-left: 10px;
}

.wpcf7 .wpcf7-submit {
    background: var(--e-global-color-47503f2);
    color: #fff;
    font-weight: 600;
    width: auto !important;
    display: inline;
}





/* Basis-Styles für Checkboxen & Radiobuttons */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  width: 24px !important;
  height: 24px !important;
  cursor: pointer;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s ease-in-out;
}

/* Checked-Zustand */
.wpcf7 input[type="checkbox"]:checked {
  background-color: #549930 !important; /* Akzentfarbe */
  border-color: #549930 !important;
}

.wpcf7 input[type="radio"]:checked {
    background: #549930;
}
.wpcf7 input[type="radio"]:checked::after {
    top: 5px !important;
    left: 6px !important;
    background: #549930 !important;
}

/* Checkbox-Häkchen */
.wpcf7 input[type="checkbox"]:checked::after {
  content: "✓";
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 4px;
}

/* Radio-Kreis */
.wpcf7 input[type="radio"] {
  border-radius: 50%;
}

.wpcf7 input[type="radio"]:checked::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}

/* Label-Styling */
.wpcf7-form-control-wrap input + label,
.wpcf7-list-item-label {
  font-size: 1.1rem;
  cursor: pointer;
}

/* Acceptance Checkbox */
.wpcf7-acceptance input[type="checkbox"] {
  width: 24px !important;
  height: 24px !important;
  margin-right: 10px;
}

.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

span.wpcf7-list-item-label {
    display: inline-flex;
    line-height: 22px;
}

.wpcf7-acceptance span.wpcf7-list-item-label {
    max-width: calc(100% - 45px);
}


.wpcf7-not-valid-tip {
    background: #000000;
    padding: 4px 10px !important;
    border-radius: 2px;
    color: #ff0000;
    font-size: 1em;
    display: inline-block;
}
.wpcf7-response-output {
    background: #fff;
    border-width: 5px !important;
}


.form-section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 3px solid #000;
	margin-top: 60px;
}

.form-section.part-3 {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}



/*******************************************************************************************************************************
LineUp Tiles
*******************************************************************************************************************************/
.lineup-tiles {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	width: 100%;
}
.tile {
	background-size: cover;
	background-position: center;
	border-radius: 1rem;
	text-align: center;
	width: 100%;
	height: 400px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: start;
	padding-left: 10px;
	transition: all 0.3s;
	color: transparent !important;
}

@media (min-width: 768px) {
	.tile {
		width: calc(50% - 2.26rem);
	}
}

@media (min-width: 1024px) {
	.tile {
		width: calc(25% - 1.13rem);
	}
}

.tile:hover {
	transition: all 0.3s;
   	transform: translate3d(-10px, -10px, -10px);
   	box-shadow: 6px 6px var(--tile-bg-color, #000);
}
.tile-title {
	color: var(--e-global-color-33c2fb7);
	font-weight: bold;
	font-size: 1.3em;
	padding: 0.5rem 1rem;
	border-radius: 2rem;
	transform: translateY(-20px);
}

.act-detail {
	color: var(--e-global-color-33c2fb7);
	background: #000000a1;
	opacity: 0;
	padding: 3px 6px;
	font-weight: bold;
	margin-top: 10px;
	border-radius: 20px;
	display: inline-block;
	transition: opacity 0.3s;
}
.tile:hover .act-detail {
	opacity: 1;
	transition: opacity 0.3s;
}


/*******************************************************************************************************************************
Breaking News Marqee
*******************************************************************************************************************************/
.breaking-news-marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}
#breaking-news a {
  color: #fff;
}
#breaking-news a:hover {
  color: #e8e8e8;
}
.breaking-news-marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
  margin: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}



/*******************************************************************************************************************************
List style (AGB)
*******************************************************************************************************************************/
.noinlinepadding ol {
    padding-inline-start: 20px;
}
.noinlinepadding  li {
    padding-left: 20px;
}


/*******************************************************************************************************************************
Prominenter Ticketbutton
*******************************************************************************************************************************/
#promoTicketBtn img {
  animation: scaleUpAndDown 3s infinite;
}
#promoTicketBtn {
  transition: all 0.2s;
}
#promoTicketBtn:hover {
  transform: rotate(10deg);
  transition: all 0.2s;
}

@keyframes scaleUpAndDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }  
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;	
  }
}


@media (max-width: 767px) {
	.mobOpacity10 {
		opacity: 0.1;
	}
	.mobOpacity20 {
		opacity: 0.21;
	}
	.mobOpacity30 {
		opacity: 0.3;
	}
	.mobOpacity40 {
		opacity: 0.4;
	}
	.mobOpacity50 {
		opacity: 0.5;
	}
	.mobOpacity60 {
		opacity: 0.6;
	}
	.mobOpacity70 {
		opacity: 0.7;
	}
	.mobOpacity80 {
		opacity: 0.8;
	}
	.mobOpacity90 {
		opacity: 0.9;
	}
	.mobOpacity100 {
		opacity: 1.0;
	}
}
