/*
  Theme Name: Deloitte Photo Grant by Egloo
  Author: Egloo
  Author URI: https://egloo.it
  Version: 1.1.2
*/

/* -----------------------------------
==============================================================================
	# FONT
==============================================================================
----------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

/* -----------------------------------
==============================================================================
	# GENERAL
==============================================================================
----------------------------------- */

:root {
  --vh-100: 100vh;
  --full-height: var(--vh-100);
  --site-width: 1200px;

  --ff-normal: "Open Sans", sans-serif;

  --green: #85bb25;
  --light-grey: #d0d0ce;
  --red: #db4f48;
  font-size: 16px;
  line-height: 1.33;
  font-family: var(--ff-normal);

  --page-top-padding: 13.2rem;
}

::-moz-selection {
  color: white;
  background: var(--green);
}

::selection {
  color: white;
  background: var(--green);
}

body::-webkit-scrollbar {
  width: 0.7rem;
}

body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--grey);
}

body {
  -webkit-tap-highlight-color: transparent;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img,
svg,
video,
iframe {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

p:not(:last-child) {
  margin-bottom: 0.9rem;
}

input,
textarea,
select {
  font-family: var(--ff-normal);
  line-height: 1;
}

a,
select {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container {
  width: var(--site-width);
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Button Green */
.button-green a,
.button-green button {
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 300;
  max-width: 12.25rem;
  width: 100%;
  background-color: var(--green);
  color: white;
  padding: 1.2rem 1.08rem 1.2rem 1.275rem !important;
  height: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.2rem;
  gap: 1rem;
  max-width: none;
  width: fit-content;
  outline: 1px solid var(--green);
  outline-offset: -1px;
  transition: background-color 0.3s ease, color 0.3s ease, outline-color 0.3s ease;
}

.button-green a:hover,
.button-green button:hover {
  background-color: black;
  outline: 1px solid black;
}

.button-green a span::after,
.button-green button span::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  background-color: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, outline-color 0.3s ease;
}

section.possibilities .button-green a:hover,
section.possibilities .button-green button:hover {
  background-color: white;
  color: black;
  outline-color: black;
}

.button-green a:hover span::after,
.button-green button:hover span::after {
  color: var(--green);
}

/* Button White */
.button-white button {
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 300;
  max-width: 12.25rem;
  width: 100%;
  border: 1px solid black;
  background-color: white;
  color: black;
  padding: 0.5rem 0.7rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button-white button span::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button Black */
.button-black button {
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 300;
  max-width: 12.25rem;
  width: 100%;
  border: 1px solid white;
  background-color: black;
  color: white;
  padding: 0.5rem 0.7rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button-black button span::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  background-color: #c3d600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button white after black circle */
.button-white-after-black button {
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 300;
  max-width: 12.25rem;
  width: 100%;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  padding: 0.5rem 0.7rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.button-white-after-black button span::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Form Button Black */
.form-button-black button {
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 600;
  width: 100%;
  border: 1px solid white;
  background-color: black;
  color: white;
  padding: 0.5rem 0.7rem;
  border-radius: 25px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 3.5rem;
}

.form-button-black button span::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  background-color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-button-black button,
.button-black.filter button svg line,
.button-black.filter button svg path {
  transition: all 200ms ease-in-out;
}

.form-button-black.filter button:hover svg line,
.form-button-black.filter button:hover svg path,
.button-black.filter button:hover svg line,
.button-black.filter button:hover svg path {
  stroke: black;
}

.form-button-black button:hover,
.form-button-black a:hover {
  border: 1px solid black;
  background-color: white;
  color: black;
}

.text-green {
  color: var(--green);
  font-weight: 700;
  font-size: 0.625rem;
  margin-right: 18rem;
}

form#application-form.has-errors .form-button-black button,
form#application-form.is-loading .form-button-black button {
  pointer-events: none;
  opacity: 0.5;
}

/* Marquee Style*/
#marquee.bg-green {
  background-color: var(--green);
  color: black;
  text-transform: uppercase;
  font-size: 0.93rem;
  font-weight: 900;
  padding: 1rem 0;
}
#marquee.bg-white {
  display: flex;
  background-color: white;
  color: black;
  text-transform: uppercase;
  font-size: 0.93rem;
  font-weight: 900;
  padding: 1rem 0;
}

main.egloo .full-height {
  min-height: var(--full-height);
}

main.egloo section {
  position: relative;
}

main.egloo section.bg-black {
  background-color: black;
}

main.egloo section.bg-black * {
  color: white;
}

footer section#footer {
  background-color: black;
  color: white;
}

.otgs-development-site-front-end {
  display: none;
}

/* -----------------------------------
==============================================================================
	# HEADER
==============================================================================
----------------------------------- */

header.egloo {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.61rem;
  padding-bottom: 1.43rem;
}

header .container .logo {
  color: black;
  display: flex;
}

header .burger-menu {
  display: grid;
  align-items: center;
}

header .burger-menu button {
  all: unset;
  width: 1.4375rem;
  height: 1.218rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 9;
}

header .burger-menu button .linea {
  height: 1.5px;
  transition: transform 300ms ease-in-out;
}

header .burger-menu button .linea {
  /*background-color: var(--green);*/
}

header.open .mobile-button button .linea-2 {
  opacity: 0;
}

header.open .mobile-button button .linea-3 {
  transform: translateY(-9px) rotate(45deg);
}

header .container .account-languages {
  display: flex;
  gap: 2.5rem;
}

header.egloo > .menu {
  width: var(--site-width);
  background-color: black;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-top: 11.06rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 4.81rem;
  display: grid;
  gap: 1rem;
  color: white;
  grid-template-columns: repeat(12, 1fr);
}

header.egloo .menu ul li a {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 300;
}

header.egloo .menu .hover a {
  visibility: hidden;
}

header.egloo .menu .menu-list,
header.egloo .menu .menu-main-menu-container,
header.egloo .menu .menu-main-menu-eng-container {
  grid-column: span 8;
}

header.egloo .menu .social {
  grid-column: span 4;
}

header.egloo .menu .menu-main-menu-container li,
header.egloo .menu .menu-main-menu-eng-container li {
  display: flex;
}

header.egloo .menu .menu-main-menu-container a,
header.egloo .menu .menu-main-menu-eng-container a {
  visibility: visible;
  gap: 1.91rem;
}

header.egloo .menu .menu-main-menu-container a:hover,
header.egloo .menu .menu-main-menu-container li.current-menu-item a,
header.egloo .menu .menu-main-menu-eng-container li.current-menu-item a {
  visibility: visible;
  color: var(--green);
}

header.egloo .menu .menu-main-menu-container a:before,
header.egloo .menu .menu-main-menu-eng-container a:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68.14' height='46.021' viewBox='0 0 68.14 46.021'%3E%3Cg id='Raggruppa_67' data-name='Raggruppa 67' transform='translate(67.433 0.354) rotate(90)'%3E%3Cline id='Linea_1' data-name='Linea 1' y1='67.433' transform='translate(22.657 0)' fill='none' stroke='%2385bb25' stroke-width='1'/%3E%3Cpath id='Tracciato_18' data-name='Tracciato 18' d='M0 22.657 22.657 0 45.314 22.657' transform='translate(0 0)' fill='none' stroke='%2385bb25' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.832rem;
  height: 4.21rem;
  content: "";
  background-position: center;
  visibility: hidden;
}

header.egloo .menu .menu-main-menu-container a:hover:before,
header.egloo .menu .menu-main-menu-container li.current-menu-item a:before,
header.egloo .menu .menu-main-menu-eng-container a:hover:before,
header.egloo .menu .menu-main-menu-eng-container li.current-menu-item a:before {
  visibility: visible;
}

header.egloo .menu .social {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

header.egloo .menu .social ul {
  padding-left: 7rem;
}

header.egloo .menu .social ul li a {
  text-transform: uppercase;
  font-size: 1.12rem;
  font-weight: 900;
  gap: 0.4rem;
}

header.egloo .menu .social ul li a img {
  position: relative;
  left: 0;
  transition: left 300ms ease-in-out;
}

header.egloo .menu .social ul li a:hover img {
  position: relative;
  left: 0.5rem;
}

/* -----------------------------------
==============================================================================
	# FRONT PAGE
==============================================================================
----------------------------------- */
section#hero {
  padding-top: 6.5rem;
}
section#hero .container .title {
  display: grid;
  max-width: 50%;
}

section#hero .container .title h1 {
  font-size: 5.875rem;
  font-weight: 300;
  z-index: 9;
}

section#hero .container .jumbatron img {
  width: 100%;
}

section#hero .container .jumbatron .column-left {
  display: grid;
  grid-column: span 11;
}

section#hero .container .jumbatron .column-right {
  display: grid;
  grid-column: span 1;
  align-items: center;
}

section#hero .container .jumbatron .column-right .icon {
  max-width: 5.125rem;
  max-height: 7.625rem;
  position: relative;
  left: 2.5rem;
}

section#hero .container .jumbatron .column-right .icon a {
  width: 100%;
  height: 100%;
}

section#hero .container .jumbatron .row-bottom {
  grid-column: -2/1;
  text-align: right;
}

section#hero .container .jumbatron .row-bottom .text {
  font-weight: 700;
  font-size: 0.625rem;
  color: var(--green);
}

section#hero .container .jumbatron {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  top: 0 !important;
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 4.625rem;
}

/* SECTION TEXT */
section#text.edit-section .container .cont-title h2 {
  font-size: 5.87rem;
  padding-top: 8.87rem;
}

section#text.edit-section .container .cont-title h2 span:nth-child(1) {
  font-style: italic;
}
section#text.edit-section .container .cont-title h2 span.green {
  color: var(--green);
}

section#text.edit-section .container .cont-title .icon {
  position: relative;
  top: 3rem;
  right: -2.58rem;
  transition: top 300ms ease-in-out;
}

section#text.edit-section .container .cont-title .icon:hover {
  top: 4rem;
}

section#text.edit-section .container .paragraph .column-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

section#text.edit-section.organized .container .paragraph .column-right .icon .img {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

section#text.edit-section.organized .container .paragraph .column-right .icon .img img {
  max-height: 1.125rem;
  width: auto;
  object-fit: contain;
  object-position: right;
}

section#text .container {
  margin-bottom: 4.25rem;
}

section#text .container .cont-title {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

section#text .container .title {
  display: grid;
  grid-column: span 11;
  margin-bottom: 2.875rem;
}

section#text .container .title h2,
body.page-template-about section#text .container .title * {
  font-weight: 300;
  font-size: 2.75rem;
  line-height: 1.11;
}

body.page-template-newsletter section#contacts .columns .column.right .content {
  display: grid;
  row-gap: 2rem;
  max-width: 22rem;
}

body.page-template-newsletter #mc_embed_signup .mc-field-group {
  max-width: 23rem;
}

body.page-template-about section#text.organized .container .title {
  padding-top: 8.87rem;
}

body.page-template-about section#text.organized .container .title * {
  padding-top: 0;
  margin-bottom: 0;
}

body.page-template-about section#text.organized .container .title .green * {
  color: var(--green);
}

section#text .container .paragraph {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

body.page-template-about section#text .container .paragraph {
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.34;
}

body.page-template-about section#text .container .paragraph .column-left {
  padding-right: 0.75rem;
}

section#text .container .paragraph .column-left,
section#text .container .paragraph .column-center,
section#text .container .paragraph .column-right {
  display: grid;
  grid-column: span 4;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 300;
  align-content: start;
}

section#text .container .paragraph .column-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

section#text .container .paragraph .column-right.button-green {
  justify-content: end;
}

/* SECTION CONTEST */
section.align-right {
  padding-top: 5.562rem;
  background: black;
  padding-bottom: 8.25rem;
  color: white;
}

section.align-right .columns {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  margin-left: 5.125rem;
}

section.align-right .columns .column-left {
  display: grid;
  grid-column: span 5;
}

section.align-right .columns .column-left .title h3 {
  font-size: 5.875rem;
  position: relative;
  font-weight: 300;
  z-index: 9;
  margin-bottom: 3.375rem;
  line-height: 1.11;
}

section.align-right .columns .column-left .text p {
  font-size: 0.9375rem;
  padding-right: 10.25rem;
  line-height: 1.33;
  font-weight: 300;
}

section.align-right .columns .column-left .text {
  margin-bottom: 2.812rem;
}

section.align-right .columns .column-right {
  display: grid;
  grid-column: span 7;
  align-items: center;
}

section.align-right .columns .column-right .text-green {
  color: var(--green);
  font-weight: 700;
  font-size: 0.625rem;
  margin-right: 18rem;
  display: flex;
  justify-content: flex-end;
}

section.align-right .columns .column-right .img {
  position: relative;
  top: -2rem;
  z-index: 2;
  right: 6.5rem;
  height: auto;
  margin-right: 11.25rem;
}

section.align-right .columns .column-right .img img {
  width: 100%;
  height: 100%;
}

section.align-left .columns {
  padding-top: 6.187rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
  margin-left: 5.125rem;
  margin-bottom: 9.06rem;
}

section.align-left .columns .column-right {
  display: grid;
  gap: 1rem;
  grid-column: span 7;
}

section.align-left .columns .column-right .img {
  max-height: 52.125rem;
  width: 100%;
}

section.align-left .columns .column-right .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

section.align-left .columns .column-right .text-green p {
  color: var(--green);
  font-size: 0.625rem;
  font-weight: 700;
}

section.align-left .columns .column-left {
  grid-column: span 5;
  margin-left: 5.125rem;
}

section.align-left .columns .column-left .title {
  margin-left: 0.5rem;
}

section.align-left .columns .column-left .title h3 {
  font-size: 5.875rem;
  font-weight: 300;
  line-height: 0.89;
  position: relative;
  right: 9.2rem;
  padding-top: 5.375rem;
}

section.align-left .columns .column-left .text {
  margin-left: 0.5rem;
  padding-bottom: 3rem;
  padding-top: 4.375rem;
}

section.align-left .columns .column-left .text p {
  font-size: 0.937rem;
  line-height: 1.33;
}

section.align-left .columns .column-left .button {
  display: flex;
  margin-left: 0.5rem;
  height: 2rem;
  gap: 1rem;
}

/* SECTION AWARD */
section#award {
  position: relative;
  background: black;
  margin-bottom: 12.312rem;
  color: white;
  height: 48.06rem;
}

section#award .img {
  position: absolute;
  height: 48.06rem;
  width: 100%;
}

section#award .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section#award .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
section#award .container .cont-text {
  padding-bottom: 10.562rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

section#award .container .cont-text .title {
  grid-column: span 9;
}

section#award .container .cont-text .title * {
  font-size: 5.875rem;
  font-weight: 300;
  line-height: 0.89;
}

section#award .container .cont-text .text {
  grid-column: span 3;
  margin-top: 1rem;
}

section#award .container .cont-text .text * {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
}

section#award .container .mudec-logo {
  max-width: 8.75rem;
  max-height: 8rem;
}

section#award .container .mudec-logo a {
  width: 100%;
  height: 100%;
}

/* SECTION AWARD2 EDIT */
section#award2.edit {
  background-color: black;
}
section#award2.edit .container {
  color: white;
  padding-top: 10.25rem;
}

section#award2.edit > .container > .title * {
  font-size: 5.87rem;
  font-weight: 300;
  line-height: 0.89;
  padding-bottom: 3.9rem;
}

.divider-line-list {
  height: 1px;
  background-color: white;
  width: 100%;
  margin-bottom: 0.93rem;
}

section#award2.edit .container .awards {
  border-top: 1px solid white;
  padding-bottom: 4.37rem;
}

section#award2.edit .container .awards .award .accordion .title h2 {
  font-size: 2.25rem;
  font-weight: 300;
}

section#award2.edit .container .awards .award .accordion .title:hover,
section#award2.edit .container .awards .award .accordion.active .title {
  color: var(--green);
}

section#award2.edit .container .awards .award .accordion .title:hover svg line,
section#award2.edit .container .awards .award .accordion.active .title svg line {
  stroke: var(--green);
}

section#award2.edit .container .awards .award .accordion .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.93rem;
  cursor: pointer;
  padding-bottom: 0.93rem;
  border-bottom: 1px solid white;
}

section#award2.edit .container .awards .award .accordion.active .title svg #Linea_3 {
  display: none;
}

section#award2.edit .container .awards .award .accordion.active .content-wrap {
  max-height: 20000px;
}

section#award2.edit .container .awards .award .accordion .content-wrap {
  max-height: 0px;
  overflow: hidden;
  transition: all 500ms ease-in-out;
}

section#award2.edit .container .awards .award .accordion h2 svg {
  width: 2.42rem;
  height: 2.42rem;
}

section#award2.edit .container .awards .award .accordion .content {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  transition: all 500ms ease-in-out;
}

section#award2.edit .container .awards .award .accordion.active .content {
  padding-top: 3.12rem;
}

section#award2.edit .container .awards .award .accordion .content .column-left {
  padding-top: 5.61rem;
  grid-column: span 1;
}

section#award2.edit .container .awards .award .accordion .content .column-center {
  grid-column: span 11;
}

section#award2.edit .container .awards .award .accordion .content .column-center .deadline p {
  background-color: var(--green);
  display: inline-block;
  margin-bottom: 0.31rem;
  padding: 0.1rem 0.2rem 0.1rem 0.2rem;
  font-size: 0.93rem;
  font-weight: 600;
  text-transform: uppercase;
  color: black;
}

section#award2.edit .container .awards .award .accordion .content .column-center .title2 {
  padding-top: 2.5rem;
}

section#award2.edit .container .awards .award .accordion .content .column-center .title2 * {
  font-size: 2.25rem;
  font-weight: 300;
}

section#award2.edit .container .awards .award .accordion .content-wrap .content:last-child .column-center .award-money {
  padding-bottom: 2.62rem;
}

section#award2.edit .container .awards .award .accordion .content-wrap .content:not(:last-child) .column-center .award-money {
  padding-bottom: 1rem;
}

section#award2.edit .container .awards .award .accordion .content .column-center .award-money h3 {
  padding-top: 0.93rem;
  font-size: 1.25rem;
  font-weight: 500;
}

section#award2.edit .container .awards .award .accordion .content .column-center .cont-text {
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 1.5rem;
}

section#award2.edit .container .awards .award .accordion .content .column-center .cont-text .text {
  grid-column: span 8;
}

section#award2.edit .container .awards .award .accordion .content .column-center .cont-text .text p,
section#award2.edit .container .awards .award .accordion .content .column-center .cont-text .text-left p,
section#award2.edit .container .awards .award .accordion .content .column-center .cont-text .text-right p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.34;
}

section#award2.edit .container .awards .award .accordion .content .column-center .cont-text .text-left {
  grid-column: span 4;
}

section#award2.edit .container .awards .award .accordion .content .column-center .cont-text .text-right {
  grid-column: span 4;
}

section#award2.edit .container .awards .award .accordion .content .column-center .award-money .img {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

section#award2.edit .container .awards .award .accordion .content .column-center .award-money .img img {
  grid-column: span 11;
}

section#award2.edit .container .awards .award .accordion .content .column-center .award-money .img.verticale img {
  grid-column: span 7;
}

section#award2.edit .container .awards .award .accordion .content .column-center .award-money .text-green {
  grid-column: span 1;
  margin: 0;
}

section#award2.edit .container .awards .award .accordion .content .column-right {
  grid-column: span 1;
}

section#award2.edit .container .awards .award .accordion .content .column-right .text-green {
  margin: 0;
  grid-column: span 1;
}

section#award2.edit .container .awards .award .accordion .content .column-left .icon svg {
  width: 3.83rem;
  height: 4.21rem;
}

section#award2.edit .container .awards .award .accordion .content .column-center .button-black {
  padding-top: 2.1rem;
}

section#award2.edit .container .awards .award .accordion .content .column-center .button-black a {
  border: 1px solid white;
}

body.page-template-award section#marquee {
  width: 100%;
  height: 3.4375rem;
  display: flex;
  white-space: nowrap;
  gap: 0.4rem;
  overflow: hidden;
}

body.page-template-award section#marquee.marquee .box {
  display: grid;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: bold;
}

body.page-template-award section#marquee.marquee * {
  color: black;
  letter-spacing: 0.1em;
}

/* -----------------------------------
==============================================================================
	# OPEN CALL
==============================================================================
----------------------------------- */

section#open-call-page {
  padding-top: 5.75rem;
  background-color: black;
}

section#open-call-page div.button.button-black a {
  border: 1px solid white;
}

section#open-call-page div.button.button-black a:hover {
  color: black;
}

section#open-call-page .container .title {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

section#open-call-page .container .application-button {
  display: flex;
  justify-content: end;
  margin-bottom: 1rem;
}

section#open-call-page .container .application-button a {
  color: black;
}

section#open-call-page .container .application-button a:hover {
  color: White;
}

section#open-call-page .container .title h3 {
  position: relative;
  top: 4.5rem;
  color: var(--green);
  grid-column: span 7;
  font-size: 5.87rem;
  font-weight: 300;
  line-height: 0.89;
}

section#open-call-page .container .open-contest {
  display: flex;
  justify-content: flex-end;
}
section#open-call-page .container .open-contest p {
  font-size: 0.93rem;
  color: black;
  background-color: var(--green);
  letter-spacing: 0.1em;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
}

section#open-call-page .container .img {
  width: 100%;
  height: 100%;
}

section#open-call-page .container .img img {
  width: 100%;
  height: 100%;
}

section#open-call-page .container .cont-icon-text {
  position: relative;
  top: -5.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section#open-call-page .container .cont-icon-text .text-green {
  padding-top: 1.37rem;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 700;
}

section#open-call-page .container .cont-icon-text .icon {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 8rem;
  width: 100%;
  height: 12.68rem;
}

section#open-call-page .container .cont-icon-text .icon svg {
  width: 5.12rem;
  height: 7.62rem;
}

section#open-call-page .container .description {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 4rem;
}

section#open-call-page .container .description p {
  grid-column: span 10;
  font-size: 2.75rem;
  font-weight: 300;
  color: white;
  line-height: 1.11;
  padding-bottom: 1.5rem;
}

section#open-call-page .container .button {
  padding-bottom: 6.25rem;
}

/* SECTION CONNECTIONS */
section#connections {
  position: relative;
  height: 45.62rem;
}
section#connections .container {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translatex(-50%);
}

section#connections .img {
  background-color: black;
  max-height: 45.62rem;
  height: 100%;
}

section#connections .img img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
section#connections .container .title {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

section#connections .container .title h3 {
  padding-top: 4.18rem;
  padding-bottom: 1.43rem;
  font-size: 9rem;
  color: white;
  font-weight: 300;
  line-height: 0.83;
  grid-column: span 8;
}

section#connections .container .button.button-black button {
  background-color: transparent !important;
}

section#connections .container .text-green {
  padding-top: 16.37rem;
  display: flex;
  justify-content: flex-end;
}
section#connections .container .text-green p {
  padding-top: 1.37rem;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 700;
}

/* SECTION CARDS BACKGROUND BLACK */
section#cards-bg-black {
  background-color: black;
  padding-top: 6.18rem;
}

section#cards-bg-black .container .cards h3 {
  font-size: 3.37rem;
  font-weight: 300;
  line-height: 1.05;
  padding-top: 2.28rem;
  padding-bottom: 1.5rem;
  color: white;
}
section#cards-bg-black .container .cards p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.34rem;
  color: white;
}

section#cards-bg-black .container .cards {
  display: grid;
  gap: 5.06rem;
  grid-template-columns: repeat(9, 1fr);
  padding-left: 5.12rem;
  padding-right: 5.12rem;
}

section#cards-bg-black .container .cards .card-left,
section#cards-bg-black .container .cards .card-right {
  grid-column: span 3;
}
section#cards-bg-black .container .cards .card-right .title,
section#cards-bg-black .container .cards .card-right .text {
  padding-left: 3.6rem;
}

section#cards-bg-black .container .cards .card-left .img {
  background-color: black;
  border-top-left-radius: 4.37rem;
  border-bottom-right-radius: 6rem;
  max-width: 17.37rem;
  width: 100%;
  max-height: 28.93rem;
  height: 100%;
  overflow: hidden;
}
section#cards-bg-black .container .cards .card-right .img {
  background-color: black;
  border-top-right-radius: 4.37rem;
  border-bottom-left-radius: 4.37rem;
  max-width: 17.37rem;
  width: 100%;
  max-height: 28.93rem;
  height: 100%;
  overflow: hidden;
}

section#cards-bg-black .container .cards .card-left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
section#cards-bg-black .container .cards .card-right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opacity {
  opacity: 1 !important;
}

/* SECTION SLIDER BG BLACK */
section#slider-bg-black {
  background-color: black;
  padding: 1rem 0;
}

section#slider-bg-black .container .cont-under-line {
  display: flex;
}

section#slider-bg-black .container .slide a {
  color: var(--green);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 2.03rem;
  font-size: 0.93rem;
  font-weight: 900;
}
section#slider-bg-black .container .slide span {
  width: 3rem;
}

section#slider-bg-black .container .slider-wrapper {
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.03rem;
}

section#slider-bg-black .container .slider-wrapper .name,
section#slider-bg-black .container .name {
  width: 27%;
}
section#slider-bg-black .container .slider-wrapper .name p,
section#slider-bg-black .container .name p {
  font-size: 3.37rem;
  font-weight: 300;
  color: white;
}

section#slider-bg-black .container .slider-wrapper .date,
section#slider-bg-black .container .date {
  width: 48.5%;
}

section#slider-bg-black .container .slider-wrapper .date p,
section#slider-bg-black .container .date p {
  font-size: 5.87rem;
  font-weight: 300;
  color: white;
}
section#slider-bg-black .container .slider-wrapper .next-date p,
section#slider-bg-black .container .next-date p {
  font-size: 3.87rem;
  font-weight: 100;
  color: white;
}

section#slider-bg-black .container .line {
  display: flex;
  align-items: center;
  padding-bottom: 1.62rem;
}

section#slider-bg-black .container .line .line1 {
  background-color: white;
  max-width: 20rem;
  width: 100%;
  height: 1px;
}

section#slider-bg-black .container .line .line2 {
  background-color: white;
  max-width: 34rem;
  width: 100%;
  height: 1px;
}

section#slider-bg-black .container .line .line3 {
  background-color: white;
  max-width: 15.75rem;
  width: 100%;
  height: 1px;
}

section#slider-bg-black .container .line span:after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}

section#slider-bg-black .container .cont-under-line .date p,
section#slider-bg-black .container .cont-under-line .next-date p {
  padding-left: 0.7rem;
  font-size: 1.12rem;
  font-weight: 300;
}

/* SECTION JOIN */
section#join {
  padding-top: 3.68rem;
  padding-bottom: 5.06rem;
  background-color: var(--green);
}

section#join .container .title h2 {
  font-size: 9rem;
  font-weight: 300;
  line-height: 0.98;
}
section#join .container .title h2 span {
  font-style: italic;
}

section#join .container .button {
  display: flex;
  justify-content: flex-end;
}

/* -----------------------------------
=====================================
=========================================
	# OPEN CALL THE WINNER
==============================================================================
----------------------------------- */
section#hero-winner {
  max-height: 53.81rem;
  position: relative;
}
section#hero-winner .img {
  position: absolute;
  background-color: black;
  height: 53.81rem;
  width: 100%;
}

section#hero-winner .img img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
}

section#hero-winner .container {
  display: flex;
  height: 53.81rem;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 7.37rem;
}

section#hero-winner .container .title {
  padding-top: 10.25rem;
}

section#hero-winner .container .title .above-title h3 {
  font-size: 2.75rem;
  font-style: italic;
  font-weight: 300;
  color: white;
}

section#hero-winner .container .title h1 {
  font-size: 5.87rem;
  font-weight: 300;
  line-height: 0.95;
  color: white;
}
section#hero-winner .container .contain {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

section#hero-winner .container .contain .text-green p {
  color: var(--green);
  font-weight: 700;
  font-size: 0.625rem;
  padding-bottom: 1rem;
}

/* SECTION PROJECT WINNER */
section#project-winner {
  padding-top: 4.06rem;
  background-color: black;
  color: white;
  padding-bottom: 3.81rem;
}

section#project-winner .container .title h3 {
  font-size: 5.87rem;
  font-weight: 300;
  line-height: 0.95;
}
section#project-winner .container .title h3 span {
  font-style: italic;
}
section#project-winner .container .description {
  /* padding-top: 4.06rem; */
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 7.6rem;
}
section#project-winner .container .description .title {
  grid-column: span 4;
}

section#project-winner .container .description .title h4 {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.13;
  font-style: italic;
}

section#project-winner .container .description .title h4 span {
  font-style: italic;
}
section#project-winner .container .description .text {
  display: flex;
  grid-column: span 8;
  flex-direction: column;
  justify-content: flex-end;
  padding-right: 17.3rem;
}
section#project-winner .container .description .text p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.34;
}
section#project-winner .container .description .text p:nth-child(2) {
  font-weight: 600;
}

/* SECTION BIOGRAPHY WINNER */
section#biography-winner {
  color: white;
  background-color: black;
  padding-bottom: 6.75rem;
}
section#biography-winner .bg-line {
  height: 1px;
  width: calc(var(--site-width) - 2.5rem);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: white;
}

section#biography-winner .container {
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
section#biography-winner .container .biography-info {
  grid-column: span 7;
}

section#biography-winner .container .biography-info .title h2 {
  font-size: 6.12rem;
  font-weight: 300;
  line-height: 0.91;
  padding-bottom: 4.5rem;
}

section#biography-winner .container .biography-info .contain {
  display: flex;
}
section#biography-winner .container .biography-info .contain .icon {
  max-width: 6.62rem;
  width: 100%;
}
section#biography-winner .container .biography-info .contain .description {
  padding-left: 3.56rem;
  padding-right: 1.5rem;
}
section#biography-winner .container .biography-info .contain .description .name {
  padding-top: 2rem;
  padding-bottom: 3.81rem;
  font-size: 0.93rem;
  font-weight: 500;
}

section#biography-winner .container .biography-info .contain .description .name h4 {
}

section#biography-winner .container .biography-info .contain .description .text {
  font-size: 0.93rem;
  line-height: 1.34;
  font-weight: 300;
  padding-bottom: 1rem;
}

section#biography-winner .container .biography-info .contain .description .web-site h5 {
  text-transform: uppercase;
}

section#biography-winner .container .biography-info .contain .description .web-site a {
  color: var(--green);
  text-decoration: underline;
}

section#biography-winner .container .img-bio {
  grid-column: span 5;
}

section#biography-winner .container .img-bio {
  grid-column: span 5;
  border-top-left-radius: 4.37rem;
  overflow: hidden;
  margin-top: 5rem;
  aspect-ratio: 474/411;
}

@media only screen and (max-width: 768px) {
  section#biography-winner .container .img-bio {
    margin-top: 0rem;
  }
}

section#biography-winner .container .img-bio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.postid-4450 section#biography-winner .container .img-bio img {
  object-position: top;
}

/* SECTION SLIDER WINNER */
section#slider-winner {
  background-color: black;
  color: var(--green);
}

section#slider-winner .container .slide a {
  color: var(--green);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 2.03rem;
  font-size: 0.93rem;
  font-weight: 900;
}
section#slider-winner .container .slide span {
  width: 3rem;
}

section#slider-winner .container .slider {
  padding-bottom: 8.5rem;
}

section#slider-winner .container .slider .img {
  height: 28.37rem;
}

section#slider-winner .container .slider .img img {
  height: 100%;
}

/* -----------------------------------
=====================================
=========================================
	# SECTION DIRECT NOMINATIONS
==============================================================================
----------------------------------- */

section#direct-nominations .container {
  padding-top: 6.81rem;
}

section#direct-nominations .container .title h1 {
  font-size: 5.87rem;
  font-weight: 300;
  line-height: 0.89;
}

section#direct-nominations .container .title h1 span {
  font-style: italic;
}

section#direct-nominations .container .text p:nth-child(1) {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.11;
  padding-top: 4rem;
}

section#direct-nominations .container .text p:nth-child(2) {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.34;
  padding-top: 1.68rem;
  padding-bottom: 0.62rem;
}

/* SECTION OPEN CONTEST */
section#open-contest {
  padding-bottom: 2.81rem;
}

section#open-contest .container .open-contest {
  display: flex;
  justify-content: flex-end;
  margin-right: 6.1rem;
}

section#open-contest .container .open-contest p {
  font-size: 0.93rem;
  color: black;
  background-color: var(--green);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
}

section#open-contest .container .contain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

section#open-contest .container .contain .icon {
  position: absolute;
  background-color: white;
  width: 8rem;
  height: 11.5rem;
  padding-top: 1.84rem;
  padding-right: 1.5rem;
  padding-bottom: 2.03rem;
  padding-left: 1.37rem;
}
section#open-contest .container .contain .icon svg {
  width: 100%;
  height: 100%;
}

section#open-contest .container .contain .img {
  max-width: 72.5rem;
  width: 100%;
  grid-column: span 11;
}

section#open-contest .container .contain .img img {
  width: 100%;
  object-fit: contain;
}
section#open-contest .container .contain .text-green {
  grid-column: span 1;
  display: flex;
  align-items: flex-end;
}

section#open-contest .container .contain .text-green p {
  color: var(--green);
  font-weight: 700;
  font-size: 0.625rem;
  padding-bottom: 1rem;
}

body.single-contest section#open-contest .container .contain .text-green p {
  padding-bottom: 0.3rem;
}

/* SECTION MARKERS */
body.page-template-about section#markers {
  padding-bottom: 11.5rem;
}

body.page-template-about section#markers .container .cards {
  row-gap: 3.2rem;
  grid-template-columns: repeat(5, 1fr);
}

body.page-template-about section#markers .container .cards .card .read-more p {
  padding-bottom: 0rem;
  margin-bottom: 0;
}

body.page-template-about section#markers .container .cards .card .description p {
  font-size: 1.125rem;
  line-height: 1.22;
}

body.page-template-about section#markers .container .cards .card .name h3 {
  padding-bottom: 0.7rem;
  padding-top: 2.55rem;
  font-weight: 300;
}

section#markers.bg-white {
  background-color: white;
}

section#markers {
  background-color: var(--light-grey);
}
section#markers .container .title h2 {
  font-size: 3.37rem;
  font-weight: 300;
  line-height: 1.52;
  padding-top: 3.625rem;
  padding-bottom: 5.25rem;
}

section#markers .container .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

section#markers .container .cards .card .img {
  border-top-right-radius: 4.37rem;
  overflow: hidden;
}

section#markers .container .cards .card .name h3 {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.11;
  padding-top: 2.37rem;
  padding-bottom: 1.31rem;
}

section#markers .container .cards .card .description p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.11;
}

section#markers .container .cards .card .read-more {
  padding-top: 2.43rem;
}

section#markers .container .cards .card .read-more p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.93rem;
  padding-bottom: 4.25rem;
}

section#markers .container .cards .card .read-more .cont-hidden {
  padding-bottom: 2.18rem;
  display: none;
  position: relative;
  top: -1.88rem;
}

section#markers .container .cards .card .read-more .cont-hidden p:nth-child(1) {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.34;
}

section#markers .container .cards .card .read-more .cont-hidden p:nth-child(2) {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 0.98;
  color: #707070;
}

section#markers .container .dividing-line {
  background-color: black;
  height: 1px;
  width: 100%;
  margin-bottom: 4.25rem;
}

/* SECTION READ MORE */
section .read-more {
  display: grid;
}

section .read-more .accordion {
  display: inline-block;
  cursor: pointer;
}

section .read-more .accordion .close,
section .read-more.active .accordion .open,
section#markers .container .cards .card .read-more p.close,
section#markers .container .cards .card .read-more.active p.open {
  display: none;
}

section .read-more.active .accordion .close,
section#markers .container .cards .card .read-more.active p.close {
  display: flex;
}

section .read-more .content {
  max-height: 0px;
  overflow: hidden;
  transition: all 300ms ease-in-out;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.34;
  padding-top: 0;
}

body.page-template-about section#markers .container .cards .card .read-more .content p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.34;
}

section .read-more.active .content,
body.page-template-about section#markers .container .cards .card .read-more.active .content {
  max-height: 5000px;
  padding-top: 2.375rem;
}

/* SECTION CONNECTION HERO */
section#connection-hero {
  position: relative;
  height: 43.62rem;
}

section#connection-hero .img {
  position: absolute;
  width: 100%;
  height: 43.62rem;
  background-color: black;
}

section#connection-hero .img img {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

section#connection-hero .container .title h2 {
  font-size: 9rem;
  font-weight: 300;
  line-height: 0.98;
  padding-top: 3.9rem;
  padding-bottom: 3rem;
  color: white;
}

/* SECTION CARDS BACKGROUND WHITE */
section#cards-bg-white {
  background-color: white;
  padding-top: 6.18rem;
}

section#cards-bg-white .container .cards h3 {
  font-size: 3.37rem;
  font-weight: 300;
  line-height: 1.05;
  padding-top: 2.28rem;
  padding-bottom: 1.5rem;
  color: black;
}
section#cards-bg-white .container .cards p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.34rem;
  color: black;
}

section#cards-bg-white .container .cards {
  display: grid;
  gap: 5.06rem;
  grid-template-columns: repeat(9, 1fr);
  padding-left: 5.12rem;
  padding-right: 5.12rem;
}

section#cards-bg-white .container .cards .card-left,
section#cards-bg-white .container .cards .card-right {
  grid-column: span 3;
}
section#cards-bg-white .container .cards .card-right .title,
section#cards-bg-white .container .cards .card-right .text {
  padding-left: 3.6rem;
}

section#cards-bg-white .container .cards .card-left .img {
  background-color: black;
  border-top-left-radius: 4.37rem;
  border-bottom-right-radius: 6rem;
  max-width: 17.37rem;
  width: 100%;
  max-height: 28.93rem;
  height: 100%;
  overflow: hidden;
}
section#cards-bg-white .container .cards .card-right .img {
  background-color: black;
  border-top-right-radius: 4.37rem;
  border-bottom-left-radius: 4.37rem;
  max-width: 17.37rem;
  width: 100%;
  max-height: 28.93rem;
  height: 100%;
  overflow: hidden;
}

section#cards-bg-white .container .cards .card-left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
section#cards-bg-white .container .cards .card-right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION SLIDER BG WHITE */
section#slider-bg-white {
  background-color: white;
  padding: 1rem 0;
}

section#slider-bg-white .container .cont-under-line {
  display: flex;
}

section#slider-bg-white .container .slide a {
  color: var(--green);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 2.03rem;
  font-size: 0.93rem;
  font-weight: 900;
}
section#slider-bg-white .container .slide span {
  width: 3rem;
}

section#slider-bg-white .container .slider-wrapper {
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.03rem;
}

section#slider-bg-white .container .slider-wrapper .name,
section#slider-bg-white .container .name {
  width: 27%;
}
section#slider-bg-white .container .slider-wrapper .name p,
section#slider-bg-white .container .name p {
  font-size: 3.37rem;
  font-weight: 300;
  color: black;
}

section#slider-bg-white .container .slider-wrapper .date,
section#slider-bg-white .container .date {
  width: 48.5%;
}

section#slider-bg-white .container .slider-wrapper .date p,
section#slider-bg-white .container .date p {
  font-size: 5.87rem;
  font-weight: 300;
  color: black;
  margin: 0;
}
section#slider-bg-white .container .slider-wrapper .next-date p,
section#slider-bg-white .container .next-date p {
  font-size: 3.87rem;
  font-weight: 100;
  color: black;
}

section#slider-bg-white .container .line {
  display: flex;
  align-items: center;
  padding-bottom: 1.62rem;
}

section#slider-bg-white .container .line .line1 {
  background-color: black;
  max-width: 20rem;
  width: 100%;
  height: 1px;
}

section#slider-bg-white .container .line .line2 {
  background-color: black;
  max-width: 34rem;
  width: 100%;
  height: 1px;
}

section#slider-bg-white .container .line .line3 {
  background-color: black;
  max-width: 15.75rem;
  width: 100%;
  height: 1px;
}

section#slider-bg-white .container .line span:after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
}

section#slider-bg-white .container .cont-under-line .date p,
section#slider-bg-white .container .cont-under-line .next-date p {
  padding-left: 0.7rem;
  font-size: 1.12rem;
  font-weight: 300;
}

/* SECTION MUDEC JUMBATRON */
section#mudec-jumbatron {
  position: relative;
  margin-top: 7.06rem;
}

section#mudec-jumbatron .img {
  position: absolute;
  max-height: 48rem;
}
section#mudec-jumbatron .img img {
  width: 100%;
  height: 100%;
}

section#mudec-jumbatron .container {
  height: 48rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

section#mudec-jumbatron .container .title {
  padding-top: 6.8rem;
}

section#mudec-jumbatron .container .title h3,
section#mudec-jumbatron .container .title h4 {
  font-size: 5.87rem;
  font-weight: 300;
  line-height: 0.98;
}

section#mudec-jumbatron .container .title h3 span {
  font-style: italic;
}

section#mudec-jumbatron .container .text {
  padding-bottom: 6.18rem;
}

section#mudec-jumbatron .container .text p {
  font-size: 6.12rem;
  font-weight: 300;
  line-height: 0.98;
}

/* -----------------------------------
=====================================
=========================================
	# SECTION DIRECT NOMINATIONS THE WINNER
==============================================================================
----------------------------------- */
section#columns {
  background-color: black;
  padding-bottom: 1rem;
}

section#columns .container .columns {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

section#columns .container .columns .img {
  height: 46.12rem;
  max-width: 80%;
}
section#columns .container .columns .img img {
  height: 100%;
  width: 100%;
}

section#columns .container .columns .column-left {
  grid-column: span 6;
  position: relative;
}
section#columns .container .columns .text-green {
  position: absolute;
  margin-right: 0;
  bottom: 1.2rem;
  left: 1.75rem;
}

section#columns .container .columns .column-left .img {
  margin-left: 20%;
}

section#columns .container .columns .column-right {
  grid-column: span 6;
  position: relative;
}

section#columns .container .columns .column-right .img {
  margin-right: 20%;
}

/* SECTION FULL WIDTH */
section#full-width {
  position: relative;
}

section#full-width .img {
  height: 47.93rem;
}

body.page-template-about section#full-width .img {
  display: grid;
  height: auto;
}

body.page-template-about section#full-width .img img {
  max-height: 47.93rem;
  object-fit: cover;
}

section#full-width .img img {
  width: 100%;
  height: 100%;
}

section#full-width .text-green {
  text-align: center;
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translate(-50%, 0);
}

/* SECTION IMG CENTER */
section#img-center {
  background-color: black;
}

section#img-center .container {
  position: relative;
  height: 48.06rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section#img-center .container .img {
  max-height: none;
  max-width: 66.666%;
}

section#img-center .container .img img {
  width: 100%;
  height: 100%;
}

section#img-center .container .text-green {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  width: 100%;
  position: relative;
  padding-top: 1.37rem;
  max-width: 66.666%;
}

/* -----------------------------------
=====================================
=========================================
	# ABOUT
==============================================================================
----------------------------------- */

body.page-template-about section#text.context {
  padding-top: 3.56rem;
}

body.page-template-about section#text .container {
  margin-bottom: 5.5rem;
}

section#about .container {
  padding-top: 8.81rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

section#about .container .title {
  padding-bottom: 2rem;
  flex: 1;
}

section#about .container .title * {
  font-size: 5.87rem;
  font-weight: 300;
  line-height: 0.99;
}

section#about .container .title .green * {
  color: var(--green);
}

section#about .container .info-address {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  padding-bottom: 4.25rem;
}

section#about .container .info-address .info-call {
  grid-column: span 5;
  padding-right: 13.5rem;
}

section#about .container .info-address .address {
  grid-column: span 5;
  padding-right: 12.5rem;
}

section#about .container .info-address .info-call p:nth-child(1),
section#about .container .info-address .address p:nth-child(1) {
  font-weight: 600;
  font-size: 0.81rem;
  text-transform: uppercase;
}

section#about .container .info-address .info-call p:not(:nth-child(1)),
section#about .container .info-address .address p:not(:nth-child(1)) {
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
}

section#about .container .info-address .icon {
  grid-column: span 2;
  position: relative;
}

section#about .container .info-address .icon a {
  position: relative;
  top: 0;
  transition: top 300ms ease-in-out;
  display: flex;
  justify-content: flex-end;
  right: -2.58rem;
  left: auto;
}

section#about .container .info-address .icon a:hover {
  top: 1rem;
}

/* SECTION DESCRIPTION */
section#description .container .description-top p {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.11;
  padding-top: 3.56rem;
}

section#description .container .description-bottom {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding-top: 2.81rem;
  padding-bottom: 5.5rem;
}

section#description .container .description-bottom p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.34;
}

section#description .container .description-bottom .column-left {
  grid-column: span 4;
  padding-right: 2rem;
}

section#description .container .description-bottom .column-center {
  grid-column: span 4;
  padding-right: 2rem;
}
section#description .container .description-bottom .column-right {
  grid-column: span 4;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* SECTION SLIDER BG BLACK EDIT */
section#slider-bg-black {
  overflow: hidden;
}

section#slider-bg-black.edit .container .cont-icon-text {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4.5rem;
}

section#slider-bg-black.edit .container .cont-icon-text p {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.93rem;
  font-weight: 300;
}

section#slider-bg-black.edit .container .cont-icon-text .icon-scorri {
  color: var(--green);
  display: flex;
  gap: 1.81rem;
  align-items: center;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
}

section#slider-bg-black.edit .container .cont-icon-text .icon-scorri svg {
  position: relative;
  transition: all 300ms ease-in-out;
  left: 0;
}

section#slider-bg-black.edit .container .cont-icon-text .icon-scorri:hover svg {
  position: relative;
  left: 0.5rem;
}

section#slider-bg-black.edit .container .slider {
  overflow: visible;
}

section#slider-bg-black.edit .container .slider .swiper-slide {
  max-width: 23.5rem;
  width: auto !important;
  filter: unset;
  transition: filter 300ms ease-in-out;
}

section#slider-bg-black.edit .container .slider .swiper-slide.swiper-slide-next + .swiper-slide {
  filter: blur(4px);
}

section#slider-bg-black.edit .container .slider .swiper-slide .title {
  height: 19rem;
  display: flex;
  position: relative;
}

section#slider-bg-black.edit .container .slider .swiper-slide .title .count {
  position: absolute;
  left: -4.5rem;
  display: flex;
  font-size: 1.25rem;
  font-weight: 300;
  justify-content: center;
  align-items: center;
  margin-top: 5.25rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--green);
  border-radius: 50%;
}

section#slider-bg-black.edit .container .slider .swiper-slide .title h3 {
  padding-top: 5.25rem;
  font-weight: 300;
  font-size: 3.37rem;
  color: white;
  line-height: 1;
}

section#slider-bg-black.edit .container .slider .swiper-slide .description {
  min-width: 23.5rem;
}

section#slider-bg-black.edit .container .slider .swiper-slide .description {
  padding-bottom: 7.87rem;
  font-size: 0.9375rem;
  font-weight: 300;
  color: white;
  line-height: 1.34;
}

/* -----------------------------------
=====================================
=========================================
	# APPLICATION VALID FORM
==============================================================================
----------------------------------- */
section#valid-form .container .cont {
  display: flex;
  justify-content: space-between;
  padding-top: 9.62rem;
}

section#valid-form .container .title .first-title *,
section#valid-form .container .title .second-title * {
  font-size: 5.87rem;
  font-weight: 300;
  line-height: 1.1;
}

section#valid-form .container .title .second-title * {
  color: var(--green);
}

section#valid-form .container .button-black svg line,
section#valid-form .container .button-black svg path {
  transition: all 200ms ease-in-out;
}

section#valid-form .container .button-black:hover svg line,
section#valid-form .container .button-black:hover svg path {
  stroke: black;
}

section#valid-form .container .button-black a,
section#valid-form .container .button-white a {
  max-width: 100%;
  white-space: nowrap;
}

section#valid-form .container .button-black a {
  padding-right: 1.1rem;
}

section#valid-form .container .button-black a,
section#valid-form .container .button-white a {
  gap: 0.5rem;
}

section#valid-form .container .button-black a svg {
  min-width: 1.2rem;
  width: 1.2rem;
}

section#valid-form .container .img {
  display: flex;
  justify-content: flex-start;
  width: 15.5rem;
  align-items: flex-start;
}
section#valid-form .container .img img svg {
  margin: 0;
}

section#valid-form .container .columns {
  padding-top: 3.93rem;
  padding-bottom: 4.68rem;
  display: flex;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  align-items: center;
}

section#valid-form .container .columns .column-left {
  grid-column: span 2;
  align-items: center;
}

section#valid-form .container .columns .column-center {
  grid-column: span 2;
}
section#valid-form .container .columns .column-right {
  grid-column: span 8;
  font-size: 0.93rem;
  font-weight: 300;
  padding-left: 6.3rem;
}

/* -----------------------------------
==============================================================================
	# SINGLE APPLICATION FORM
==============================================================================
----------------------------------- */

/*

section#app-form > .container {
  padding-top: 9.62rem;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 1rem;
}

section#app-form > .container .title {
  grid-column: span 18;
}

section#app-form > .container .title h1 {
  font-size: 5.87rem;
  font-weight: 300;
}
section#app-form > .container .dead-line {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  padding-bottom: 2.5rem;
}

section#app-form > .container .dead-line p {
  text-align: end;
}

section#app-form > .container .dead-line p span {
  font-size: 0.93rem;
  font-weight: 700;
  background-color: var(--green);
  text-transform: uppercase;
  padding: 0rem 0.3rem;
  letter-spacing: 0.015em;
  line-height: 1.5rem;
}

section#app-form > .container .dead-line {
  grid-column: span 6;
}

section#app-form .single-field-group .container {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 1rem;
  align-items: flex-end;
}
section#app-form #application-form .title h2 {
  font-size: 2.75rem;
  font-weight: 300;
}
section#app-form #application-form .single-field-group .container .title {
  grid-column: span 24;
}

section#app-form .single-field-group .single-field-wrap.span-12 {
  grid-column: span 12;
}

section#app-form .single-field-group .single-field-wrap.span-3 {
  grid-column: span 3;
}

section#app-form .single-field-group .single-field-wrap.span-5 {
  grid-column: span 5;
}

section#app-form .single-field-group .single-field-wrap.span-6 {
  grid-column: span 6;
}

section#app-form .single-field-group .single-field-wrap.span-7 {
  grid-column: span 7;
}

section#app-form .single-field-group .single-field-wrap.span-10 {
  grid-column: span 10;
}

section#app-form .single-field-group .single-field-wrap.span-14 {
  grid-column: span 14;
}

section#app-form .single-field-group .single-field-wrap.span-23 {
  grid-column: span 23;
}

section#app-form .single-field-group .single-field-wrap.span-24 {
  grid-column: span 24;
}

section#app-form .single-field-group .single-field-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

section#app-form .single-field-group .single-field-wrap.text,
section#app-form .single-field-group .single-field-wrap.country,
section#app-form .single-field-group .single-field-wrap.text_editor,
section#app-form .single-field-group .single-field-wrap.file {
  font-size: 1.37rem;
  font-weight: 300;
  color: grey;
}

section#app-form .single-field-group .single-field-wrap.select,
section#app-form .single-field-group .single-field-wrap.date {
  font-size: 1.37rem;
  font-weight: 300;
}

section#app-form .single-field-group .single-field-wrap.email {
  font-size: 1.37rem;
  font-weight: 300;
  color: grey;
}

section#app-form .single-field-group .single-field-wrap.url {
  font-size: 1.37rem;
  font-weight: 300;
}

section#app-form .single-field-group .single-field-wrap label {
  padding-bottom: 1.25rem;
  padding-left: 1rem;
}

section#app-form .single-field-group .single-field-wrap.select {
  display: flex;
  justify-content: space-between;
  justify-content: center;
}

section#app-form .single-field-group .single-field-wrap select {
  border: none;
}

section#app-form .single-field-group .single-field-wrap select,
section#app-form .single-field-group .single-field-wrap input {
  height: 3.75rem;
  border-radius: 1.87rem;
  padding: 0 2.37rem;
  border: 1px solid black;
}

section#app-form .single-field-group .single-field-wrap input {
  padding: 0 2.37rem;
}

section#app-form .single-field-group .container:nth-child(2) .single-field-group:nth-child(2) input {
  background-color: red;
}

section#app-form #application-form .form-button-black {
  padding-top: 5.62rem;
  padding-bottom: 7.37rem;
  display: flex;
  justify-content: center;
  width: 18.81rem;
  margin: 0 auto;
}

section#app-form .single-field-group .single-field-wrap select#gender {
  background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #fff;
  -webkit-appearance: none;
  background-position-x: 92%;
}

section#app-form .single-field-group .single-field-wrap select {
  background: url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #fff;
  -webkit-appearance: none;
  background-position-x: 96%;
}

section#app-form .single-field-group:nth-child(3) input {
  background-color: #d0d0ce;
}

section#app-form .single-field-group:nth-child(1) {
  margin-bottom: 4.5rem;
}

section#app-form #application-form .single-field-group:nth-child(1) .container .title h2 {
  padding-top: 3.68rem;
  padding-bottom: 2.43rem;
}

section#app-form #application-form .single-field-group:nth-child(2) .container .title h2 {
  padding-top: 3.43rem;
  padding-bottom: 3.31rem;
}

section#app-form #application-form .single-field-group:nth-child(3) .container .title h2 {
  padding-bottom: 3.06rem;
}

section#app-form #application-form .single-field-group:nth-child(4) .container .title h2 {
  padding-top: 3.68rem;
  padding-bottom: 3.75rem;
}

section#app-form .single-field-group:nth-child(2) {
  padding-bottom: 5.18rem;
}

section#app-form .single-field-group:nth-child(3) {
  padding-bottom: 4.81rem;
}

*/

/* -----------------------------------
==============================================================================
	# FOOTER
==============================================================================
----------------------------------- */

footer section#footer .container .footer-intro {
  padding-top: 4.687rem;
  padding-bottom: 1.1rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

footer section#footer .container ul li {
  line-height: 1.6;
}

footer section#footer .container .footer-intro .column-left {
  display: grid;
  grid-column: span 8;
  align-items: center;
}

footer section#footer .container .footer-intro .column-left .title h3 {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  padding-bottom: 2.5rem;
}

footer section#footer .container .footer-intro .column-left .text {
  font-size: 0.75rem;
  font-weight: 300;
  max-width: 71%;
  line-height: 1.6;
}

footer section#footer .container .footer-intro .column-right {
  display: grid;
  grid-column: span 4;
}

footer section#footer .container .footer-intro .column-right .logo {
  padding-top: 1rem;
}

footer section#footer .container .footer-intro .column-right .logo img {
  max-width: 15rem;
  margin-left: auto;
  margin-top: 0.4rem;
}

footer section#footer .container .footer-content {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}

@media only screen and (max-width: 768px) {
  footer section#footer .container .footer-content {
    display: flex;
    flex-direction: column;
  }
}

footer section#footer .container .footer-content .data,
footer section#footer .container .footer-content .contacts,
footer section#footer .container .footer-content .social,
footer section#footer .container .footer-content .newsletter {
  display: grid;
  grid-column: span 3;
}

footer section#footer .container .footer-content .data img {
  max-width: 11rem;
  mix-blend-mode: hard-light;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
}

footer section#footer .container .footer-content .social ul li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  align-items: center;
}

footer section#footer .container .footer-content .social .img {
  width: 0.937rem;
  height: 1.395rem;
}

footer section#footer .container .footer-content .social .img img {
  width: 100%;
  height: 100%;
}

footer section#footer .container .footer-content ul li:nth-child(1) {
  padding-bottom: 1.1rem;
  margin-bottom: 1.437rem;
  border-bottom: 0.0375rem solid white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.812rem;
}

footer section#footer .container .footer-content .data ul li:nth-child(2),
footer section#footer .container .footer-content .data ul li:nth-child(3) {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75rem;
}

footer section#footer .container .footer-content .data ul li:nth-child(4) {
  padding-top: 1.875rem;
  font-size: 0.75rem;
  font-weight: normal;
  max-width: 30%;
}

footer section#footer .container .footer-content .newsletter > li,
footer section#footer .container .footer-content .contacts ul li:nth-child(2),
footer section#footer .container .footer-content .contacts ul li:nth-child(3) {
  font-size: 0.75rem;
  font-weight: normal;
}

footer section#footer .container .footer-row-green {
  margin-top: 3.315rem;
  padding-bottom: 4.18rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}

footer section#footer .container .footer-row-green .column-left,
footer section#footer .container .footer-row-green .column-center,
footer section#footer .container .footer-row-green .column-right {
  display: grid;
  grid-column: span 8;
  color: white;
  text-transform: uppercase;
  font-size: 0.562rem;
  font-weight: 700;
}

footer section#footer .container .footer-row-green .column-left {
  font-size: 0.75rem;
  font-weight: 300;
  max-width: 71%;
  line-height: 1.6;
  text-transform: none;
}

body #mc_embed_signup,
body #mc_embed_signup .helper_text,
body #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  background: transparent;
}

body #mc_embed_signup .mc-field-group {
  width: 100%;
  padding: 0;
  max-width: 20rem;
  clear: none;
  display: block;
  min-height: auto;
}

body #mc_embed_signup form {
  background: transparent;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0;
  color: white;
}

body #mc_embed_signup {
  width: auto;
}

body #mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error,
body #mc_embed_signup .mc-field-group input {
  color: white;
  text-indent: 0;
  padding: 0;
  border-bottom: 0.5px solid #ccc;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  outline: 0;
  border-radius: 0;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  font-size: 0.75rem;
}

body #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  padding: 0;
  margin: 0;
  margin-top: 0.66rem;
  font-size: 0.75rem;
}

body #mc_embed_signup .optionalParent .clear.foot {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}

body #mc_embed_signup div#mce-responses {
  margin: 0;
  padding: 0;
  width: 100%;
}

footer section#footer .container .footer-content .newsletter {
  display: block;
}

body #mc_embed_signup .optionalParent .clear.foot img {
  position: absolute;
  right: 0;
  z-index: 1;
  pointer-events: none;
  top: 0.5rem;
}

body #mc_embed_signup div.response {
  font-weight: normal;
  font-size: 0.75rem;
  padding: 0;
  margin: 0;
  margin-top: 0.66rem;
}

body #mc_embed_signup .optionalParent .clear.foot input {
  position: absolute;
  right: 0;
  width: 10;
  width: 3rem;
  margin: 0;
  top: 0;
  height: 1rem;
  padding: 1rem;
  background: transparent;
}

body #mc_embed_signup .helper_text {
  display: none;
}

body #mc_embed_signup .mc-field-group input::placeholder {
  color: white;
}

/* -----------------------------------
==============================================================================
	# JURY AREA
==============================================================================
----------------------------------- */

body.eg_jury_area {
  min-height: unset;
}

body.eg_jury_area header.egloo {
  background: white;
}

body.eg_jury_area .topbar-wrap {
  padding-top: 6.13rem;
}

body.eg_jury_area .topbar-wrap .main-bar-wrap {
  background-color: black;
}

body.eg_jury_area .topbar-wrap .main-bar-wrap * {
  color: white;
}

body.eg_jury_area .topbar-wrap .main-bar-wrap .main-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

body.eg_jury_area .topbar-wrap .main-bar-wrap .main-bar p,
body.eg_jury_area .topbar-wrap .main-bar-wrap .main-bar a {
  font-size: 0.9375rem;
  font-weight: 600;
}

body.eg_jury_area .topbar-wrap .main-bar-wrap .main-bar h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

body.eg_jury_area .topbar-wrap .main-bar-wrap .main-bar > div {
  flex: 4;
}

body.eg_jury_area .topbar-wrap .main-bar-wrap .main-bar .jury-user-wrap {
  text-align: center;
}

body.eg_jury_area .topbar-wrap .main-bar-wrap .main-bar .logout-wrap {
  text-align: right;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid black;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap .nav-levels {
  display: grid;
  gap: 0.5rem;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap .download-wrap {
  height: 2rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 300;
  max-width: 13.25rem;
  width: 100%;
  border: 1px solid black;
  background-color: white;
  color: black;
  padding: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 12rem;
  transition: all 200ms ease-in-out;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap .download-wrap:hover {
  background-color: black;
  color: white;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap .download-wrap:hover input {
  color: white;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap .download-wrap form {
  width: 100%;
  position: relative;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap .download-wrap form:after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  background-color: #c3d600;
  display: inline-block;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  right: 0.6rem;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap .download-wrap form input {
  font-size: 0.9375rem;
  font-weight: 300;
  background: transparent;
  border: 0;
  outline: 0;
  transition: all 200ms ease-in-out;
  padding: 0.5rem 0.7rem 0.5rem 1.0625rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap > .container {
  display: grid;
  gap: 0.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap > .container .first-level,
body.eg_jury_area .topbar-wrap .nav-bar-wrap > .container .second-level {
  display: flex;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap > .container .first-level .active a,
body.eg_jury_area .topbar-wrap .nav-bar-wrap > .container .second-level .active a {
  font-weight: 600;
  text-decoration: underline;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap > .container .first-level .single-voice:not(:last-child):after,
body.eg_jury_area .topbar-wrap .nav-bar-wrap > .container .second-level .single-voice:not(:last-child):after {
  content: "|";
  font-weight: 300;
  top: -1.5px;
  position: relative;
  padding-left: 0.05rem;
  padding-right: 0.3rem;
}

body.eg_jury_area .topbar-wrap .nav-bar-wrap > .container .single-voice a {
  font-size: 0.9375rem;
  font-weight: 300;
}

body.eg_jury_area .jury-bread .bread-wrap {
  background-color: var(--light-gray);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

body.eg_jury_area .jury-bread .bread-wrap > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

body.eg_jury_area .jury-bread .user-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.eg_jury_area .jury-bread .logout {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.eg_jury_area .jury-bread .logout a {
  display: flex;
  align-items: center;
  gap: 1em;
}

body.eg_jury_area .jury-bread .logout a svg {
  width: 1.16em;
  height: 1.16em;
}

body.eg_jury_area .jury-bread .bread {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  gap: 0.75rem;
}

body.eg_jury_area .jury-bread .bread a,
body.eg_jury_area .jury-bread .bread .sep {
  opacity: 0.5;
  transition-property: opacity;
  transition-duration: 0.3s;
}

body.eg_jury_area .jury-bread .bread a:hover {
  opacity: 1;
}

body.eg_jury_area .jury-bread .bread .sep {
  font-weight: 300;
}

body.eg_jury_area .jury-bread .sub-menu {
  background-color: rgba(0, 0, 0, 0.0125);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

body.eg_jury_area .jury-bread .sub-menu ul,
body.eg_jury_area .jury-bread .sub-menu ul li {
  all: unset;
}

body.eg_jury_area .jury-bread .sub-menu ul {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  gap: 1.5rem;
}

body.eg_jury_area .jury-bread .sub-menu ul li a {
  opacity: 0.35;
  transition-duration: 0.3s;
}

body.eg_jury_area .jury-bread .sub-menu ul li.active a,
body.eg_jury_area .jury-bread .sub-menu ul li a:hover {
  opacity: 1;
}

body.eg_jury_area .login-content {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

body.eg_jury_area .login-content .intro {
  text-align: center;
  padding-bottom: 3.1rem;
  border-bottom: 1px solid #dedede;
}

body.eg_jury_area .login-content .intro .title {
  margin-bottom: 0.66rem;
}

body.eg_jury_area .login-content .intro .page-title {
  color: black;
}

body.eg_jury_area .login-content .intro .intro-text {
  letter-spacing: 0.02em;
  line-height: 1.36;
}

body.eg_jury_area .login-content .login-form-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 13%;
}

body.eg_jury_area .login-content .login-form-content h2 {
  font-size: 1.3rem;
  text-transform: uppercase;
  padding-top: 3.1rem;
  padding-bottom: 1.7rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
}

body.eg_jury_area .login-content .login-form-content .jury-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column-gap: 0.75rem;
  grid-row-gap: 3.3rem;
}

body.eg_jury_area .login-content .login-form-content .profile {
  position: relative;
  padding-bottom: 100%;
  margin-bottom: 0.84rem;
}

body.eg_jury_area .login-content .login-form-content .profile img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.eg_jury_area .login-content .login-form-content .full-name,
body.eg_jury_area .login-content .login-form-content .company,
body.eg_jury_area .login-content .login-form-content .role {
  font-size: 0.65rem;
  line-height: 1.25;
  max-width: 71.54%;
}

body.eg_jury_area .login-content .login-form-content .full-name {
  margin-bottom: 1em;
  font-weight: 500;
}

body.eg_jury_area .login-content .login-form-content .company {
  margin-bottom: 0.5em;
}

body.eg_jury_area .login-content .login-form-content .role {
  font-weight: 300;
}

body.eg_jury_area .login-content form#loginform {
  display: flex;
  flex-direction: column;
  gap: 1.17rem;
  padding-top: 1.35rem;
}

body.eg_jury_area .login-content form#loginform p {
  position: relative;
  flex: 1;
  display: flex;
  font-size: 1.22rem;
}

body.eg_jury_area .login-content form#loginform label[for="user_login"],
body.eg_jury_area .login-content form#loginform label[for="user_pass"] {
  position: absolute;
  left: 1.1em;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  text-transform: uppercase;
  opacity: 0.3;
}

body.eg_jury_area .login-content form#loginform input[type="text"],
body.eg_jury_area .login-content form#loginform input[type="password"] {
  all: unset;
  flex: 1;
  font-size: 1.21rem;
  padding: 0.88em 1.1em;
  background-color: var(--light-gray);
  border-radius: 0.23rem;
}

body.eg_jury_area .login-content form#loginform label[for="user_login"],
body.eg_jury_area .login-content form#loginform label[for="user_pass"] {
  font-size: 1.21rem;
}

body.eg_jury_area .login-content form#loginform .login-remember {
  display: flex;
  justify-content: flex-end;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.98rem;
}

body.eg_jury_area .login-content form#loginform .login-remember label {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

body.eg_jury_area .login-content form#loginform input[type="submit"] {
  all: unset;
  flex: 1;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.4em;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid black;
  border-radius: 0.23rem;
  cursor: pointer;
  padding: 1.18em 2em;
  transition-property: background, color;
  transition-duration: 0.3s;
}

body.eg_jury_area .login-content form#loginform input[type="submit"]:hover {
  background-color: black;
  color: white;
}

body.eg_jury_area .dashboard-container .export-section {
  padding-top: 1.4rem;
  padding-bottom: 1.9rem;
}

body.eg_jury_area .vote-page-content .no-projects,
body.eg_jury_area .dashboard-container .placeholder {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.eg_jury_area .dashboard-container .export-section .title-wrap {
  margin-bottom: 2rem;
}

body.eg_jury_area .dashboard-container .export-section .download-inputs {
  display: flex;
  gap: 0.25rem;
}

body.eg_jury_area .dashboard-container .export-section .download-inputs .categories-select-wrap {
  display: grid;
}

body.eg_jury_area .dashboard-container .export-section .download-inputs input,
body.eg_jury_area .dashboard-container .export-section .download-inputs select {
  display: flex;
  padding: 0.5rem 1rem;
}

body.eg_jury_area .vote-page-content .dashboard {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding-bottom: 2rem;
}

body.eg_jury_area.eg_jury_area_page_results .vote-page-content .dashboard {
  padding-bottom: 0;
}

/* body.eg_jury_area .vote-page-content .dashboard {
  display: flex;
  gap: 0.75rem;
} */

body.eg_jury_area .vote-page-content .dashboard .all-projects {
  position: sticky;
  top: 6rem;
  height: 100%;
  /* position: relative; */
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
  display: inline-block;
  height: auto;
  align-self: flex-start;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .projects-topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 8;
  background: white;
  padding-bottom: 1.25rem;
  padding-right: 1rem;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects::-webkit-scrollbar {
  display: none;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .tab-title {
  margin-bottom: 2.625rem;
  margin-top: 1.25rem;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .tab-title .title {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.1;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .filter {
  position: relative;
  display: flex;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .filter.categories {
  margin-bottom: 0;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .filter select {
  all: unset;
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 300;
  color: white;
  padding: 0.45rem 1.25rem;
  background-color: black;
  border-radius: 1rem;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .filter select option {
  font-size: 0.9375rem;
  font-weight: 300;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .filter::after {
  content: "";
  position: absolute;
  height: 0.705rem;
  width: 1.2rem;
  right: 1.0625rem;
  top: 50%;
  transform: translatey(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.944' height='12.374' viewBox='0 0 19.944 12.374'%3E%3Cpath id='Tracciato_877' data-name='Tracciato 877' d='M-2266.051 5905.735l9.591 11.278 9.591-11.278' transform='translate(2266.432 -5905.411)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  margin-top: 1px;
  pointer-events: none;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .projects-list {
  position: relative;
  display: grid;
  grid-auto-rows: 1fr;
  overflow-y: scroll;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project {
  padding: 0.85rem 1rem;
  cursor: pointer;
  display: grid;
  grid-template-columns: 8.4fr 1.4fr;
  grid-column-gap: 1rem;
  border-top: 1px solid black;
  transition-property: border-color;
  transition-duration: 0.3s;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .projects-list {
  border-bottom: 1px solid black;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project .title h3 {
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 300;
  word-break: break-word;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project.active .title h3 {
  font-weight: 600;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project div.vote {
  padding-right: 1rem;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project .vote {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
  align-items: flex-end;
}

body.eg_jury_area.eg_jury_area_page_vote .vote-page-content .dashboard .all-projects .single-project .vote svg {
  display: block;
  opacity: 1;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project .vote svg {
  display: none;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project .vote svg.check {
  position: relative;
  right: -1px;
}

body.eg_jury_area.eg_jury_area_page_vote .vote-page-content .dashboard .all-projects .single-project[data-vote="0"] .vote svg.check {
  display: none;
}

body.eg_jury_area.eg_jury_area_page_vote .vote-page-content .dashboard .all-projects .single-project[data-vote="1"] .vote svg.check {
  display: block;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project .vote .vote-res {
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: right;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project .vote .vote-res span {
  white-space: nowrap;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project .vote-res .voted {
  display: block;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project .vote-res .vote {
  display: none;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project[data-vote="0"] .vote-res .vote {
  display: block;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project[data-vote="0"] .vote-res .voted {
  display: none;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project .vote-res span {
  color: var(--green);
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project[data-vote="0"] .vote-res span {
  color: #5a5a5a;
}

body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project[data-vote="0"] svg path {
  fill: #5a5a5a;
  stroke: #5a5a5a;
}

/* Screening */

body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project {
  grid-template-columns: 7fr 2.8fr;
}

body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project .vote .vote-res > * {
  display: none;
}

body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project .vote .vote-res .not-screened {
  color: #4c5560;
}

body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project .vote .vote-res .accepted {
  color: var(--green);
}

body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project[data-screen=""] .vote-res .not-screened,
body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project[data-screen="1"] .vote-res .accepted,
body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project[data-screen="0"] .vote-res .rejected {
  display: block;
}

body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project[data-screen="1"] svg.check,
body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project[data-screen="0"] svg.rejected {
  display: block;
}

body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project[data-screen="0"] .vote-res span {
  color: var(--red);
}

body .vote-page-content .no-projects {
  padding-top: 10rem;
  padding-bottom: 10rem;
  text-align: center;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote {
  grid-column: 2/3;
  background-color: rgba(208, 208, 206, 0.3);
  position: relative;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote {
  position: relative;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .inner-container {
  max-width: 78%;
  margin: auto;
  overflow: visible;
  padding-top: 2.9rem;
  padding-bottom: 4.95rem;
}

body.eg_jury_area.eg_jury_area_page_results .vote-page-content .dashboard #project-for-vote .single-project-to-vote .inner-container {
  padding-bottom: 6.95rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .top {
  margin-bottom: 3.18rem;
  display: flex;
  justify-content: space-between;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .top .proj-title {
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.1;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .top .contest {
  font-size: 1.125rem;
  font-weight: 600;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont {
  position: relative;
  margin-bottom: 2.8rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  align-items: flex-end;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .photo {
  grid-column: span 3;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author {
  grid-column: span 5;
  padding-left: 1.25rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author .name {
  margin-bottom: 2.5rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author .name h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author .info p {
  font-size: 1.25rem;
  line-height: 1.2;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author .info .email {
  padding-top: 2.2rem;
  text-decoration: underline;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  object-position: top;
  background-color: white;
  border-radius: 0 4.25rem 0 0;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .single-field {
  padding-bottom: 2.3rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .single-field h3 {
  font-size: 1.25rem;
  padding-bottom: 1.25rem;
  line-height: 1.2;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .description {
  font-size: 0.9375rem;
  line-height: 1.33;
  font-weight: 300;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .description .name {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .description .link {
  font-weight: 600;
  color: var(--green);
  text-decoration: underline;
}

/* gallery */

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .slider {
  display: block;
  width: calc(var(--container-width) / 12 * 7);
  max-width: 100%;
  position: relative;
  overflow: visible;
  /* overflow: hidden;
  padding-top: 5.48rem;*/
  margin-bottom: 6rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .slider .swiper {
  overflow: visible;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .slider .swiper .swiper-slide .img-cont {
  display: block;
  position: relative;
  padding-bottom: 100%;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .slider .swiper .swiper-slide .img-cont img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .slider .swiper .swiper-scrollbar {
  top: calc(100% + 2.8rem);
  bottom: unset;
  background-color: transparent;
  height: 6px;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .slider .swiper .swiper-scrollbar::before {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .slider .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: black;
  border-radius: 0;
}

/* Application replies */

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .application-replies-divider {
  all: unset;
  display: block;
  box-sizing: border-box;
  padding-top: 1px;
  background-color: black;
  margin-top: 4rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .applications-replies-wrap {
  margin-top: 4rem;
  margin-bottom: 3rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .applications-replies-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .section-title-wrap {
  margin-bottom: 2rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .application-replies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem 2rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .editor,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .multiple_text,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .multiple_media,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .post_title {
  grid-column: 1/-1;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .multiple_media .reply-content-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .reply-label {
  font-size: 0.84rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .reply-content-wrap {
  font-size: 0.75rem;
  line-height: 1.5;
}

/* Vote bar */

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background-color: black;
  padding: 2rem 2.6rem 2rem 3rem;
  color: white;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transition-duration: 0.3s;
  transition-property: opacity;
  opacity: 0;
  pointer-events: none;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote.voting .vote-bar .loading-overlay {
  opacity: 0.5;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar > * {
  flex: 1;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .title {
  align-self: center;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .confirmation {
  align-self: flex-end;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .vote-cta {
  font-size: 1.15rem;
  font-weight: 300;
  padding-left: 0.5rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .stars-cont {
  display: flex;
  justify-content: center;
  justify-content: start;
  gap: 2.4rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .stars-cont g {
  fill: rgba(255, 255, 255, 0);
  transition-duration: 0.3s;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .stars .single-star.active g {
  fill: var(--green);
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .stars .single-star {
  width: 1.45rem;
  cursor: pointer;
}

/* Screening */

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button {
  all: unset;
  border: 1px solid white;
  border-radius: 1.875rem;
  min-height: 1.125rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem 1.125rem 0.5rem 1.125rem;
  cursor: pointer;
  transition-duration: 0.3s;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button svg {
  min-width: 1.18rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button svg line,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button svg path {
  transition-duration: 0.3s;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button:hover svg path,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button:hover svg rect,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button[value="1"] svg path,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button[value="1"] svg rect,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button[value="0"] svg path,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button[value="0"] svg rect {
  stroke: white;
  fill: white;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button.reject:hover,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen[data-rate="0"] .screening-buttons button.reject {
  background-color: var(--red);
  border-color: var(--red);
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button.accept:hover,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen[data-rate="1"] .screening-buttons button.accept {
  background-color: var(--green);
  border-color: var(--green);
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button svg.rejected {
  width: 0.66rem;
  margin-left: -0.5rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button svg.check {
  width: 1rem;
  margin-right: -0.5rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm {
  all: unset;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-size: 1rem;
  gap: 0.4rem;
  text-align: center;
  cursor: pointer;

  text-transform: uppercase;
  font-weight: normal;
  transition-duration: 0.3s;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote.voting .vote-bar button.confirm {
  pointer-events: none;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm p {
  transition-duration: 0.3s;
  margin-bottom: 0;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm svg {
  display: inline-block;
  opacity: 1;
  transition-duration: 0.3s;
  position: relative;
  left: 0;
  transition: left 0.2s ease-in-out;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm:hover svg {
  left: 0.5rem;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm.confirmed {
  animation: changeColor 1s backwards;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm.confirmed p {
  animation: textFade 1s backwards;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm.confirmed svg {
  animation: iconFade 1s backwards;
}

@keyframes changeColor {
  0% {
    background-color: white;
  }

  70% {
    background-color: #1e9b6b;
  }

  100% {
    background-color: white;
  }
}

@keyframes textFade {
  0% {
    opacity: 1;
  }

  70% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes iconFade {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm:hover,
body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm.confirmed:hover {
  background-color: var(--accent);
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm:hover p {
  color: white;
}

/* body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .title {
  justify-self: flex-start;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate {
  justify-self: center;
}

body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .confirmation {
  justify-self: flex-end;
} */

body.eg_jury_area.eg_jury_area_page_results .vote-page-content .dashboard #project-for-vote .single-project-to-vote .top {
  justify-content: flex-end;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr {
  vertical-align: bottom;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr th,
body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td {
  padding: 0 0.5rem;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-vote-result {
  min-width: 6rem;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr th:not(:first-child),
body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td:not(:first-child) {
  text-align: right;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr th:first-child,
body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td:first-child {
  padding-left: 0;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr th {
  font-weight: 600;
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding-bottom: 1rem;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr th:last-child,
body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td:last-child {
  padding-right: 0;
  text-align: right;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.1;
  border-bottom: 1px solid black;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-project-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-project-title .project-title {
  font-style: italic;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters {
  position: relative;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters.votes-missing {
  color: var(--red);
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap {
  display: none;
  position: absolute;
  right: -1rem;
  bottom: calc(1rem + 3px);
  display: grid;
  line-height: 1.2;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap .voters-tooltip {
  border: 0;
  outline: 0;
  cursor: pointer;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap .voters-tooltip svg.close,
body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap .voters-tooltip.active svg.open {
  display: none;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap .voters-tooltip.active svg.close {
  display: block;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap .tooltip-container {
  position: absolute;
  display: none;
  top: -3px;
  background: white;
  left: 1.2rem;
  border: 1px solid black;
  white-space: nowrap;
  text-align: left;
  min-width: 9.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: bold;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap .voters-tooltip.active + .tooltip-container {
  display: block;
  color: black;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap .tooltip-title-wrap {
  padding: 0.45rem 0;
  text-align: center;
}

body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap .tooltip-results-wrap .tooltip-voter {
  border-top: 1px solid black;
  padding: 0.37rem 0.6875rem;
  text-transform: none;
}

@media only screen and (min-width: 1200px) {
  body.eg_jury_area .vote-page-content > .container {
    width: calc(((100% - 1160px) / 2) + 1160px);
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  body.eg_jury_area .login-content .login-form-content .jury-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.eg_jury_area .vote-page-content > .container {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
  body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project div.vote {
    padding-right: 0;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project,
  body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .top .proj-title,
  body.eg_jury_area .vote-page-content .dashboard .all-projects .tab-title .title {
    font-size: 1.5rem;
  }

  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-project-title,
  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td {
    font-size: 1rem;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  footer section#footer .container .footer-content .newsletter {
    grid-column: span 6;
  }

  body.eg_jury_area .login-content .intro {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  body.eg_jury_area .jury-bread .bread-wrap > .container {
    gap: 1.5rem;
  }

  body.eg_jury_area .jury-bread .bread {
    display: none;
  }

  body.tax-prize section#about .content.categories .image-text {
    display: none;
  }

  section#hero.tax-edition .tabs .single-tab.current {
    border-bottom-color: black;
  }

  body.eg_jury_area .vote-page-content .container {
    overflow-x: hidden;
  }

  body.eg_jury_area .vote-page-content .dashboard {
    display: flex;
    gap: 2.25rem;
    position: relative;
    width: 200%;

    transform: translateX(calc(-50% - 2.25rem));
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects,
  body.eg_jury_area .vote-page-content .dashboard #project-for-vote {
    flex-basis: 100%;
    min-width: 50%;
    max-width: 50%;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects {
    position: relative;
    height: unset;
    overflow-y: unset;
    width: 100%;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .main-data,
  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar {
    flex-direction: column;
    gap: 1.5rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .main .description {
    column-count: unset;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .proj-title {
    max-width: unset;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm {
    width: unset;
    height: unset;
    padding: 0.5rem 2rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .inner-container {
    padding-bottom: 0;
    max-width: calc(100% - 2rem);
  }

  body.eg_jury_area .login-content .login-form-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  body.eg_jury_area .login-content .login-form-content .login-form-wrapper {
    order: 1;
  }

  body.eg_jury_area .login-content .login-form-content .jury-wrapper {
    order: 2;
  }

  body.eg_jury_area .login-content .login-form-content .jury-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-row-gap: 2.5rem;
  }

  body.eg_jury_area .login-content form#loginform input[type="text"],
  body.eg_jury_area .login-content form#loginform input[type="password"],
  body.eg_jury_area .login-content form#loginform label[for="user_login"],
  body.eg_jury_area .login-content form#loginform label[for="user_pass"] {
    font-size: 0.85rem;
  }

  body.eg_jury_area .dashboard-container .export-section .title-wrap h2,
  body.eg_jury_area .vote-page-content .no-projects h2,
  body.eg_jury_area .dashboard-container .placeholder h2 {
    font-size: 1rem;
  }

  body.eg_jury_area .vote-page-content .dashboard {
    transform: none;
    width: 100%;
    display: block;
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects,
  body.eg_jury_area .vote-page-content .dashboard #project-for-vote {
    max-width: 100%;
    min-width: 100%;
    padding-top: 0.8rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .slider {
    margin-top: 0rem;
    padding-bottom: 0rem;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .projects-topbar-wrap {
    padding-bottom: 0.7rem;
    padding-right: 0;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .expand-projects {
    all: unset;
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 300;
    color: white;
    padding: 0.45rem 1.25rem;
    background-color: black;
    border-radius: 1rem;
    display: grid;
    position: relative;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .expand-projects.active:after {
    transform: rotate(180deg);
    margin-top: -0.35rem;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .expand-projects:after {
    content: "";
    position: absolute;
    height: 0.705rem;
    width: 1.2rem;
    right: 1.0625rem;
    top: 50%;
    transform: translatey(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.944' height='12.374' viewBox='0 0 19.944 12.374'%3E%3Cpath id='Tracciato_877' data-name='Tracciato 877' d='M-2266.051 5905.735l9.591 11.278 9.591-11.278' transform='translate(2266.432 -5905.411)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    margin-top: 1px;
    pointer-events: none;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .projects-list {
    max-height: 4.1rem;
    transition: all 100ms ease-in-out;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
    margin-top: 0.8rem;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .expand-projects.active + .projects-list {
    overflow-y: scroll;
    max-height: 25rem;
  }

  body.eg_jury_area .vote-page-content.screening .dashboard .all-projects .single-project {
    min-height: 5rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .inner-container {
    max-width: calc(100% - 3rem);
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .main-data {
    margin-bottom: 1.8rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .main .description {
    margin-bottom: 0;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .section-title-wrap h2 {
    font-size: 1rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .application-replies-divider {
    margin-bottom: 3rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .applications-replies-wrap,
  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .application-replies-divider {
    margin-top: 3rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .application-replies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem 2rem;
    column-gap: 0;
    row-gap: 2rem;
    grid-template-columns: 1fr;
    display: flex;
    flex-wrap: wrap;
  }

  body.eg_jury_area .dashboard-container .export-section .download-inputs select,
  body.eg_jury_area .dashboard-container .export-section .download-inputs input {
    flex: 1;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    color: white;
    padding: 0.84rem 0.94rem;
    background-color: var(--dark-blue);
    border-radius: 0.23rem;
    min-height: 2.6rem;
    border: 0;
    justify-content: center;
    text-align: center;
    line-height: 1;
    height: 2.6rem;
  }

  body.eg_jury_area .dashboard-container .export-section .download-inputs select {
    all: unset;
    line-height: 1.2;
  }

  body.eg_jury_area .dashboard-container .export-section .download-inputs div.categories-select-wrap {
    flex: 1;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    color: white;
    padding: 0.84rem 0.94rem;
    background-color: var(--dark-blue);
    border-radius: 0.23rem;
    min-height: 2.6rem;
    border: 0;
    justify-content: center;
    text-align: center;
    height: 2.6rem;
    align-items: center;
    position: relative;
  }

  body.eg_jury_area .dashboard-container .export-section .download-inputs div.categories-select-wrap::after {
    content: "";
    --arrow-w: 1.125rem;
    position: absolute;
    height: calc(var(--arrow-w) / 2);
    width: var(--arrow-w);
    right: 0.94rem;
    top: calc(50% - var(--arrow-w) / 4);
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNC43NTIiIGhlaWdodD0iMTMuMDgzIiB2aWV3Qm94PSIwIDAgMjQuNzUyIDEzLjA4MyI+CiAgPHBhdGggaWQ9IlRyYWNjaWF0b184MjciIGRhdGEtbmFtZT0iVHJhY2NpYXRvIDgyNyIgZD0iTTMxOTYuODMyLTEwMjIxLjVsMTIuMDIyLDEyLjAyMiwxMi4wMjItMTIuMDIyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzE5Ni40NzggMTAyMjEuODU0KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjEiLz4KPC9zdmc+Cg==");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
  }

  body.eg_jury_area .dashboard-container .export-section .download-inputs div {
    display: grid;
    min-width: 100%;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .reply-content-wrap p:not(:last-child) {
    margin-bottom: 1rem;
  }

  body.eg_jury_area .dashboard-container .export-section .download-inputs {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  body.eg_jury_area .dashboard-container .export-section .download-inputs {
    gap: 0.5rem;
    justify-content: space-between;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .multiple_media .reply-content-wrap {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects {
    top: 0;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .tab-title .title {
    font-size: 2rem;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .tab-title {
    margin-bottom: 1.625rem;
    margin-top: 1.8rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .inner-container {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .single-project div.vote {
    padding-right: 0;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .top {
    margin-bottom: 3rem;
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .top .proj-title {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.1;
    order: 2;
    margin-top: 1rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .top .contest {
    font-size: 1rem;
    font-weight: 600;
    order: 1;
    width: 100%;
    text-align: right;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont {
    grid-template-columns: 1fr;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .single-field h3 {
    font-size: 1.125rem;
    padding-bottom: 1rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author .name h3,
  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author .info p {
    font-size: 1.125rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author .name {
    margin-bottom: 1.25rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont {
    display: block;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .photo {
    padding-bottom: 3rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author .info .email {
    padding-top: 1.25rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .single-project-to-vote .feat-cont .author {
    padding-left: 0;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .title {
    align-self: center;
    width: 100%;
    text-align: center;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button {
    justify-content: space-between;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .screen .screening-buttons button {
    font-size: 0.8rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .confirmation {
    width: 100%;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .vote-cta {
    padding-left: 0;
    text-align: center;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar button.confirm {
    margin: auto;
    position: relative;
    left: 0.9rem;
  }

  body.eg_jury_area .vote-page-content .no-projects,
  body.eg_jury_area .dashboard-container .placeholder {
    min-height: 30vh;
  }

  body .vote-page-content .no-projects {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table thead {
    display: none;
  }

  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table,
  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tbody,
  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tbody tr {
    display: grid;
  }

  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tbody tr:not(:first-child) {
    padding-top: 2rem;
  }

  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td:not(.td-project-title) {
    display: flex;
    justify-content: space-between;
  }

  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr th:last-child,
  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td:last-child {
    padding-right: 0.5rem;
  }

  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td {
    font-size: 1rem;
  }

  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-project-title {
    font-size: 1.125rem;
    line-height: 1.2;
  }

  body.eg_jury_area.eg_jury_area_page_results .results-table-wrap table tr td.td-voters .tooltip-wrap .tooltip-container {
    left: auto;
    right: 1.2rem;
  }

  body.eg_jury_area.eg_jury_area_page_results .vote-page-content .dashboard #project-for-vote .single-project-to-vote .top {
    margin-bottom: 2rem;
  }

  body.eg_jury_area.eg_jury_area_page_results .vote-page-content .dashboard,
  body.eg_jury_area.eg_jury_area_page_results .vote-page-content .dashboard #project-for-vote .single-project-to-vote .inner-container {
    padding-bottom: 3rem;
  }

  body.eg_jury_area .vote-page-content .dashboard #project-for-vote .vote-bar .rate .stars-cont {
    justify-content: center;
  }

  body.eg_jury_area .topbar-wrap .nav-bar-wrap > .container {
    display: grid;
    gap: 1.1rem;
  }

  body.eg_jury_area .topbar-wrap .nav-bar-wrap .download-wrap {
    margin-bottom: 0.2rem;
  }

  body.eg_jury_area .vote-page-content .dashboard .all-projects .projects-list {
    border-bottom: 0;
  }

  body.eg_jury_area .vote-page-content.screen .dashboard .all-projects .single-project:last-child {
    border-bottom: 1px solid black;
  }
}

body.home section#home-contest .columns .column-left {
  grid-column: -1/1;
  order: 2;
}

body.home section#home-contest .columns .column-left .text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-left: 6rem;
}

@media (max-width: 768px) {
  body.home section#home-contest .columns .column-left .text {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1.5rem;
    padding-bottom: 0;
  }
}

body.home section#home-contest .columns .column-left .title {
  max-width: 53.75rem;
  min-width: unset;
}

body.home section#home-contest .columns .column-left .title .pretitle {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.333333;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 0.3em;
}

@media only screen and (max-width: 768px) {
  body.home section#home-contest .columns .column-left .title .pretitle {
    margin-bottom: 2rem;
  }
}

body.home section#home-contest .columns .column-left .text .button-green {
	grid-column: span 2;
}

body.home section#home-contest .columns .column-left .text .button-green,
body.home section#home-contest .columns .column-left .text .button-black {
  place-self: end end;
  padding: 0;
}

body.home section#home-contest .columns .column-right {
  margin-bottom: -9.5rem;
  grid-column: -1/-9;
}

body.home section#home-contest.possibilities {
  isolation: isolate;
}

body.home section#home-contest.possibilities .columns .column-right {
  margin-bottom: -23.5rem;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  body.home section#home-contest .columns .column-right {
    margin-bottom: 0 !important;
  }
}

section.side-arrow-layout .swiper {
  width: 0;
  min-width: 100%;
}

section.side-arrow-layout .container {
  padding-top: 4.5rem;
  padding-bottom: 6.25rem;
  border-bottom: 0.5px solid white;
}

section.side-arrow-layout .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.3125rem;
}

section.side-arrow-layout .wrapper .title h2 {
  font-size: 2.75rem;
  line-height: 1.363636;
  font-weight: 300;
  color: var(--green);
}

section.side-arrow-layout .wrapper .content {
  display: flex;
  gap: 5.625rem;
}

section.side-arrow-layout .wrapper .icon {
  flex-shrink: 0;
}

section.side-arrow-layout .wrapper .text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 0.9375rem;
  line-height: 1.25;
  font-weight: 300;
}

section.side-arrow-layout .wrapper .text .columned-text {
  columns: 2;
}

@media only screen and (max-width: 768px) {
  section.side-arrow-layout .wrapper .text .columned-text {
    columns: 1;
  }
}

/* #video-contest */
section#video-contest {
  margin-block: 5.5rem 7.25rem;
}

section#video-contest .title h2 {
  font-weight: 300;
  font-size: 2.75rem;
  line-height: 3.0625rem;
}

section#video-contest .subtitle {
  margin-inline-start: 12.25rem;
  margin-block: 1.875rem;
}

section#video-contest .subtitle p {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 700;
}

section#video-contest .video-wrapper video {
  display: block;
  max-width: 60.25rem;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  section#video-contest {
    margin-block: 3rem 4rem;
  }

  section#video-contest .title h2 {
    font-size: 1.75rem;
    line-height: 2rem;
  }

  section#video-contest .subtitle {
    margin-inline-start: 0;
    margin-block: 1rem;
  }
}
