@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --rosso-esaote: #E31E24;
    --bianco: #FFF;
    --grigio: #e4e5e6;
    --grigio-scuro: #7A7878;
    --grigio-chiaro: #F2F3F4;
    --nero: #000;
    --testo: #555555;
    --titolo: #1a1a1a;
}


@keyframes slide-down {
    0% {
        top: -5rem;
    }

    25% {
        top: 2rem;
    }

    75% {
        top: 2rem;
    }

    100% {
        top: -5rem;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

html {
    font-size: 10px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    background: var(--bianco);
    color: var(--testo);
}

*.hidden {
    display: none !important;
}

.bold,
strong {
    font-weight: 700;
}

.material-icons {
    -webkit-user-select: none;
    user-select: none;
}

.heading {
    color: black;
    font-size: 2.5rem;
    font-weight: 700;
}

.sub-heading {
    color: black;
    font-size: 2rem;
    font-weight: 400;
}

.label {
    display: block;
    margin: 1.5rem 0;
    font-weight: 700;
    color: var(--nero);
}

.input {
    appearance: none;
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 0.2rem solid #a5a5a5;
    border-radius: 0;
    outline: none;
    background-color: #ededed;
    color: black;
    font-family: inherit;
    font-size: 1.5rem;
    resize: none;
    transition-property: border-color;
    transition-duration: 0.25s;
}

.input:focus {
    border-bottom: 0.2rem solid black;
}

.input:not(textarea, input[type="file"]) {
    height: 5rem;
}

.input::file-selector-button {
    padding: 1rem;
    margin-right: 1rem;
    border: none;
    color: white;
    background-color: black;
}

.input-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.anchor {
    color: black;
}

.error {
    color: red;
    font-weight: 700;
}

.success {
    color: green;
    font-weight: 700;
}

.txt-rosso {
    color: var(--rosso-esaote) !important;
}

.txt-bianco {
    color: var(--bianco) !important;
}

.txt-grigio-scuro {
    color: var(--grigio-scuro) !important;
}

.txt-grigio-text {
    color: var(--testo) !important;
}

.txt-nero {
    color: var(--nero) !important;
}

.bg-grigio-chiaro {
    background-color: var(--grigio-chiaro);
}

.bg-grigio-chiaro-trasparente {
    background-color: #f2f3f47a;
}


.button {
    appearance: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin: 1rem 0;
    width: max-content;
    height: max-content;
    border: none;
    background-color: black;
    color: white;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-user-select: none;
    user-select: none;
    transition-property: background-color;
    transition-duration: 0.25s;
}

.button:hover {
    background-color: black;
}

/*.button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 1rem .7rem 1rem 2rem;
    gap: 20px;
    border-radius: 200px;
    background: var(--nero);
    text-decoration: none;
    width: max-content;
    cursor: pointer;
    border: none;
}

.button span {
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3rem
}

.button img {
    width: 2.8rem;
}*/

.row {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: max-content;
}

.row-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: max-content;
}

.row-transport {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    height: max-content;
}

.row-hotel-desc {
    display: flex;
    gap: 1rem;
    height: max-content;
}

.column {
    flex: 1;
}

.container {
    box-sizing: border-box;
    width: 100rem;
    max-width: 100%;
    padding: 1rem;
    margin: 0 auto auto auto;
}

.container-130 {
    box-sizing: border-box;
    width: 130rem;
    max-width: 100%;
    padding: 1rem;
    margin: 0 auto auto auto;
}

.container-160 {
    box-sizing: border-box;
    width: 160rem;
    max-width: 100%;
    padding: 1rem;
    margin: 0 auto auto auto;
}

.navbar {
    position: fixed;
    width: 90%;
    top: 2%;
    left: 5%;
    z-index: 1;
    background-color: rgb(255, 255, 255, .75);
    border-radius: 1.8rem;
}

.navbar .row {
    justify-content: right;
}

.navbar-item {
    appearance: none;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid transparent;
    padding: 0.6rem 1.8rem;
    color: black;
    font-weight: 400;
    text-decoration: none;
    transition-property: background-color;
    transition-duration: 0.25s;
    -webkit-user-select: none;
    user-select: none;
    font-size: 1.8rem;
}

.navbar-item:hover,
.navbar-item-active {
    /*border: 1px solid var(--bianco);
    border-radius: 20rem;*/
    color: var(--rosso-esaote);
    transition-property: color;
    transition-duration: 0.5s;
}

.navbar-item-active {
    font-weight: 600;
}

.navbar-item.active .navbar-item-dropdown {
    display: block;
}

.navbar-item.active .navbar-item-heading .material-icons {
    transform: rotate(180deg);
}

.navbar-item-heading {
    appearance: none;
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-item-heading .material-icons {
    transform: rotate(0);
    transition-property: transform;
    transition-duration: 0.5s;
}

.navbar-item-dropdown {
    position: absolute;
    top: 4rem;
    left: 0;
    display: none;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 0 1rem #c9c9c9;
}

.navbar-item-dropdown .dropdown-item {
    position: relative;
    display: block;
    padding: 1rem;
    color: black;
    font-weight: 700;
    text-decoration: none;
    transition-property: background-color;
    transition-duration: 0.25s;
    -webkit-user-select: none;
    user-select: none;
}

.navbar-item-dropdown .dropdown-item:hover {
    background-color: #ededed;
}

.navbar-logo {
    display: flex;
    align-items: center;
    height: max-content;
    margin-right: auto;
    color: white;
    text-decoration: none;
}

.navbar-logo img {
    width: 90%;
}

.navbar-sticky {
    position: sticky;
    background-color: #FFF;
    z-index: 2;
    border: .2rem solid var(--grigio-chiaro);

}

.navbar-sticky .navbar-item {
    color: black;
}

.navbar-sticky .navbar-item:hover,
.navbar-sticky .navbar-item-active {
    color: var(--rosso-esaote);
}

.navbar .bt-registrati {
    margin-left: 2rem;
}

.navbar .bt-registrati span {
    font-size: 1.8rem;
}

.navbar .bt-registrati img {
    width: 3rem;
}

.logo-color {
    display: none;
    visibility: hidden;
}

.navbar-sticky .logo-color {
    display: flex;
    visibility: visible;
}

.navbar-sticky .logo-white {
    display: none;
    visibility: hidden;
}

.navbar .container {
    width: 100%;
    padding: 2rem 10rem;
}

.checkbox-list-container {
    display: flex;
    gap: 2.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox {
    position: relative;
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    border: 0.2rem solid #a5a5a5;
    background-color: #ededed;
    -webkit-user-select: none;
    user-select: none;
    transition-property: border-color;
    transition-duration: 0.25s;
}

.checkbox.active {
    border-color: black;
}

.checkbox input {
    position: absolute;
    opacity: 0;
}

.checkbox .material-icons {
    margin: auto;
    color: #ededed;
    transition-property: color;
    transition-duration: 0.25s;
}

.checkbox.active .material-icons {
    color: black;
}

.break {
    width: 75rem;
    max-width: 100%;
    margin: 2.5rem auto;
    border: none;
    border-bottom: 0.1rem solid black;
    color: black;
}

.tab {
    display: flex;
    justify-content: center;
    padding: 1rem;
    color: black;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    transition-property: background-color;
    transition-duration: 0.25s;
}

.tab:not(.tab-active):hover {
    background-color: #ededed;
}

.tab-active {
    background-color: #dbdbdb;
    font-weight: 700;
}

.table-container,
.table-container-fluid {
    overflow: auto;
}

.table {
    table-layout: fixed;
    width: 98rem;
    border-collapse: collapse;
    text-align: center;
}

.table caption {
    margin-bottom: 1rem;
    text-align: left;
}

.table th,
.table td {
    padding: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table thead tr {
    background-color: #dbdbdb;
}

.table tbody tr:nth-child(even) {
    background-color: #ededed;
}

.table tbody tr:nth-child(odd) {
    background-color: white;
}

.table a {
    display: flex;
    justify-content: center;
    color: black;
    text-decoration: none;
}

.table-container-fluid .table {
    width: 100%;
    table-layout: unset;
}

.menu-item {
    box-sizing: border-box;
    display: block;
    width: max-content;
    max-width: 100%;
    padding: .5rem 2rem;
    margin-left: auto;
    color: var(--nero);
    font-size: 2rem;
    font-weight: 400;
    text-align: right;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
}

.menu-item .material-icons {
    transform: rotate(0);
    transition-property: transform;
    transition-duration: 0.5s;
}

.menu-item-active {
    /* text-decoration: underline; */
    border: 1px solid var(--nero);
    border-radius: 20rem;
}

.menu-item-heading {
    appearance: none;
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
    color: white;
    font-family: inherit;
    font-size: 2.5rem;
    font-weight: 700;
}

.menu-item-dropdown {
    max-height: 0;
    overflow: hidden;
    border-left: 0.2rem solid white;
    transition: max-height 0.5s, visibility 0s linear 0.5s;
    visibility: hidden;
}

.menu-item.active .menu-item-dropdown {
    max-height: 25rem;
    visibility: visible;
    transition: max-height 0.5s, visibility 0s;
}

.menu-item.active .material-icons {
    transform: rotate(180deg);
}

.menu-item-dropdown .dropdown-item {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
}

#login {
    box-sizing: border-box;
    width: 50rem;
    max-width: 100%;
    padding: 3rem;
    margin: auto;
    background-color: #f2f3f4d6;
    border-radius: 2rem;
}

#login p,
#login ul {
    color: var(--nero);
}

#login ul {
    text-align: left !important;
}

#toolbar {
    background-color: black;
    color: white;
}

#user {
    font-weight: 700;
}

#logout {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: max-content;
    margin-left: auto;
    color: white;
    text-decoration: none;
}

#mobile-navbar {
    display: none;
}

.mobile-top-container {
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.mobile-navbar-logo {
    display: flex;
    align-items: center;
    height: max-content;
    margin-right: auto;
    color: white;
    text-decoration: none;
}

.mobile-navbar-logo img {
    width: 80%;
}

#open-menu {
    display: flex;
}

#menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 5;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 1rem;
    overflow: auto;
    background-color: var(--bianco);
    transition: right 0.5s, visibility 0s linear 0.5s;
    visibility: hidden;
}

#menu.active {
    right: 0;
    visibility: visible;
    transition: right 0.5s, visibility 0s;
}

#menu .bt-registrati {
    margin-left: auto;
}

#menu .bt-registrati span {
    font-size: 2rem;
}

#close-menu {
    appearance: none;
    display: flex;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    color: var(--nero);
    text-align: right;
}

#close-menu .material-icons {
    font-size: 3.5rem;
}

#snackbar-container {
    position: relative;
    width: 30rem;
    margin: 0 auto;
}

#snackbar {
    position: fixed;
    top: -5rem;
    z-index: 2;
    box-sizing: border-box;
    width: inherit;
    padding: 1rem;
    box-shadow: 0 0 1rem black;
    background-color: green;
    color: white;
    text-align: center;
    animation-name: slide-down;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

#consent-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation-name: fade-in;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

#consent {
    box-sizing: border-box;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100rem;
    max-width: 100%;
    padding: 2.5rem;
    margin: auto;
    box-shadow: 0 0 1rem black;
    background-color: white;
}

#header {
    display: block;
    width: 100%;
    margin-bottom: 2.5rem;
}

.hero {
    width: 100%;
    height: 100vh;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /*padding-top: 25vh;*/
    position: relative;
}

.hero-50 {
    width: 100%;
    height: 35vh;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15vh;
    position: relative;
}

.bg-home {
    background: url('../img/backgrounds/home-new.jpg');
    background-size: cover;
    background-position: center center;
}

.bg-agenda {
    background: url('../img/backgrounds/agenda.jpg');
    background-size: cover;
    background-position: center center;
}

.bg-location {
    background: url('../img/backgrounds/location.jpg');
    background-size: cover;
    background-position: center center;
}

.bg-event-location {
    background: url('../img/backgrounds/event-location.jpg');
    background-size: cover;
    background-position: top center;
}

.bg-hotel {
    background: url('../img/backgrounds/hotel.png');
    background-size: cover;
    background-position: center center;
}

.bg-festival-cannes {
    background: url('../img/backgrounds/festival-cannes.jpg');
    background-size: cover;
    background-position: top center;
    padding: 6rem 6rem 50rem 6rem;
    margin-bottom: 1rem;
}

.bg-carnevale-venezia {
    background: url('../img/backgrounds/carnevale-venezia.jpg');
    background-size: cover;
    background-position: top center;
    /* padding: 6rem 6rem 50rem 6rem; */
    margin-bottom: 1rem;
    min-height: 90rem;
    display: flex;
    align-items: center;
}

.bg-carnevale-venezia .container {
    margin: auto !important;
}

.bg-gala-dinner {
    background: url('../img/backgrounds/gala-dinner.jpg');
    background-size: cover;
    background-position: top center;
    padding: 6rem 6rem 50rem 6rem;
    margin-bottom: 1rem;
}

.bg-social-dinner {
    background: url('../img/backgrounds/social-dinner.jpg');
    background-size: cover;
    background-position: top center;
    padding: 6rem 6rem 50rem 6rem;
    margin-bottom: 1rem;
}

.bg-registration-form {
    background: url('../img/backgrounds/home.jpg');
    background-size: cover;
    background-position: center;
}

.hero-container {
    margin: auto;
}

.hero h1,
.hero-50 h1 {
    font-size: 9rem;
    font-weight: 500;
    line-height: 9rem;
    margin-bottom: 1.5rem;
}

.hero h2,
.hero-50 h2 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 6rem;
    margin-top: 0;
}

.hero-star {
    width: 15rem;
    margin: 0 auto;
}

.maincontainer {
    box-sizing: border-box;
    width: 100%;
    padding: 1rem;
    margin: auto;
    position: relative;
}

.titolo {
    font-size: 7.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 7.5rem;
    margin-top: .2rem;
    color: var(--titolo);
}

.titolo-70 {
    font-size: 7rem;
    font-style: normal;
    font-weight: 500;
    line-height: 7rem;
    margin-top: .2rem;
    color: var(--titolo);
}

.titolo-50 {
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 6rem;
    margin-top: .2rem;
    color: var(--titolo);
}

.titoletto {
    font-size: 1.4rem;
    color: var(--titolo);

    font-weight: 400;
    text-transform: uppercase;
}

.ellisse {
    margin-right: .5rem;
}

.welcome {
    font-size: 7.2rem;
    line-height: 7.5rem;
    font-weight: 500;
}

.p35 {
    font-size: 3.5rem;
}

.p30 {
    font-size: 3rem;
}

.p28 {
    font-size: 2.8rem;
}

.p25{
    font-size: 2.5rem;
}

.p20 {
    font-size: 2.0rem;
}

.p18 {
    font-size: 1.8rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.light {
    font-weight: 300 !important;
}

.sottotitvenue {
    font-size: 2.5rem;
    margin-top: -4rem;
}

.bt-registrati {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 1rem 2rem 1rem 2rem;
    gap: 2rem;
    border-radius: 20rem;
    background: var(--rosso-esaote);
    transition-property: background-color;
    transition-duration: 0.5s;
    text-decoration: none;
    width: max-content;
}

.bt-registrati span {
    color: #FFF;
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3rem
}

.bt-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 1rem 2rem 1rem 2rem;
    gap: 20px;
    border-radius: 200px;
    background: var(--rosso-esaote);
    transition-property: background-color;
    transition-duration: 0.5s;
    text-decoration: none;
    width: max-content;
}

.bt-link span {
    color: #FFF;
    text-align: center;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3rem
}

.bt-link-small {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: .5rem 3rem;
    gap: 20px;
    border-radius: 200px;
    background: var(--rosso-esaote);
    text-decoration: none;
    width: max-content;
}

.bt-link-small span {
    color: #FFF;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3rem
}

.bt-link-small img {
    width: 2.8rem;
}

.margin-auto {
    margin: auto;
}

.smaller-80 {
    font-size: .8em;
}

.smaller-60 {
    font-size: .6em;
}

.spacer-5 {
    height: 5rem;
}

.box-ceo {
    font-size: 2.8rem;
    line-height: 2.8rem;
}

.container-full {
    border-radius: 1.6rem;
    max-width: 100%;
}

.container-full-border {
    border-top: .1rem solid #a5a5a5;
    border-bottom: .1rem solid #a5a5a5;
    max-width: 90%;
    padding: 2rem 0;
    margin: 2rem auto;
}

.row-footer {
    display: flex;
    gap: 1rem;
    height: max-content;
}

.row-footer .column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.footer {
    max-width: 100%;
    background: black;
    padding: 4rem 2.5rem;
    color: var(--bianco);
    font-size: 1.6rem;
    line-height: 2.2em;
}

.footer a {
    color: var(--bianco);
    text-decoration: none;
}

.footer .bt-registrati {
    padding: .5rem 1.5rem .5rem 1.5rem;
}

.footer .bt-registrati img {
    width: 3.2rem;
}

.footer .bt-registrati span {
    font-size: 1.6rem;
}

.title-footer {
    font-weight: 700;
    font-size: 2.3rem;
}

.footer-fourth-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-fifth-col {
    justify-content: flex-end !important;
}

.pad-5 {
    padding: 5rem;
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.w-70 {
    width: 70%;
}

.img-round-corner {
    border-radius: 2.5rem;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-4 {
    flex: 4;
}

.flex-8 {
    flex: 8;
}

.tag {
    background-color: var(--grigio);
    color: var(--grigio-scuro);
    padding: .5rem 1.5rem;
    border-radius: 30rem;
}

.tag-black {
    color: var(--nero);
    border: 1px solid var(--nero);
    padding: .5rem 1.5rem;
    border-radius: 30rem;
}

h4 {
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: 3.5rem;
}

.div-note-hotel-open {
    position: absolute;
    background: var(--bianco);
    bottom: 0;
    right: 0;
    color: black;
    text-align: left;
    width: 50%;
    -webkit-border-top-left-radius: 2.5rem;
    -moz-border-radius-topleft: 2.5rem;
    border-top-left-radius: 2.5rem;
    padding: 4rem 0 2rem 0;
    z-index: 1;
}

.div-note-hotel-closed {
    position: absolute;
    background: var(--bianco);
    bottom: 0;
    right: 0;
    color: black;
    text-align: left;
    width: 18%;
    -webkit-border-top-left-radius: 2.5rem;
    -moz-border-radius-topleft: 2.5rem;
    border-top-left-radius: 2.5rem;
    padding: 2rem 0 1rem 1rem;
    z-index: 1;
}

.div-note-hotel-open h4,
.div-note-hotel-closed h4 {
    margin: 0;
    font-size: 2.2rem;
}

.column-right-note {
    flex: 8;
}

.close-note-hotel,
.open-note-hotel {
    margin-top: .5rem;
    cursor: pointer;
}

.icon {
    margin-right: 1rem;
}

.hotel-main-info {
    font-size: 2.4rem;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.info-icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.nome-hotel {
    font-weight: 500;
    font-size: 5rem;
    line-height: 6rem;
    margin-top: .5rem;
    margin-bottom: 1rem;
    color: var(--titolo);
}

.line {
    max-width: 100%;
    margin: 1rem auto;
    border: none;
    border-bottom: .1rem solid #a5a5a5;
    color: black;
}

.img-hotel {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.col-desc-hotel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10rem;
}

.stelle-desc {
    width: 13rem;
}

.bt-registrati:hover {
    background-color: var(--nero);
}

.footer .bt-registrati:hover {
    background-color: var(--bianco);
}

.footer .bt-registrati:hover span {
    color: black;
}

.footer .bt-registrati:hover img {
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
}

.bt-link:hover,
.bt-link-small:hover,
.button:hover {
    background-color: var(--rosso-esaote);
    border: none;
}

.smaller {
    font-size: .8em;
    font-style: italic;
}

button.bt-link-small {
    border: none;
}

.export-set-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.export-set-container .button {
    margin: 1rem;
}

.button-allotment {
    display: inline-block;
    margin: 1rem;
}

.row-agenda {
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
    height: max-content;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.row-agenda .column {
    border: 2px dotted var(--nero);
    padding: 2rem;
}

.row-agenda .column:nth-child(2) {
    flex: 3;
}

.agenda-break {
    font-weight: 400 !important;
    font-style: italic;
}

.agenda-dinner {
    background: var(--bianco);
    color: var(--rosso-esaote);
}

.row-agenda-group {
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
    height: max-content;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.row-agenda-group .column:first-child {
    flex: 4.4;
}

.row-agenda-group .row-agenda:last-child {
    margin-bottom: 0;
}

.row-agenda-group .column .row-agenda .column:first-child {
    flex: 1;
}

.row-agenda-group .column .row-agenda .column:nth-child(2) {
    flex: 3;
}

.row-agenda-group .column:last-child {
    border: 2px dotted var(--nero);
    padding: 2rem;
    display: flex;
    align-items: center;
}

.nobold {
    font-weight: 400 !important;
}

/*
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 40px;
    background: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    color: #666;
}
*/
.agenda-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
}

.day-card {
    min-width: 43rem;
    min-height: 35rem;
    background: #fff;
    border-radius: 1.6rem;
    padding: 3rem;
    position: relative;
}

.day-header {
    display: flex;
    align-items: center;
    margin-bottom: 4.2rem;
}

.day-number {
    font-size: 7.2rem;
    line-height: 1rem;
    font-weight: 500;
    color: var(--rosso-esaote);
    letter-spacing: .4rem;
    margin-right: 1.3rem;
}

.month {
    font-size: 2.4rem;
    line-height: 2.4rem;
    letter-spacing: .1rem;
    margin-top: 3rem;
}

.agenda-item {
    display: grid;
    grid-template-columns: 8rem 1fr;
    align-items: center;
    column-gap: 1.6rem;
    margin-bottom: 3rem;
    font-size: 3rem;
    line-height: 3.4rem;
    letter-spacing: 0.4px;
}

.agenda-item:last-child {
    margin-bottom: 0;
}

.icon {
    font-size: 25px;
    line-height: 1;
    color: #666;
    filter: grayscale(1);
}

.connector {
    width: 13rem;
    height: 2px;
    border-top: 2px dotted #e11f2a;
    position: relative;
}

.connector span {
    width: 16px;
    height: 16px;
    background: #e11f2a;
    border-radius: 50%;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}

.box-testo-guide {
    padding: 0 8rem;
}

.box-transport {
    border-radius: 1.6rem;
    background-color: #ffffff;
    padding: 3.5rem;
}

.title-transport {
    font-size: 3.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 0;
}

.box-transport.raccomended {
    border: 2px solid var(--rosso-esaote);
}

.box-transport.raccomended .title-transport {
    color: var(--rosso-esaote);
}

.iconic-container {
    border-left: 2px solid var(--rosso-esaote);
    padding-left: 2.5rem;
    width: 90%;
    margin: auto;
}

.div-dinner {
    -webkit-border-top-left-radius: 1.6rem;
    -webkit-border-top-right-radius: 1.6rem;
    -moz-border-radius-topleft: 1.6rem;
    -moz-border-radius-topright: 1.6rem;
    border-top-left-radius: 1.6rem;
    border-top-right-radius: 1.6rem;

    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.2);

    padding: 0 !important;

    background-color: var(--bianco);
}

.img-dinner{
    width: 100%;
    -webkit-border-top-left-radius: 1.6rem;
    -webkit-border-top-right-radius: 1.6rem;
    -moz-border-radius-topleft: 1.6rem;
    -moz-border-radius-topright: 1.6rem;
    border-top-left-radius: 1.6rem;
    border-top-right-radius: 1.6rem;
}
.title-dinner-container{
    color: var(--titolo);
    line-height: 0.2rem;
}
.title-dinner{
    font-size: 4.2rem;
    font-weight: 400;
}
.title-dinner-container .titolo-70{
    margin-bottom: .2rem;
}

.checkbox-location {
    position: relative;
    display: flex;
    width: 3.2rem;
    height: 3.2rem;
    border: 0.2rem solid #adadad;
    background-color: none;
}

.label-option-location{
    font-size: 2rem;
}

.row-align-center{
    justify-content: center;
}
.light{
    font-weight: 300;
}
.mar-bot-05{
    margin-bottom: .5rem;
}
.mar-bot-1{
    margin-bottom: 1rem;
}
.mar-bot-15{
    margin-bottom: 1.5rem;
}
.titolo-reg{
    margin-bottom: 4.5rem;
}

.div-contact {
    border-radius: 1.6rem;

    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.2);

    background-color: var(--bianco);
    text-align: center;
}
.div-contact a{
    text-decoration: underline;
    color: var(--rosso-esaote);
}
.div-contact .p25{
    line-height: 5rem;
}
.important-box {
    position: relative;
    background-color: #f5ebec;
    border-radius: 8px;
    padding: 28px 40px 28px 56px;
    font-family: Arial, Helvetica, sans-serif;
    color: #4a4a4a;
    overflow: hidden;
    box-sizing: border-box;
}

.important-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 100%;
    background-color: #e61919;
    border-radius: 8px 0 0 8px;
}
.important-box li{
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.container-box-registration{
    display: flex;
    align-items: stretch;
    gap: 4rem;
    height: max-content;
    padding: 3rem;
}
.box-registration{
    border-radius: 1.6rem;
    background-color: var(--grigio-chiaro);
    padding: 2rem;
    font-size: 2.4rem;
    font-weight: 400;
    text-align: center;
}
.title-box-registration{
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.icon-reg-container{
    border-radius: 20rem;
    background-color: var(--rosso-esaote);
    padding: 2rem;
    width: 3rem;
    height: 3rem;
    position: relative;
    margin: auto;
}
.icon-reg-container img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}