html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="text"],
input[type="email"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

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

body {
  line-height: 1;
  min-height: var(--viewport-height);
  min-width: 320px;
  overflow-x: hidden;
  word-wrap: break-word;
  background-color: #ffffff;
}

:root {
  --background-height: 100vh;
  --site-language-alignment: left;
  --site-language-direction: ltr;
  --site-language-flex-alignment: flex-start;
  --site-language-indent-left: 1;
  --site-language-indent-right: 0;
  --viewport-height: 100vh;
}

html {
  font-size: 18pt;
}

u {
  text-decoration: underline;
}

strong {
  color: inherit;
  font-weight: bolder;
}

em {
  font-style: italic;
}

code {
  background-color: rgba(144, 144, 144, 0.25);
  border-radius: 0.25em;
  font-family: "Lucida Console", "Courier New", monospace;
  font-size: 0.9em;
  font-weight: normal;
  letter-spacing: 0;
  margin: 0 0.25em;
  padding: 0.25em 0.5em;
  text-indent: 0;
}

mark {
  background-color: rgba(144, 144, 144, 0.25);
}

spoiler-text {
  -webkit-text-stroke: 0;
  background-color: rgba(32, 32, 32, 0.75);
  text-shadow: none;
  text-stroke: 0;
  color: transparent;
  cursor: pointer;
  transition: color 0.1s ease-in-out;
}

spoiler-text.active {
  color: #ffffff;
  cursor: text;
}

s {
  text-decoration: line-through;
}

sub {
  font-size: smaller;
  vertical-align: sub;
}

sup {
  font-size: smaller;
  vertical-align: super;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.25s ease;
}

a[onclick]:not([href]) {
  cursor: pointer;
}

deferred-script {
  display: none;
}

#wrapper {
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: var(--viewport-height);
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 2.25rem 0;
}

#main {
  --alignment: center;
  --flex-alignment: center;
  --indent-left: 1;
  --indent-right: 1;
  --border-radius-tl: 0;
  --border-radius-tr: 0;
  --border-radius-br: 0;
  --border-radius-bl: 0;
  align-items: center;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: center;
  max-width: 100%;
  position: relative;
  text-align: var(--alignment);
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.922);
  transition: opacity 0.75s ease 0s, transform 0.75s ease 0s;
}

#main>.inner {
  --padding-horizontal: 2rem;
  --padding-vertical: 0rem;
  --spacing: 1.25rem;
  --width: 44rem;
  border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
  max-width: 100%;
  position: relative;
  width: var(--width);
  z-index: 1;
  padding: var(--padding-vertical) var(--padding-horizontal);
}

#main>.inner>header {
  margin-bottom: var(--spacing);
}

#main>.inner>footer {
  margin-top: var(--spacing);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#main>.inner>*>* {
  margin-top: var(--spacing);
  margin-bottom: var(--spacing);
}

#main>.inner>*> :first-child {
  margin-top: 0 !important;
}

#main>.inner>*> :last-child {
  margin-bottom: 0 !important;
}

#main>.inner>.full {
  margin-left: calc(var(--padding-horizontal) * -1);
  max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
  width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

#main>.inner>.full:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  margin-top: calc(var(--padding-vertical) * -1) !important;
}

#main>.inner>.full:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

#main>.inner>.full.screen {
  border-radius: 0 !important;
  max-width: 100vw;
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  right: auto;
}

#main>.inner>*>.full {
  margin-left: calc(-3rem);
  max-width: calc(100% + 6rem + 0.4725px);
  width: calc(100% + 6rem + 0.4725px);
}

#main>.inner>*>.full.screen {
  border-radius: 0 !important;
  max-width: 100vw;
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  right: auto;
}

#main>.inner>footer>.full:last-child {
  margin-bottom: 0rem !important;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#main>.inner>.active>.full:first-child {
  margin-top: 0rem !important;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

#main>.inner>.active {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

body.is-loading #main {
  opacity: 0;
  transform: translateY(1.6875rem);
}

body.is-instant #main,
body.is-instant #main>.inner>*,
body.is-instant #main>.inner>section>* {
  transition: none !important;
}

body.is-instant:after {
  display: none !important;
  transition: none !important;
}

.image {
  display: block;
  line-height: 0;
  max-width: 100%;
  position: relative;
}

.image .frame {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  vertical-align: top;
  width: 100%;
}

.image .frame img {
  border-radius: 0 !important;
  max-width: 100%;
  vertical-align: top;
  width: inherit;
}

.image.full .frame {
  display: block;
}

.image.full:first-child .frame {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.image.full:last-child .frame {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

#image02 .frame {
  width: 30.875rem;
  height: 12.125rem;
  transition: none;
}

#image02 img {
  height: 100% !important;
  object-fit: cover;
  object-position: top;
  width: 100% !important;
}

#image02 .frame img {
  transition: none;
}

#image01 .frame {
  width: 30.875rem;
  height: 12.125rem;
  transition: none;
}

#image01 img {
  height: 100% !important;
  object-fit: cover;
  object-position: top;
  width: 100% !important;
}

#image01 .frame img {
  transition: none;
}

.buttons {
  cursor: default;
  display: flex;
  justify-content: var(--flex-alignment);
  letter-spacing: 0;
  padding: 0;
}

.buttons li {
  max-width: 100%;
}

.buttons li a {
  align-items: center;
  justify-content: center;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
}

#buttons01 {
  gap: 1.25rem;
  flex-direction: row;
  flex-wrap: wrap;
}

#buttons01:not(:first-child) {
  margin-top: 1.875rem !important;
}

#buttons01:not(:first-child) {
  margin-top: 1.875rem !important;
}

#buttons01:not(:last-child) {
  margin-bottom: 1.875rem !important;
}

#buttons01 li a {
  display: inline-block;
  width: auto;
  height: 1.875rem;
  line-height: calc(1.875rem - 2px);
  padding: 0 0.9375rem;
  vertical-align: middle;
  text-transform: uppercase;
  font-family: "Karla", sans-serif;
  letter-spacing: 0.275rem;
  padding-left: calc(0.275rem + 0.9375rem);
  font-size: 0.5em;
  font-weight: 400;
  border-radius: 0.125rem;
  direction: var(--site-language-direction);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons01 .button {
  color: #000000;
  border: solid 1px rgba(0, 0, 0, 0.149);
}

#buttons01 .button:hover {
  border-color: #f6b0cf !important;
  color: #f6b0cf !important;
}

#buttons04 {
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
}

#buttons04:not(:first-child) {
  margin-top: 1.75rem !important;
}

#buttons04:not(:last-child) {
  margin-bottom: 1.75rem !important;
}

#buttons04 li a {
  display: inline-block;
  width: auto;
  height: 1.875rem;
  line-height: 1.875rem;
  padding: 0 0.9375rem;
  vertical-align: middle;
  text-transform: uppercase;
  font-family: "Karla", sans-serif;
  letter-spacing: 0.275rem;
  padding-left: calc(0.275rem + 0.9375rem);
  font-size: 0.5em;
  font-weight: 400;
  border-radius: 0.125rem;
  direction: var(--site-language-direction);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons04 .button {
  background-color: #c7c7c7;
  color: #080808;
}

#buttons04 .button:hover {
  background-color: #7a7676 !important;
}

#buttons03 {
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
}

#buttons03:not(:first-child) {
  margin-top: 1.75rem !important;
}

#buttons03:not(:last-child) {
  margin-bottom: 1.75rem !important;
}

#buttons03 li a {
  display: inline-block;
  width: auto;
  height: 1.875rem;
  line-height: 1.875rem;
  padding: 0 0.9375rem;
  vertical-align: middle;
  text-transform: uppercase;
  font-family: "Karla", sans-serif;
  letter-spacing: 0.275rem;
  padding-left: calc(0.275rem + 0.9375rem);
  font-size: 0.5em;
  font-weight: 400;
  border-radius: 0.125rem;
  direction: var(--site-language-direction);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons03 .button {
  background-color: #383838;
  color: #ffffff;
}

#buttons03 .button:hover {
  background-color: #7a7676 !important;
}

#buttons05 {
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
}

#buttons05:not(:first-child) {
  margin-top: 1.75rem !important;
}

#buttons05:not(:last-child) {
  margin-bottom: 1.75rem !important;
}

#buttons05 li a {
  display: inline-block;
  width: auto;
  height: 1.875rem;
  line-height: 1.875rem;
  padding: 0 0.9375rem;
  vertical-align: middle;
  text-transform: uppercase;
  font-family: "Karla", sans-serif;
  letter-spacing: 0.275rem;
  padding-left: calc(0.275rem + 0.9375rem);
  font-size: 0.5em;
  font-weight: 400;
  border-radius: 0.125rem;
  direction: var(--site-language-direction);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons05 .button {
  background-color: #383838;
  color: #ffffff;
}

#buttons05 .button:hover {
  background-color: #7a7676 !important;
}

#buttons06 {
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
}

#buttons06:not(:first-child) {
  margin-top: 1.75rem !important;
}

#buttons06:not(:last-child) {
  margin-bottom: 1.75rem !important;
}

#buttons06 li a {
  display: inline-block;
  width: auto;
  height: 1.875rem;
  line-height: 1.875rem;
  padding: 0 0.9375rem;
  vertical-align: middle;
  text-transform: uppercase;
  font-family: "Karla", sans-serif;
  letter-spacing: 0.275rem;
  padding-left: calc(0.275rem + 0.9375rem);
  font-size: 0.5em;
  font-weight: 400;
  border-radius: 0.125rem;
  direction: var(--site-language-direction);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons06 .button {
  background-color: #383838;
  color: #ffffff;
}

#buttons06 .button:hover {
  background-color: #7a7676 !important;
}

#buttons02 {
  gap: 1rem;
  flex-direction: row;
  flex-wrap: wrap;
}

#buttons02:not(:first-child) {
  margin-top: 1.75rem !important;
}

#buttons02:not(:last-child) {
  margin-bottom: 1.75rem !important;
}

#buttons02 li a {
  display: inline-block;
  width: auto;
  height: 1.875rem;
  line-height: 1.875rem;
  padding: 0 0.9375rem;
  vertical-align: middle;
  text-transform: uppercase;
  font-family: "Karla", sans-serif;
  letter-spacing: 0.275rem;
  padding-left: calc(0.275rem + 0.9375rem);
  font-size: 0.5em;
  font-weight: 400;
  border-radius: 0.125rem;
  direction: var(--site-language-direction);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#buttons02 .button {
  background-color: #383838;
  color: #ffffff;
}

#buttons02 .button:hover {
  background-color: #7a7676 !important;
}

hr {
  align-items: center;
  border: 0;
  display: flex;
  justify-content: var(--flex-alignment);
  min-height: 1rem;
  padding: 0;
  position: relative;
  width: 100%;
}

hr:before {
  content: "";
}

#divider01:before {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.149);
  height: 1px;
  border-radius: 0px;
}

#divider03:not(:first-child) {
  margin-top: 2.5rem !important;
}

#divider03:not(:last-child) {
  margin-bottom: 2.5rem !important;
}

#divider03:before {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.149);
  height: 2px;
  border-radius: 0px;
}

#divider05:not(:first-child) {
  margin-top: 2.5rem !important;
}

#divider05:not(:last-child) {
  margin-bottom: 2.5rem !important;
}

#divider05:before {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.149);
  height: 2px;
  border-radius: 0px;
}

#divider02:not(:first-child) {
  margin-top: 2.5rem !important;
}

#divider02:not(:last-child) {
  margin-bottom: 2.5rem !important;
}

#divider02:before {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.149);
  height: 2px;
  border-radius: 0px;
}

#divider04:not(:first-child) {
  margin-top: 2.5rem !important;
}

#divider04:not(:last-child) {
  margin-bottom: 2.5rem !important;
}

#divider04:before {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.149);
  height: 2px;
  border-radius: 0px;
}

#divider07:not(:first-child) {
  margin-top: 8rem !important;
}

#divider07:not(:last-child) {
  margin-bottom: 8rem !important;
}

#divider07:before {
  width: 100%;
  background-color: #ffffff;
  height: 5px;
  border-radius: 0px;
}

#divider08:not(:first-child) {
  margin-top: 8rem !important;
}

#divider08:not(:last-child) {
  margin-bottom: 8rem !important;
}

#divider08:before {
  width: 100%;
  background-color: #ffffff;
  height: 5px;
  border-radius: 0px;
}

#divider06:not(:first-child) {
  margin-top: 8rem !important;
}

#divider06:not(:last-child) {
  margin-bottom: 8rem !important;
}

#divider06:before {
  width: 100%;
  background-color: #ffffff;
  height: 5px;
  border-radius: 0px;
}

#footer {
  margin-top: 1.25rem !important;
}

h1,
h2,
h3,
p {
  direction: var(--site-language-direction);
  position: relative;
}

h1 span.p,
h2 span.p,
h3 span.p,
p span.p {
  display: block;
  position: relative;
}

h1 span[style],
h2 span[style],
h3 span[style],
p span[style],
h1 strong,
h2 strong,
h3 strong,
p strong,
h1 a,
h2 a,
h3 a,
p a,
h1 code,
h2 code,
h3 code,
p code,
h1 mark,
h2 mark,
h3 mark,
p mark,
h1 spoiler-text,
h2 spoiler-text,
h3 spoiler-text,
p spoiler-text {
  -webkit-text-fill-color: currentcolor;
}

#text05 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.375rem;
  width: calc(100% + 0.375rem);
  font-size: 1em;
  line-height: 1.25;
  font-weight: 400;
}

.fraz {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.75em;
  line-height: 1.25;
  font-weight: 400;
}

.fraz-text {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  width: calc(100% + 0.375rem);
  font-size: 0.7rem;
  line-height: 1.5;
  font-weight: 400;
}

.fraz-sposiamo {
  margin: 0 !important;
  margin-top: 42px !important;
  width: 300px;
}

.fraz-title {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 400;
}

.fraz-heart {
  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px !important;
}

.fraz-date {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 100;
}

#text05 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text05 a:hover {
  text-decoration: none;
}

#text05 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text14 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.75em;
  line-height: 1.375;
  font-weight: 400;
}

#text14 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text14 a:hover {
  text-decoration: none;
}

#text14 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text08 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.75em;
  line-height: 1.375;
  font-weight: 400;
}

#text08 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text08 a:hover {
  text-decoration: none;
}

#text08 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text06 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.375rem;
  width: calc(100% + 0.375rem);
  font-size: 1em;
  line-height: 1.5;
  font-weight: 400;
}

#text06 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text06 a:hover {
  text-decoration: none;
}

#text06 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text13 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.75em;
  line-height: 1.25;
  font-weight: 400;
}

#text13 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text13 a:hover {
  text-decoration: none;
}

#text13 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text09 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.375rem;
  width: calc(100% + 0.375rem);
  font-size: 1em;
  line-height: 1.5;
  font-weight: 400;
}

#text09 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text09 a:hover {
  text-decoration: none;
}

#text09 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#form-btn-no {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.65em;
  font-weight: 400;
}

#form-btn-si {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.65em;
  line-height: 1.25;
  font-weight: 400;
}

#text01 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.75em;
  line-height: 1.25;
  font-weight: 400;
}

#text01 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text01 a:hover {
  text-decoration: none;
}

#text01 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text07 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.2rem;
  width: calc(100% + 0.375rem);
  font-size: 1em;
  line-height: 1.5;
  font-weight: 400;
}

#text07 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text07 a:hover {
  text-decoration: none;
}

#text07 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text02 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.625em;
  line-height: 1.25;
  font-weight: 400;
}

#text02 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text02 a:hover {
  text-decoration: none;
}

#text02 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text10 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.2rem;
  width: calc(100% + 0.375rem);
  font-size: 1em;
  line-height: 1.5;
  font-weight: 400;
}

#text10 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text10 a:hover {
  text-decoration: none;
}

#text10 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text11 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.75em;
  line-height: 1.25;
  font-weight: 400;
}

#text11 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text11 a:hover {
  text-decoration: none;
}

#text11 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text04 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.375rem;
  width: calc(100% + 0.375rem);
  font-size: 1em;
  line-height: 1.5;
  font-weight: 400;
}

#text04 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text04 a:hover {
  text-decoration: none;
}

#text04 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text12 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.75em;
  line-height: 1.25;
  font-weight: 400;
}

#text12 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text12 a:hover {
  text-decoration: none;
}

#text12 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

#text03 {
  color: rgba(0, 0, 0, 0.69);
  font-family: "Karla", sans-serif;
  letter-spacing: 0.075rem;
  width: calc(100% + 0.075rem);
  font-size: 0.75em;
  line-height: 1.25;
  font-weight: 400;
}

#text03 a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#text03 a:hover {
  text-decoration: none;
}

#text03 span.p:nth-child(n + 2) {
  margin-top: 1rem;
}

.timer {
  cursor: default;
  line-height: 1;
}

.timer ul {
  display: inline-flex;
  flex-direction: row;
  list-style: none;
  max-width: 100%;
}

.timer ul li {
  position: relative;
  z-index: 1;
}

.timer ul li.delimiter {
  flex: 0 1 auto;
}

.timer ul li.delimiter .symbol {
  display: block;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.timer ul li.number {
  flex: 1;
  min-width: 2rem;
}

.timer ul li.number .item {
  position: relative;
}

.timer ul li.number .item .digit {
  display: block;
  position: relative;
  white-space: nowrap;
}

.timer ul li.number .item .digit .component {
  display: inline-block;
  width: 50%;
}

.timer ul li.number .item .digit.count2 .component {
  width: 50%;
}

.timer ul li.number .item .digit.count3 .component {
  width: 33.3333%;
}

.timer ul li.number .item .digit.count4 .component {
  width: 25%;
}

.timer ul li.number .item .digit.count5 .component {
  width: 20%;
}

.timer ul li.number .item .label {
  display: block;
  white-space: nowrap;
}

.timer ul li.number .item .label>* {
  display: inline-block;
}

.timer ul li.number .item .label .full {
  width: 5em;
}

.timer ul li.number .item .label .abbreviated {
  width: 3em;
}

.timer ul li.number .item .label .initialed {
  width: 1em;
}

#timer01 ul {
  width: 19rem;
}

#timer01 ul li.delimiter {
  width: 2rem;
  min-width: 1rem;
}

#timer01 ul li.delimiter .symbol {
  color: rgba(0, 0, 0, 0.149);
}

#timer01 ul li.number .item .digit {
  font-family: "Karla", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.69);
  line-height: 1em;
  text-align: inherit;
}

#timer01 ul li.number .item .label>* {
  margin-top: calc(0.5rem + 0.25em);
  letter-spacing: 0.075rem;
}

#timer01 ul li.number .item .label {
  font-family: "Karla", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  width: calc(100% + 0.075rem);
  color: rgba(0, 0, 0, 0.69);
}

#timer01 ul li.number .item .label .full {
  width: calc(5em + 0.45rem);
}

#timer01 ul li.number .item .label .abbreviated {
  width: calc(3em + 0.3rem);
}

#timer01 ul li.number .item .label .initialed {
  width: calc(2em + 0.225rem);
}

.links {
  display: flex;
  justify-content: var(--flex-alignment);
  letter-spacing: 0;
  line-height: 1.5;
  padding: 0;
}

.links li {
  position: relative;
}

.links li a {
  direction: var(--site-language-direction);
  display: block;
}

#links01 {
  gap: 0rem;
  flex-direction: row;
  flex-wrap: wrap;
  text-transform: lowercase;
  font-family: "Karla", sans-serif;
  letter-spacing: 0.175rem;
  margin-right: -0.175rem;
  font-size: 0.5em;
  font-weight: 400;
}

#links01:not(:first-child) {
  margin-top: 1.25rem !important;
}

#links01:not(:last-child) {
  margin-bottom: 1.25rem !important;
}

#links01 li a {
  color: rgba(0, 0, 0, 0.149);
  text-decoration: underline;
}

#links01 li a:hover {
  text-decoration: none;
}

#links01 .n01 a {
  color: rgba(0, 0, 0, 0.69);
}

.icc-credits {
  display: block;
  opacity: 1 !important;
  position: relative;
  transition-delay: 0s !important;
}

.icc-credits span {
  border-radius: 24px;
  cursor: pointer;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  text-decoration: none;
  width: auto;
}

.icc-credits span a {
  display: inline-block;
  padding: 0.5em 0.375em;
  position: relative;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  z-index: 1;
}

.icc-credits span a:before {
  content: "( ";
  opacity: 1;
  transition: opacity 0.25s ease;
}

.icc-credits span a:after {
  content: " )";
  opacity: 1;
  transition: opacity 0.25s ease;
}

.icc-credits span::after {
  background-image: linear-gradient(30deg, #a464a1 15%, #3b5dad 85%);
  border-radius: inherit;
  box-shadow: 0 0.25em 1.25em 0 rgba(0, 0, 0, 0.25);
  content: "";
  display: block;
  height: calc(100% + 2px);
  left: -1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: -1px;
  transition: opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  width: calc(100% + 2px);
}

.icc-credits span:hover {
  text-transform: none !important;
}

.icc-credits span:hover a {
  color: #ffffff !important;
  transform: scale(1.1) translateY(-0.05rem);
}

.icc-credits span:hover a:before {
  opacity: 0;
}

.icc-credits span:hover a:after {
  opacity: 0;
}

.icc-credits span:hover::after {
  opacity: 1;
  transform: scale(1.1) translateY(-0.05rem);
}

#credits span {
  background-color: rgba(80, 80, 80, 0.5);
  color: rgba(224, 224, 224, 0.75);
}

#credits span a:before {
  opacity: 0;
}

#credits span a:after {
  opacity: 0;
}

#main>.inner>footer> :last-child {
  margin-bottom: 1.25rem !important;
}

@media (max-width: 1920px) {}

.pulse2 {
  animation-name: pulse2;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes pulse2 {
  0% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

.fa-heart {
  color: #f6b0cf;
  font-size: 18px;
  margin: 0 2px;
}

.fraz-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.fraz-form {
  padding-top: 12px;
  display: flex;
  justify-content: space-around;
  gap: 12px;
}

@media (max-width: 570px) {
  .fraz-date {
    color: rgba(0, 0, 0, 0.69);
    font-family: "Karla", sans-serif;
    letter-spacing: 0.075rem;
    font-size: 0.75em;
    line-height: 1.25;
    font-weight: 100;
  }
}

@media (max-width: 478px) {
  .fraz-heart {
    display: flex;
  }

  #buttons01:not(:first-child) {
    margin-top: 0px !important;
  }

  #buttons01:not(:first-child) {
    margin-top: 0px !important;
  }

  #buttons01:not(:last-child) {
    margin-bottom: 0px !important;
  }
}

@media (max-width: 800px) {
  .fraz-sposiamo {
    width: 150px;
    margin: 0px !important;
  }

  .fraz-flex {
    flex-direction: column;
  }

  .fraz-form {
    flex-direction: column-reverse;
  }

  #buttons01 {
    gap: 0.2rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}


.rsvp .rsvp-form .rsvp-btn {
  padding: 8px 0;
  border-radius: 3px;
  width: 100%;
  font-size: 33px
}

.rsvp .rsvp-form .form-input-group {
  width: 100%;
  height: 55px;
  margin: 0 auto 10px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: solid 1px #e6e9ea;
  text-align: left;
  position: relative;
}

.rsvp .rsvp-form .form-input-group i {
  color: #d3aeaf;
  font-size: 14px
}

.rsvp .rsvp-form .form-input-group i:after {
  content: "";
  height: 30px;
  width: 1px;
  border-right: solid 1px #e6e9ea;
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translateY(-50%)
}

.rsvp .rsvp-form .form-input-group i.fa-user,
.rsvp .rsvp-form .form-input-group i.fa-users,
.rsvp .rsvp-form .form-input-group i.fa-cutlery,
.rsvp .rsvp-form .form-input-group i.fa-cubes,
.rsvp .rsvp-form .form-input-group i.fa-envelope,
.rsvp .rsvp-form .form-input-group .fa-key {
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 8px
}

.rsvp .rsvp-form .form-input-group input {
  padding-left: 48px;
  width: 100%;
  height: 100%;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border: none;
}

.rsvp .rsvp-form .form-input-group input::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 15px;
}

.rsvp .rsvp-form .form-input-group input::-webkit-input-placeholder {
  color: #bcc1c3
}

.rsvp .rsvp-form .form-input-group input:-moz-placeholder {
  color: #bcc1c3
}

.rsvp .rsvp-form .form-input-group input::-moz-placeholder {
  color: #bcc1c3
}

.rsvp .rsvp-form .form-input-group input:-ms-input-placeholder {
  color: #bcc1c3
}

footer .content {
  border-top: 1px solid #e6e9ea;
  padding-bottom: 20px
}

footer .to-top-wrapper {
  font-size: 30px;
  display: block;
  cursor: pointer;
  margin: -25px auto 50px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid #e6e9ea;
  background: #fff
}

.btn-fill {
  color: #fff;
  border: solid 2px #d3aeaf;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #d3aeaf;
}

.btn-fill:hover,
.btn-fill:focus {
  color: #fff;
  background-color: #f4c8ca;
  border-color: #f4c8ca
}

modal-open {
  overflow: hidden
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%)
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0)
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5
}

.modal-header {
  min-height: 16.43px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
  margin-top: -2px
}

.modal-title {
  margin: 0;
  line-height: 1.42857143
}

.modal-body {
  position: relative;
  padding: 15px
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
  margin-bottom: 0;
  margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
  margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
  margin-left: 0
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px
}

.alert h4 {
  margin-top: 0;
  color: inherit
}

.alert .alert-link {
  font-weight: 700
}

.alert>p,
.alert>ul {
  margin-bottom: 0
}

.alert>p+p {
  margin-top: 5px
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6
}

.alert-success hr {
  border-top-color: #c9e2b3
}

.alert-success .alert-link {
  color: #2b542c
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1
}

.alert-info hr {
  border-top-color: #a6e1ec
}

.alert-info .alert-link {
  color: #245269
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc
}

.alert-warning hr {
  border-top-color: #f7e1b5
}

.alert-warning .alert-link {
  color: #66512c
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1
}

.alert-danger hr {
  border-top-color: #e4b9c0
}

.alert-danger .alert-link {
  color: #843534
}

@media (min-width:768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
  }

  .modal-sm {
    width: 300px
  }
}

@media (min-width:992px) {
  .modal-lg {
    width: 900px
  }
}
