/*!
Theme Name: New Base
Theme URI:
Author: 
Author URI: 
Description: Description
Version: 1.0.2
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: new-base
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

New Base is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */
/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Customize the background color to match your design.
   */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
   * A better looking default horizontal rule
   */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
   * Remove default fieldset styles.
   */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
   * Allow only vertical resizing of textareas.
   */
textarea {
  resize: vertical;
}

/* ==========================================================================
     Author's custom styles
     ========================================================================== */
/* ==========================================================================
     Helper classes
     ========================================================================== */
/*
   * Hide visually and from screen readers
   */
.hidden,
[hidden] {
  display: none !important;
}

/*
   * Hide only visually, but have it available for screen readers:
   * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
   *
   * 1. For long content, line feeds are not interpreted as spaces and small width
   *    causes content to wrap 1 word per line:
   *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
   */
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
   * Extends the .visually-hidden class to allow the element
   * to be focusable when navigated to via the keyboard:
   * https://www.drupal.org/node/897638
   */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
   * Hide visually and from screen readers, but maintain layout
   */
.invisible {
  visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * The use of `table` rather than `block` is only necessary if using
   * `::before` to contain the top-margins of child elements.
   */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
     EXAMPLE Media Queries for Responsive Design.
     These examples override the primary ('mobile first') styles.
     Modify as content requires.
     ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
     Print styles.
     Inlined to avoid the additional HTTP request:
     https://www.phpied.com/delay-loading-your-print-css/
     ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Elements
--------------------------------------------- */
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

/* 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 {
  color: var(--color__link);
}
a:visited {
  color: var(--color__link-visited);
  color: inherit;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: var(--color__border-button);
  border-radius: 3px;
  background: var(--color__background-button);
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: var(--color__text-input);
  border: 1px solid var(--color__border-input);
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: var(--color__text-input-focus);
}

select {
  border: 1px solid var(--color__border-input);
}

textarea {
  width: 100%;
}

@font-face {
  font-family: "NewEdge-Light";
  src: url("../fonts/NewEdge666-LightRounded.woff") format("woff"), url("../fonts/NewEdge666-LightRounded.woff2") format("woff2");
  font-style: normal;
}
@font-face {
  font-family: "NewEdge-Regular";
  src: url("../fonts/NewEdge666-RegularRounded.woff") format("woff"), url("../fonts/NewEdge666-RegularRounded.woff2") format("woff2");
  font-style: normal;
}
@font-face {
  font-family: "Moxa";
  src: url("../fonts/MOXA-Bestine.woff") format("woff"), url("../fonts/MOXA-Bestine.woff2") format("woff2");
  font-style: normal;
}
html {
  --font-sans: "NewEdge-Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-bold: "NewEdge-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --moxa: "Moxa", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  --black: #111;
  --true-black: 000;
  --main-color: red;
  --dark-gray: #525151;
  --medium-gray: #c9d3dd;
  --light-gray: #F3F7FB;
  --color__link: black;
  --color__link-visited: blue;
  --color__link-hover: white;
  --color__border-button: red;
  --color__background-button: green;
  --color__border-button-hover: blue;
  --color__border-button-focus: yellow;
  --color__text-input: red;
  --color__border-input: red;
  --color__text-input-focus: red;
  --ease: cubic-bezier(.12, .845, .305,1);
  --ratio-square: 1;
  --ratio-landscape: 4/3;
  --ratio-portrait: 3/4;
  --ratio-widescreen: 16/9;
  --ratio-ultrawide: 18/5;
  --ratio-golden: 1.6180/1;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.no-sidebar .site {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: "header" "main" "footer";
}

.site-header {
  grid-area: header;
}

.site-main {
  grid-area: main;
  /* Resolves issue with <pre> elements forcing full width. */
}

.site-footer {
  grid-area: footer;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation ul {
  list-style: none;
  border: 0;
  display: flex;
  justify-content: flex-end;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
.main-navigation ul:after, .main-navigation ul:before {
  display: none;
}
.main-navigation ul li {
  /* showing sub-menus */
}
.main-navigation ul li > a {
  display: block;
  margin: 0;
  padding: 12px;
  text-decoration: none;
  position: relative;
}
.main-navigation ul li > a:hover {
  color: #444;
  text-decoration: none;
}
.main-navigation ul li > a:hover::after {
  width: 100%;
}
.main-navigation ul li > a:focus {
  background-color: teal;
  color: white;
  text-decoration: underline;
}
.main-navigation ul li ul,
.main-navigation ul li ul {
  margin: 0;
  padding: 0;
  margin-top: -1px;
  border-top: 0;
  position: absolute;
  display: none;
  z-index: 2;
  min-width: 200px;
  background: white;
  /* highlight sub-menu current page */
}
.main-navigation ul li ul li,
.main-navigation ul li ul li {
  text-align: left;
}
.main-navigation ul li ul li a,
.main-navigation ul li ul li a {
  padding: 12px 10px;
  border-right: 0;
  display: block;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
.main-navigation ul li ul li a::after,
.main-navigation ul li ul li a::after {
  display: none;
}
.main-navigation ul li ul li a:hover,
.main-navigation ul li ul li a:hover {
  background: var(--main-color);
  color: white;
}
.main-navigation ul li ul li a:focus,
.main-navigation ul li ul li a:focus {
  background: teal;
  color: white;
  text-decoration: underline;
}
.main-navigation ul li ul li:last-child a,
.main-navigation ul li ul li:last-child a {
  border-bottom: 0;
}
.main-navigation ul li:hover > ul {
  display: block;
}
/* end .nav */
.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%;
}

.page-overlay {
  display: inline-block;
}

.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 19;
  height: 100vh;
  width: 100%;
  background: var(--black);
  padding: 100px 5vw 0;
  transition: all 0.3s var(--ease);
  transform: translateX(100%);
}

.nav-toggle {
  position: fixed;
  width: 144px;
  height: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--dark-gray);
  border-bottom: 1px solid var(--dark-gray);
  z-index: 20;
  top: 0;
  right: 0;
  transition: all 0.5s var(--ease);
  transform: translateX(100%);
  display: none;
}

.body__scrolled .nav-toggle,
.body__menu_open .nav-toggle {
  transform: translateX(0);
}
.body__scrolled .page-overlay,
.body__menu_open .page-overlay {
  display: flex;
}

.body__menu_open .page-overlay {
  transform: translateX(0);
}
.body__menu_open .page-overlay .nav_content {
  left: 0;
}

/* 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 {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  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;
}

#primary {
  background: #e77e23;
  left: 50%;
  padding: 8px;
  position: absolute;
  display: flex;
  transform: translateY(-100%);
  transition: transform 0.3s;
  color: white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  outline: 0;
}

#primary:focus,
#primary :focus-within {
  transform: translateY(0%);
  outline: 0;
}

.logo a:focus {
  background: #e77e23;
}

.menu-item-has-children a:focus::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  left: 50%;
  bottom: -8px;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: black transparent transparent transparent;
  transform: translateX(-50%);
}

/*********************
BASE (MOBILE) SIZE
*********************/
/*********************
GENERAL STYLES
*********************/
html {
  overflow-x: hidden;
  box-sizing: border-box;
  /* magic... */
  --flow-small: 10px;
  --flow-medium: 20px;
  --flow-big: 30px;
  --bottom-row-height: 70px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.hidden {
  color: transparent;
  visibility: hidden;
  height: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-weight: normal;
  font-family: var(--font-sans);
  margin: 0 0 0.3em;
  /* removing text decoration from all headline links */
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}

p.site-title {
  margin: 0;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 90%;
  margin: 0 auto;
}

:root {
  --pink: #f4b3c2;
  --green: #a7c81f;
  --black: #111;
  --shadow-color: var(--black);
}

.background {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.background #svg-top {
  display: block;
  width: 100vw;
  height: 100vh;
}
.background #form {
  fill: var(--green);
  transition: fill 0.2s ease;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.15));
}

body {
  color: var(--black);
  background: var(--pink);
}

#main, .date-location {
  z-index: 2;
  position: relative;
  pointer-events: none;
}

header {
  pointer-events: none;
  position: relative;
  width: 90vw;
  margin: 0 auto;
  aspect-ratio: 970/580;
  max-width: 800px;
}
header p {
  padding-top: 10px;
  text-align: center;
}

.logo-image {
  height: 100%;
  width: 100%;
  background: url(../images/PHF-LOGO.png) center 0/contain no-repeat;
}

.date-location {
  width: 92vw;
  background: var(--green);
  transform: translateX(-3vw);
  display: flex;
  margin-top: 10px;
  padding: 20px 5% 10px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--pink);
  border: 2px solid black;
  box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px var(--shadow-color), 4px 4px var(--shadow-color), 5px 5px 0px 0px var(--shadow-color);
}
.date-location .date-time {
  transform-origin: center top;
  font-size: 18px;
  float: left;
  font-family: var(--font-bold);
}
.date-location .location {
  float: left;
  position: relative;
  margin-left: 10px;
}
.date-location .location a {
  pointer-events: initial;
}
.date-location .location p {
  font-weight: 600;
  display: none;
}

section {
  padding: 1rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.lineup > div {
  margin-top: 40px;
  text-align: center;
}
.lineup .vert-counterclock {
  display: inline-block;
  transform: rotate(180deg);
  transition: all 0.2s var(--ease);
  pointer-events: initial;
  border: 1px solid black;
  padding: 4px 6px 2px;
  margin: 0 0 10px;
  background-color: var(--pink);
  box-shadow: -1px -1px var(--shadow-color), -2px -2px var(--shadow-color), -3px -3px 0px 0px var(--shadow-color);
}
.lineup .vert-counterclock:hover {
  transform: rotate(0deg);
  box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px 0px 0px var(--shadow-color);
}
.lineup .headliner ul {
  font-size: 40px;
  font-weight: 600;
}
.lineup .contest ul {
  font-size: 20px;
  font-weight: 600;
}
.lineup .moderation p {
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
}

.lineup h2,
.awards h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

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

.lineup strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.contest {
  margin-top: 2rem;
  font-size: 0.95rem;
}

.free-entry {
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
  margin: 2rem auto;
  font-family: var(--moxa);
}
.free-entry div {
  padding: 10px 40px 0;
  border: 2px solid black;
  background-color: var(--pink);
  box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px var(--shadow-color), 4px 4px var(--shadow-color), 5px 5px 0px 0px var(--shadow-color);
}

.awards {
  text-align: center;
}
.awards h2 {
  font-family: var(--moxa);
  font-size: 2rem;
}
.awards #bands > h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.awards img {
  width: 250px;
  max-width: 60%;
  margin: 1.5rem 0;
  pointer-events: initial;
  transform: rotate(0deg);
  transition: all 2s ease-in-out;
}
.awards img:hover {
  transform: rotate(360deg);
}

.awards #bands a, .vote-now-button, .awards a {
  pointer-events: initial;
}

.vote-now-button {
  background-color: white;
  display: inline-block;
  text-decoration: none;
  margin: 30px 0;
  padding: 15px 20px 7px;
  box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px var(--shadow-color), 4px 4px var(--shadow-color), 5px 5px 0 0 var(--shadow-color);
  border-radius: 0;
  border: 2px solid black;
  font-size: 30px;
  font-family: var(--font-bold);
  transition: all 0.1s ease;
}
.vote-now-button:hover {
  background: var(--pink);
}
.vote-now-button:active {
  box-shadow: 0px 0px 0 0 var(--shadow-color);
  transform: translate(4px, 4px);
}

.bands-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.bands-container article {
  margin: 0;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid white;
}
.bands-container article h3 {
  font-size: 1.5em;
  font-weight: bold;
}

.poll-container {
  pointer-events: initial;
}
.poll-container p > strong {
  font-size: 2em;
  border-bottom: 5px solid var(--green);
}
.poll-container .pollbar {
  box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px 0 0 var(--shadow-color);
  -webkit-animation: scale-up-hor-left 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: scale-up-hor-left 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.poll-container .Buttons {
  background-color: var(--green);
  box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px var(--shadow-color), 4px 4px var(--shadow-color), 5px 5px 0 0 var(--shadow-color);
  border-radius: 0;
  border: 2px solid black;
  font-size: 30px;
  font-family: var(--font-bold);
  transition: all 0.1s ease;
}
.poll-container .Buttons:hover {
  background: white;
}
.poll-container .Buttons:active {
  box-shadow: 0px 0px 0 0 var(--shadow-color);
  transform: translate(4px, 4px);
}
.poll-container .wp-polls-ans .wp-polls-ul {
  margin-top: 40px;
}
.poll-container .wp-polls-ans .wp-polls-ul li {
  font-size: 18px;
  font-family: var(--font-bold);
  margin: 0 0 15px 0;
}
.poll-container .wp-polls-ans .wp-polls-ul li strong {
  font-weight: normal;
}
.poll-container .wp-polls-form .wp-polls-ul {
  margin-top: 40px;
  padding-bottom: 20px;
}
.poll-container .wp-polls-form .wp-polls-ul li {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0 0 8px 0;
  font-size: 20px;
  font-family: var(--font-bold);
  line-height: 1.5;
  /* Custom radio circle */
}
.poll-container .wp-polls-form .wp-polls-ul li label {
  cursor: pointer;
  position: relative;
  top: px;
  padding-left: 50px;
  left: -35px;
}
.poll-container .wp-polls-form .wp-polls-ul li input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.poll-container .wp-polls-form .wp-polls-ul li label {
  position: relative;
}
.poll-container .wp-polls-form .wp-polls-ul li label::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 2px solid black;
  position: absolute;
  left: 0;
  top: -5px;
  background-color: white;
  box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px var(--shadow-color), 4px 4px 0 0 var(--shadow-color);
  z-index: 1;
}
.poll-container .wp-polls-form .wp-polls-ul li label::before {
  content: "";
  transition: all 0.1s ease;
  transform: translate(-50%, -50%) scale(0) rotate(0);
}
.poll-container .wp-polls-form .wp-polls-ul li input:checked + label::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--green);
  border: 2px solid black;
  position: absolute;
  top: 9px;
  left: 14px;
  z-index: 2;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(180deg);
}
.poll-container .wp-polls-form .wp-polls-ul li input:focus + .radio-custom {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.page-template-page-ema .background, .page-template-page-vote .background {
  top: -20px;
  height: calc(100vh + 20px);
  background: url(../images/ema-back.jpg) 0 0/cover no-repeat;
}
.page-template-page-ema .background #svg-top, .page-template-page-vote .background #svg-top {
  display: none;
}
.page-template-page-ema .logo-image, .page-template-page-vote .logo-image {
  margin-top: 20px;
  background: url(../images/ema-logo-web.png) center center/contain no-repeat;
}
.page-template-page-ema p, .page-template-page-vote p {
  max-width: 666px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-page-ema strong, .page-template-page-vote strong {
  font-family: var(--font-bold);
  font-weight: regular;
}
.page-template-page-ema .award-font, .page-template-page-vote .award-font {
  font-family: var(--moxa);
  font-size: 1.2em;
}
.page-template-page-ema a,
.page-template-page-ema p, .page-template-page-vote a,
.page-template-page-vote p {
  pointer-events: initial;
}
.page-template-page-ema a:hover, .page-template-page-vote a:hover {
  color: var(--green);
}

footer {
  padding: 1.5rem 2rem 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  z-index: 3;
  position: relative;
  gap: 1rem;
}
footer .imprint-link {
  order: 2;
  color: black;
  background: var(--green);
  padding: 3px;
}
footer div {
  order: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer img {
  margin-top: 10px;
  width: 100%;
}

#imprint-box {
  width: 100%;
  order: 2;
  max-height: 0;
  background-color: var(--pink);
  color: #fff;
  /* hidden by default */
  padding: 0;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  color: black;
  border: 2px solid black;
  background-color: var(--pink);
  box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px var(--shadow-color), 4px 4px var(--shadow-color), 5px 5px 0px 0px var(--shadow-color);
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
#imprint-box h4, #imprint-box h2, #imprint-box h3 {
  font-family: var(--font-bold);
}
#imprint-box.show {
  opacity: 1;
  max-height: 2500px;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/**
 * ----------------------------------------
 * animation scale-up-hor-left
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(0.4);
    transform: scaleX(0.4);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
}
@keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(0.4);
    transform: scaleX(0.4);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
}
/*********************
LARGER MOBILE DEVICES
*********************/
/*********************
TABLET & SMALLER LAPTOPS
*********************/
@media only screen and (min-width: 768px) {
  .date-location {
    position: fixed;
    width: auto;
    left: 1rem;
    top: 0;
    padding: 0;
    transform-origin: bottom left;
    transform: rotate(90deg) translateX(-50px);
    display: block;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .date-location .date-time {
    transform-origin: center top;
    font-size: clamp(1rem, 5vw, 6vh);
    float: left;
  }
  .date-location .location {
    float: left;
    position: relative;
    margin: 0;
  }
  .date-location .location a {
    pointer-events: initial;
  }
  .date-location .location p {
    position: absolute;
    left: 25px;
    bottom: -10px;
    transform-origin: center center;
    transform: rotate(180deg);
    font-weight: 600;
    display: inline;
  }
  .date-location .location div {
    transform-origin: center center;
    transform: rotate(-90deg) translateX(50px);
  }
  header {
    pointer-events: none;
    position: relative;
    width: 60vw;
    margin: 0 auto;
    aspect-ratio: 970/580;
    max-width: 800px;
  }
  header p {
    padding-top: 10px;
    text-align: center;
  }
  .logo-image {
    transform: translateX(30px);
  }
  .lineup > div {
    margin-top: 40px;
    text-align: center;
  }
  .lineup .headliner ul {
    font-size: 60px;
    font-weight: 600;
  }
  .lineup .contest ul {
    font-size: 40px;
    font-weight: 600;
  }
  .free-entry {
    text-align: center;
    font-size: 4rem;
    margin: 4rem 0;
    font-family: var(--moxa);
  }
  .awards {
    text-align: center;
  }
  .awards h2 {
    font-family: var(--moxa);
    font-size: 3rem;
  }
  .bands-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  .bands-container article {
    margin: 0;
    width: 45%;
    text-align: left;
    border-bottom: 1px solid white;
  }
  .bands-container article h3 {
    font-size: 1.5em;
    font-weight: bold;
  }
  .poll-container {
    pointer-events: initial;
  }
  .poll-container p > strong {
    font-size: 2.5em;
    border-bottom: 5px solid var(--green);
  }
  .poll-container .Buttons {
    background-color: var(--green);
    box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px var(--shadow-color), 4px 4px var(--shadow-color), 5px 5px 0 0 var(--shadow-color);
    border-radius: 0;
    border: 2px solid black;
    font-size: 30px;
    font-family: var(--font-bold);
    transition: all 0.1s ease;
  }
  .poll-container .Buttons:hover {
    background: white;
  }
  .poll-container .Buttons:active {
    box-shadow: 0px 0px 0 0 var(--shadow-color);
    transform: translate(4px, 4px);
  }
  .poll-container .wp-polls-ans .wp-polls-ul li {
    font-size: 30px;
    font-family: var(--font-bold);
    margin: 0 0 15px 0;
  }
  .poll-container .wp-polls-ans .wp-polls-ul li strong {
    font-weight: normal;
  }
  .poll-container .wp-polls-form .wp-polls-ul li {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 0 8px 0;
    font-size: 30px;
    font-family: var(--font-bold);
    line-height: 1.5;
    /* Custom radio circle */
  }
  .poll-container .wp-polls-form .wp-polls-ul li label {
    cursor: pointer;
    position: relative;
    top: 5px;
    padding-left: 50px;
    left: -35px;
  }
  .poll-container .wp-polls-form .wp-polls-ul li input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .poll-container .wp-polls-form .wp-polls-ul li label {
    position: relative;
  }
  .poll-container .wp-polls-form .wp-polls-ul li label::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 2px solid black;
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
    box-shadow: 1px 1px var(--shadow-color), 2px 2px var(--shadow-color), 3px 3px var(--shadow-color), 4px 4px 0 0 var(--shadow-color);
    z-index: 1;
  }
  .poll-container .wp-polls-form .wp-polls-ul li label::before {
    content: "";
    transition: all 0.1s ease;
    transform: translate(-50%, -50%) scale(0) rotate(0);
  }
  .poll-container .wp-polls-form .wp-polls-ul li input:checked + label::before {
    content: "";
    width: 22px;
    height: 22px;
    background: var(--green);
    border: 2px solid black;
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(180deg);
  }
  .poll-container .wp-polls-form .wp-polls-ul li input:focus + .radio-custom {
    outline: 2px solid #007bff;
    outline-offset: 2px;
  }
  footer {
    padding: 1.5rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    z-index: 3;
    position: relative;
    gap: 1rem;
  }
  footer .imprint-link {
    order: 1;
  }
  footer div {
    display: block;
  }
  footer img {
    margin-top: -10px;
    width: 200px;
    max-width: 50%;
  }
}
/*********************
DESKTOP
*********************/
/*********************
LARGE VIEWING SIZE
*********************/