@import url("https://use.typekit.net/bzl0ifk.css");

:root {
    --rosso-esaote: #CD141A;
    --bianco: #FFF;
    --grigio: #e4e5e6;
    --grigio-scuro: #7A7878;
    --grigio-chiaro: #F2F3F4;
    --nero: #000;
}


@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: "poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    background: var(--bianco);
}

*.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-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-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;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: transparent;
}

.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: white;
    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;
    transition-property: border;
    transition-duration: 0.5s;
}

.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;
}

.navbar-sticky .navbar-item {
    color: black;
}

.navbar-sticky .navbar-item:hover,
.navbar-sticky .navbar-item-active {
    border: 1px solid var(--nero);
    border-radius: 20rem;
}

.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: 85vh;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15vh;
    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.jpg');
    background-size: cover;
    background-position: top center;
}

.bg-location {
    background: url('../img/backgrounds/location.jpg');
    background-size: cover;
    background-position: bottom 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.jpg');
    background-size: cover;
    background-position: top 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-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 h1,
.hero-50 h1 {
    font-size: 9rem;
    font-weight: 500;
    line-height: 9rem;
    margin-bottom: .5rem;
}

.hero h2,
.hero-50 h2 {
    font-size: 4rem;
    font-weight: 400;
    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;
}

.titolo-50 {
    font-size: 5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 6rem;
    margin-top: .2rem;
}

.titoletto {
    font-size: 1.4rem;
    color: var(--grigio-scuro);

    font-weight: 400;
    text-transform: uppercase;
}

.ellisse {
    margin-right: .5rem;
}

.welcome {
    font-size: 4.8rem;
    line-height: 6rem;
    font-weight: 700;
}

.p30 {
    font-size: 3rem;
}

.p28 {
    font-size: 2.8rem;
}

.p20 {
    font-size: 2.0rem;
}

.p18 {
    font-size: 1.8rem;
}

.text-center {
    text-align: center;
}

.sottotitvenue {
    font-size: 2.5rem;
    margin-top: -4rem;
}

.bt-registrati {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 1rem .7rem 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 .7rem 1rem 2rem;
    gap: 20px;
    border-radius: 200px;
    background: var(--nero);
    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: 1rem .7rem 1rem 2rem;
    gap: 20px;
    border-radius: 200px;
    background: var(--nero);
    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: 2rem;
    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 {
    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 .5rem .5rem 1rem;
}

.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;
}

.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: flex-start;
    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:last-child{
    flex: 6;
}
.agenda-break{
    font-weight: 400 !important;
    font-style: italic;
}
.agenda-dinner{
    background: var(--bianco);
    color: var(--rosso-esaote);
}