/* nunito-regular - latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: local(''), url('../fonts/nunito-v16-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/nunito-v16-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* nunito-700 - latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: local(''), url('../fonts/nunito-v16-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/nunito-v16-latin-700.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* nunito-900 - latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 900;
  src: local(''), url('../fonts/nunito-v16-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('../fonts/nunito-v16-latin-900.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* RESET */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.2em;
  -webkit-tap-highlight-color: transparent;
}
html,
body {
  min-height: 100vh;
  font-size: 25px;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
p,
ul,
ol {
  display: block;
  font-size: inherit;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: inherit;
  transition: 0.2s;
  outline: 0;
  cursor: pointer;
  text-decoration: underline;
}
strong {
  color: #58BF4E;
}
em {
  color: #E98354;
  font-weight: bold;
}
em.red {
  color: #E5543E;
}
em.green {
  color: #58BF4E;
}
ul {
  margin-left: 16px;
  text-align: left;
}
ul li {
  margin-bottom: 25px;
}
ul ::marker {
  color: var(--color);
}
body {
  font-family: 'nunito';
  font-weight: normal;
  background: black;
}
/* ATOMS */
p {
  margin-bottom: 10px;
}
button,
.btn {
  display: inline-flex;
  align-items: center;
  background-color: #2A4E66;
  color: #FFFFFF;
  border: none;
  outline: none;
  padding: 15px 30px;
  font-family: 'nunito';
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: border 0.3s, background-color 0.3s, opacity 0.3s;
  text-decoration: none;
}
button svg,
.btn svg,
button img,
.btn img {
  height: 24px;
  margin-right: 15px;
}
button:hover,
.btn:hover {
  background-color: #5284a5;
}
button + button,
.btn + button,
button + .btn,
.btn + .btn {
  margin-left: 15px;
}
button.btn-big,
.btn.btn-big {
  display: inline-block;
  background-color: #FFFFFF;
  color: #2A4E66;
  border: 5px solid transparent;
  box-shadow: 0 0 10px #2a4e6652;
  font-weight: normal;
  font-size: 1.4rem;
  padding: 20px 40px;
  border-radius: 40px;
}
button.btn-big:hover,
.btn.btn-big:hover,
button.btn-big:focus,
.btn.btn-big:focus {
  border-color: #2a4e6652;
  opacity: 1;
}
button.btn-icon,
.btn.btn-icon {
  padding: 0;
  height: 60px;
  width: 60px;
  justify-content: center;
  display: flex;
}
button.btn-icon svg,
.btn.btn-icon svg,
button.btn-icon img,
.btn.btn-icon img {
  width: 34px;
  height: 34px;
  margin-right: 0;
}
button.btn-light,
.btn.btn-light {
  background-color: transparent;
  outline: 2px solid #2A4E66;
  color: #2A4E66;
}
button.btn-light:hover,
.btn.btn-light:hover {
  opacity: 0.7;
}
/* HELPER */
.t-left {
  text-align: left;
}
.t-center {
  text-align: center;
}
.is-hidden {
  display: none !important;
}
[hidden] {
  display: none !important;
}
.m-left {
  margin-left: 120px;
}
/* TABLE */
.table {
  margin-bottom: 30px;
}
.table th {
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 15px;
}
.table td:nth-child(odd) {
  padding-right: 30px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #5284a580;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #5284a5;
}
/* MODAL */
#modal_container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(42, 78, 102, 0.7);
  z-index: 1000;
  transition: 0.3s;
  transform: scale(0.1, 0.1);
  opacity: 0;
  visibility: hidden;
}
#modal_container.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
  transform: scale(1, 1);
}
#modal_container #modal_window {
  border-radius: 30px;
  background: #fff;
  width: auto;
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  text-align: center;
  overflow: hidden;
}
#modal_container #modal_body {
  max-height: 550px;
  overflow: auto;
}
#modal_container #modal_content {
  padding: 30px 40px 20px 40px;
  max-height: calc(100% - 64px);
  text-align: center;
}
#modal_container #modal_content table {
  font-size: 0.6em;
  margin: 20px auto;
  border-collapse: collapse;
  max-width: 50%;
  width: 100%;
}
#modal_container #modal_content table .title {
  background-color: #5284a580;
}
#modal_container #modal_content table .yellow {
  background-color: #F6D46F80;
}
#modal_container #modal_content table .orange {
  background-color: #E9835480;
}
#modal_container #modal_content table th,
#modal_container #modal_content table td {
  padding: 5px 20px 5px 5px;
  border: 1px solid black;
}
#modal_container #modal_actions {
  padding-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#modal_container #modal_actions > * {
  margin: 0 3px;
}
#modal_container.t-left #modal_content {
  text-align: left;
}
#modal_container.modal-sad .feedback-img,
#modal_container.modal-happy .feedback-img {
  width: 120px;
}
#modal_container.modal-sad .feedback-title,
#modal_container.modal-happy .feedback-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 40px;
}
#modal_container.modal-sad .feedback-desc,
#modal_container.modal-happy .feedback-desc {
  margin-bottom: 40px;
}
#modal_container.modal-sad.modal-sad .feedback-title,
#modal_container.modal-happy.modal-sad .feedback-title {
  color: #E5543E;
}
#modal_container.modal-sad.modal-happy .feedback-title,
#modal_container.modal-happy.modal-happy .feedback-title {
  color: #58BF4E;
}
/* APP */
.app-wrapper {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0f0f0;
}
#app {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1280px;
  min-width: 1280px;
  max-width: 1280px;
  height: 720px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  background-color: var(--color-light);
  box-shadow: 0 0 20px #d3d3d3;
}
#app .header {
  height: 45px;
  background-color: #2A4E66;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  font-family: 'nunito';
  font-size: 1rem;
  line-height: 1em;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}
#app .header .app-title {
  margin-left: 20px;
  color: #FFFFFF;
}
#app .header .app-section {
  color: var(--color);
}
#app .header .app-logo {
  height: 35px;
  margin-right: 10px;
}
#app .header .app-logo img {
  height: 40px;
}
#app .content {
  display: flex;
  height: calc(100% - 45px);
}
#app .content .sections {
  width: 90px;
  height: 100%;
}
#app .content .sections .section-btn[data-section=award] {
  pointer-events: none;
}
#app .content .main {
  width: calc(100% - 90px);
}
#app[data-section=scopri],
#app[data-section=rifletti] {
  --color: #3FB6BA;
  --color-light: #E2F4F5;
}
#app[data-section=ripassa] {
  --color: #53B57A;
  --color-light: #E5F4EB;
}
#app[data-section=prova] {
  --color: #E98354;
  --color-light: #FCECE5;
}
#app[data-section=award] {
  --color: #F2C231;
  --color-light: #FDF6E0;
}
.sections {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: var(--color);
  outline: 1px solid var(--color-light);
}
.sections .section-title {
  color: var(--color);
}
.sections .section-cursor {
  position: absolute;
  background-color: var(--color-light);
  top: 0;
  right: 0;
  width: 100%;
  height: 20%;
  top: -20%;
  z-index: 2;
}
.sections .section-cursor .cursor-arc {
  width: 25px;
  height: 25px;
  right: 0;
  position: absolute;
  color: var(--color-light);
}
.sections .section-cursor .cursor-arc.cursor-arc-top {
  top: -24px;
}
.sections .section-cursor .cursor-arc.cursor-arc-bottom {
  bottom: -24px;
}
.sections .section-btn {
  height: 20%;
  padding: 10px 20px;
  color: var(--color-light);
  cursor: default;
  position: relative;
  /*&:not(.section-selected):hover{
			svg {
				opacity: .6;
			}
		}*/
}
.sections .section-btn svg {
  width: 100%;
  transition: opacity 0.3s;
}
.sections .section-btn.section-selected {
  color: var(--color);
  position: relative;
  z-index: 3;
}
.main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 0 80px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.main.fade-in {
  opacity: 1;
}
.main .main-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin: 40px 0;
}
.main .main-buttons {
  position: absolute;
  bottom: 30px;
  display: flex;
}
.main .main-alert {
  background-color: #F6D46F;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 40px;
  width: 100%;
  height: 235px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.main .main-alert .alert-title {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.main .main-alert:after {
  background-image: url(../img/alert-arrow.svg);
  content: '';
  position: absolute;
  top: -29px;
  left: 0;
  width: 200px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  right: 0;
  margin: 0 auto;
}
.main .main-alert.fade-in {
  animation: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1 alertFadeIn forwards;
}
/* SCOPRI */
.main[data-section=scopri] .main-title {
  margin: 40px 0 30px;
}
.main[data-section=scopri] .main-scene {
  position: relative;
  width: 100%;
  text-align: center;
}
.main[data-section=scopri] .main-scene .main-img {
  height: 440px;
}
.main[data-section=scopri] .main-scene .main-img #smoke > * {
  transform-origin: center;
  animation: smoke 3s infinite ease-in-out;
}
.main[data-section=scopri] .main-scene .main-img #smoke > *:nth-child(1) {
  animation-delay: -0.6s;
}
.main[data-section=scopri] .main-scene .main-img #smoke > * :nth-child(2) {
  animation-delay: -0.3s;
}
.main[data-section=scopri] .main-scene .main-img #leafs-left > * {
  transform-box: fill-box;
  transform-origin: bottom right;
  animation: leaf-left 10s infinite ease-in-out;
}
.main[data-section=scopri] .main-scene .main-img #leafs-left > *:nth-child(1) {
  animation-delay: -0.6s;
}
.main[data-section=scopri] .main-scene .main-img #leafs-left > *:nth-child(2) {
  animation-delay: -0.3s;
}
.main[data-section=scopri] .main-scene .main-img #leafs-right > * {
  transform-box: fill-box;
  transform-origin: bottom left;
  animation: leaf-right 10s infinite ease-in-out;
}
.main[data-section=scopri] .main-scene .main-img #leafs-right > *:nth-child(2) {
  animation-delay: 0.3s;
}
.main[data-section=scopri] .btn-play:after {
  animation: pulse 3s infinite;
}
/* RIFLETTI */
.main[data-section=rifletti] .main-title {
  margin: 40px 0 30px;
}
.main[data-section=rifletti] .main-scene {
  position: relative;
  width: 100%;
  text-align: center;
}
.main[data-section=rifletti] .main-scene .main-img {
  height: 440px;
}
.main[data-section=rifletti] .main-scene .main-img.fade-in {
  height: 270px;
  animation: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1 scaleImg;
}
.main[data-section=rifletti] .main-alert {
  bottom: -265px;
  animation-duration: 0.6s;
}
.main[data-section=rifletti] .main-alert .btn-big {
  font-size: 0.8rem;
}
/* BUBBLE */
.bubble {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  width: 300px;
  font-size: 0.8rem;
  position: absolute;
  top: 0;
}
.bubble:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  bottom: 20px;
}
.bubble.bubble1 {
  left: -220px;
}
.bubble.bubble1:after {
  right: -20px;
  border-width: 20px 0 0 20px;
  border-color: transparent transparent transparent #ffffff;
}
.bubble.bubble2 {
  right: -220px;
}
.bubble.bubble2:after {
  left: -20px;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #ffffff transparent;
}
/* RIPASSA */
.main[data-section=ripassa] .main-title {
  margin-bottom: 20px;
}
.main[data-section=ripassa] video {
  width: 730px;
  border: 10px solid #53B57A;
  border-radius: 25px;
  /*aspect-ratio: 16 / 9;*/
  margin-bottom: 30px;
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.main[data-section=ripassa] .main-alert {
  transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  bottom: -265px;
  display: flex;
  flex-direction: column;
}
.main[data-section=ripassa] .main-alert .alert-title {
  font-weight: normal;
  font-size: 0.8rem;
  text-align: left;
  width: 70%;
  margin-right: 30px;
}
.main[data-section=ripassa] .main-alert .button-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.main[data-section=ripassa] .main-alert .button-container > button {
  margin-bottom: 10px;
  margin-left: 0;
}
.main[data-section=ripassa].second-step video {
  width: 460px;
}
.main[data-section=ripassa].second-step .main-alert {
  bottom: 0;
}
.main[data-section=ripassa].second-step .second-step-btn {
  opacity: 0;
}
/* PROVA */
.main[data-section=prova] .main-title {
  margin: 10px 0 40px;
}
.main[data-section=prova] .progress-bar {
  display: flex;
  margin: 25px 0 0;
}
.main[data-section=prova] .progress-bar .progress-step {
  position: relative;
}
.main[data-section=prova] .progress-bar .progress-step span {
  position: relative;
  z-index: 1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background-color: #F6CDBB;
  margin-right: 80px;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 0.5em;
}
.main[data-section=prova] .progress-bar .progress-step.progress-selected span {
  background-color: #E98354;
}
.main[data-section=prova] .progress-bar .progress-step.progress-selected:after {
  width: 42px !important;
}
.main[data-section=prova] .progress-bar .progress-step.progress-completed span {
  background-color: #E98354;
}
.main[data-section=prova] .progress-bar .progress-step.progress-completed:after {
  width: 85px !important;
}
.main[data-section=prova] .progress-bar .progress-step:last-child span {
  height: 45px;
  width: 45px;
  top: -8px;
  background-color: #F2C231;
}
.main[data-section=prova] .progress-bar .progress-step:last-child span img {
  height: 25px;
}
.main[data-section=prova] .progress-bar .progress-step:not(:last-child):before {
  height: 10px;
  width: 85px;
  position: absolute;
  top: 9px;
  content: '';
  background-color: #F6CDBB;
  left: 27px;
}
.main[data-section=prova] .progress-bar .progress-step:not(:last-child):after {
  height: 10px;
  width: 0;
  position: absolute;
  top: 9px;
  content: '';
  background-color: #E98354;
  left: 27px;
}
.main[data-section=prova] .option-selected {
  border-color: #2A4E66;
}
.main[data-section=prova] .option-selected .btn-big {
  border-color: #2A4E66;
}
.main[data-section=prova] .exercise-container {
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main[data-section=prova] .exercise-container.exercise-completed {
  pointer-events: none;
}
.main[data-section=prova] .exercise-container .exercise-option {
  margin: 0 0 15px 0;
  width: 100%;
  position: relative;
}
.main[data-section=prova] .exercise-container .exercise-option em {
  color: #2A4E66;
  font-weight: normal;
  font-style: normal;
}
.main[data-section=prova] .exercise-container .exercise-option:before {
  content: '';
  height: 100%;
  width: 80px;
  position: absolute;
  left: -120px;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.main[data-section=prova] .exercise-container .exercise-option.option-correct {
  border-color: #58BF4E;
}
.main[data-section=prova] .exercise-container .exercise-option.option-correct .option-selected {
  border-color: #58BF4E;
}
.main[data-section=prova] .exercise-container .exercise-option.option-correct select {
  color: #58BF4E;
}
.main[data-section=prova] .exercise-container .exercise-option.option-correct:before {
  background-image: url(../img/happy-small.svg);
  animation: happy 0.9s both;
}
.main[data-section=prova] .exercise-container .exercise-option.option-wrong {
  border-color: #E5543E;
}
.main[data-section=prova] .exercise-container .exercise-option.option-wrong.btn-big em {
  color: #E5543E;
  font-weight: bold;
}
.main[data-section=prova] .exercise-container .exercise-option.option-wrong .option-selected {
  border-color: #E5543E;
}
.main[data-section=prova] .exercise-container .exercise-option.option-wrong select {
  color: #E5543E;
}
.main[data-section=prova] .exercise-container .exercise-option.option-wrong:before {
  background-image: url(../img/sad-small.svg);
  animation: sad 0.8s both;
}
.main[data-section=prova] .exercise-container[data-type='choice'] .btn-big {
  font-size: 1rem;
}
.main[data-section=prova] .exercise-container[data-type='choice'] .exercise-option-feedback {
  margin: 0 30px 40px 80px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
}
.main[data-section=prova] .exercise-container[data-type='choice'] .exercise-option-feedback.visible {
  opacity: 1;
}
.main[data-section=prova] .exercise-container[data-type='choice'] .exercise-option-feedback em {
  color: #58BF4E;
  font-weight: inherit;
  font-style: normal;
}
.main[data-section=prova] .exercise-container[data-type='choice'] .exercise-option-feedback:before {
  content: '';
  width: 35px;
  height: 35px;
  background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;'><g><path d='M4.753,12l14.494,0' style='fill:none;fill-rule:nonzero;stroke:%2358bf4e;stroke-width:2.15px;'/><path d='M13.462,17.225l5.785,-5.225l-5.785,-5.225' style='fill:none;fill-rule:nonzero;stroke:%2358bf4e;stroke-width:2.15px;'/></g></svg>");
  left: -50px;
  top: 0;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 45px;
  pointer-events: none;
  background-position: center;
}
.main[data-section=prova] .exercise-container[data-type='choices'] .exercise-option {
  padding: 12px 40px;
  font-size: 1rem;
  justify-content: center;
}
.main[data-section=prova] .exercise-container[data-type='true-false'] .exercise-option {
  margin: 0 0 20px 0;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main[data-section=prova] .exercise-container[data-type='true-false'] .exercise-option:before {
  left: inherit;
  width: 45px;
  right: -65px;
}
.main[data-section=prova] .exercise-container[data-type='true-false'] .exercise-option .exercise-option-desc {
  flex-grow: 1;
  margin-right: 60px;
  font-size: 1.2rem;
  max-width: 860px;
}
.main[data-section=prova] .exercise-container[data-type='true-false'] .exercise-option .exercise-option-btn {
  border-radius: 4px;
  width: 45px;
  padding: 0;
  height: 45px;
  font-weight: bold;
  font-size: 1rem;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] {
  width: 100%;
  align-items: flex-start;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] .exercise-option {
  margin: 0 0 10px 0;
  position: relative;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  width: auto;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] .exercise-option:before {
  right: -100px;
  left: auto;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] .exercise-option .option-desc {
  margin-right: 0;
  font-size: 1rem;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] .exercise-option .select {
  position: relative;
  border-radius: 30px;
  background-color: #fff;
  cursor: pointer;
  padding: 0 0 0 0;
  line-height: 1rem;
  display: inline-flex;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] .exercise-option .select:after {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23E98354' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  right: 10px;
  top: 5px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 40px;
  pointer-events: none;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] .exercise-option .select select {
  outline: 0;
  border: none;
  padding: 10px 60px 10px 20px;
  font-family: inherit;
  background-color: transparent;
  font-size: 1rem;
  font-weight: bold;
  appearance: none;
  cursor: inherit;
  z-index: 1;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] .exercise-option span + .select {
  margin-left: 5px;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] .exercise-option .select + span {
  margin-left: 5px;
}
.main[data-section=prova] .exercise-container[data-type='dropdown'] .exercise-option .select:last-child {
  margin-left: 10px;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] {
  width: 100%;
  align-items: flex-start;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option {
  margin: 0;
  position: relative;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  width: auto;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .option-desc {
  margin-right: 0;
  font-size: 1.2rem;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select {
  position: relative;
  border-radius: 30px;
  background-color: #fff;
  cursor: pointer;
  padding: 0 0 0 0;
  line-height: 1.2rem;
  display: inline-flex;
  margin: 0 10px 20px 10px;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select:after {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23E98354' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  right: 10px;
  top: 5px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 40px;
  pointer-events: none;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select select {
  outline: 0;
  border: none;
  padding: 10px 60px 10px 20px;
  font-family: inherit;
  background-color: transparent;
  font-size: 1rem;
  font-weight: bold;
  appearance: none;
  cursor: inherit;
  z-index: 1;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-correct:before,
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-wrong:before {
  content: '';
  height: 100%;
  width: 30px;
  position: absolute;
  right: -15px;
  top: -22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-correct {
  color: #58BF4E;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-correct select {
  color: #58BF4E;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-correct .option-selected {
  border-color: #58BF4E;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-correct:before {
  background-image: url(../img/happy-small.svg);
  animation: happy 0.9s both;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-wrong {
  color: #E5543E;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-wrong.btn-big em {
  color: #E5543E;
  font-weight: bold;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-wrong select {
  color: #E5543E;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-wrong .option-selected {
  border-color: #E5543E;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select.select-wrong:before {
  background-image: url(../img/sad-small.svg);
  animation: sad 0.8s both;
}
.main[data-section=prova] .exercise-container[data-type='dropdown-sentence'] .exercise-option .select:last-child {
  margin-left: 10px;
}
.main[data-section=prova] .exercise-container[data-type='buttons'] {
  flex-direction: row;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  width: 80%;
  height: 360px;
}
.main[data-section=prova] .exercise-container[data-type='buttons'] .exercise-option {
  margin-bottom: 40px;
  width: auto;
  font-size: 1.2rem;
}
.main[data-section=prova] .exercise-container[data-type='buttons'] .exercise-option:before {
  width: 50px;
  right: -20px;
  top: -33px;
  left: inherit;
}
.main[data-section=prova] .exercise-container[data-type='buttons'] .exercise-option + .exercise-option {
  margin-left: 40px;
}
/* AWARD */
.main[data-section=award] .main-title {
  color: #F2C231;
  font-size: 2rem;
}
.main[data-section=award] .award-img {
  width: 350px;
  margin-bottom: 40px;
}
.main[data-section=award] .award-img #stars > * {
  transform-origin: center;
  animation: bounceIn 0.9s 1s both;
}
.main[data-section=award] .award-img #cup {
  transform-origin: center;
  animation: tada 1s both;
}
.main[data-section=award] .award-img #bkg {
  transform-origin: center;
  animation: zoomIn 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}
.main[data-section=award] .award-img #ground {
  transform-origin: center;
  animation: fade-in-top 0.6s 0.6s both;
}
@keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.main[data-section=award] .award-desc {
  font-size: 1.4rem;
  font-weight: bold;
}
.main[data-section=award] button.award-cta {
  margin-top: 25px;
}
/* ANIMATION */
.delay-03 {
  animation-delay: 0.3s !important;
}
@keyframes scaleImg {
  0% {
    height: 440px;
  }
  100% {
    height: 270px;
  }
}
@keyframes alertFadeIn {
  0% {
    bottom: -265px;
  }
  100% {
    bottom: 0;
  }
}
.fade-in-top {
  animation: fade-in-top 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}
@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-left {
  animation: fade-in-left 0.6s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.blink {
  box-shadow: 0 0 0 0 #2A4E66;
  animation: blink 3s infinite cubic-bezier(0.66, 0, 0, 1);
}
@keyframes blink {
  to {
    box-shadow: 0 0 0 10px rgba(42, 78, 102, 0);
  }
}
@keyframes sad {
  0%,
  100% {
    transform: translateX(0);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes happy {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes leaf-left {
  0% {
    transform: rotateZ(3deg) translateZ(-1px);
  }
  25% {
    transform: rotateZ(-4deg) translateZ(-1px);
  }
  50% {
    transform: rotateZ(2deg) translateZ(-1px);
  }
  75% {
    transform: rotateZ(-6deg) translateZ(-1px);
  }
  100% {
    transform: rotateZ(3deg) translateZ(-1px);
  }
}
@keyframes leaf-right {
  0% {
    transform: rotateZ(0deg) translateZ(-1px);
  }
  25% {
    transform: rotateZ(-3deg) translateZ(-1px);
  }
  50% {
    transform: rotateZ(3deg) translateZ(-1px);
  }
  75% {
    transform: rotateZ(-1deg) translateZ(-1px);
  }
  100% {
    transform: rotateZ(0deg) translateZ(-1px);
  }
}
@keyframes smoke {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}
