
/* ================================================
   LOAD FONTS
=================================================== */

@font-face {
    font-family: 'neo_sans_promedium';
    src: url('../fonts/neosanspromedium-webfont.woff2') format('woff2'),
         url('../fonts/neosanspromedium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'nunitoregular';
    src: url('../fonts/nunitoregular-webfont.woff2') format('woff2'),
         url('../fonts/nunitoregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ================================================
   RESET AND BASICS
=================================================== */

:root {
    --color-red: #DD1E22;
    --color-blue-dark: #22427B;
    --color-blue-medium: #3A99C9;
    --color-blue-light: #BAE0FF;
    /* --color-blue-background: #143D7A; */
    --color-blue-background: #001533;
    --color-calendar-aqua: #46BCCD;
    --color-calendar-aqua-dark: #44A5C9;
    --color-calendar-backg-gray: #E1E7EE;
    --color-calendar-backg-gray-light: #EDF4F8;
    --color-orange: #F88D03;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: baseline;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    list-style: none;
    outline: 0;
}

html {
    background: #0B1A4A url('../images/background-2025.jpg') center center/cover fixed no-repeat;
    font: normal 18px/120% nunitoregular,Helvetica,Arial,sans-serif;
    color: white;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: white;
    text-decoration: none;
}
a:hover,
a:active {
    color: var(--color-orange);
    text-decoration: underline;
}

h1, h2, h3, strong {
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
}

header, main, footer {
    display: block;
    width: 100%;
}
header {
    padding: 15px;
}
main {
    flex: 1;
    margin: 80px 0;
}
footer {
    padding: 25px 0 35px;
    border-top: solid 1px #2C4785;
    font-size: 0.8rem;
    line-height: 130%;
}

.transitions, a, button,
.calendar-week button span,
.calendar-week-times,
.register-form input,
.register-form select,
.message-home-promoclosed .santa,
.nav_mobile-links,
.nav_mobile-switch-button,
.nav_mobile-switch-button span {
    transition: all 0.3s ease-out;
}

.max_width {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}
@media screen and (max-width: 850px) {
    .max_width {
        max-width: 100%;
        padding: 0 25px;
    }
}

.text-nowrap {
    white-space: nowrap;
}

.nav_desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 20px;
}
.nav_desktop a {
    display: inline-block;
    padding: 5px 0;
    font-size: 0.9rem;
}
.nav_mobile {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: none;
}
.nav_mobile-links {
    overflow: hidden;
    width: 100%;
    height: 0;
    background-color: rgba(255,255,255,0.80);
    border-radius: 0 0 15px 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
}
.nav_mobile-links.active {
    height: 230px;
    padding: 95px 20px 0;
}
.nav_mobile-links a {
    display: block;
    padding: 8px 0;
    cursor: pointer;
    font: normal 1rem/120% neo_sans_promedium,Helvetica,Arial,sans-serif;
    color: var(--color-blue-dark);
    text-transform: uppercase;
}
.nav_mobile-links a:active {
    color: var(--color-orange);
    text-decoration: underline;
}
.nav_mobile-switch-button,
.nav_mobile-switch-button span {
    display: block;
    padding: 0;
    margin: 0;
}
.nav_mobile-switch-button {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 46px;
    height: 46px;
    padding: 12px 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    cursor: pointer;
    z-index: 999;
}
.nav_mobile-switch-button span {
    width: 26px;
    height: 4px;
    padding: 0;
    background-color: white;
}
.nav_mobile-switch-button span:last-child {
    margin-bottom: 0;
}
.nav_mobile-switch-button.active {
    background-color: white;
}
.nav_mobile-switch-button.active span {
    background-color: var(--color-blue-background);
}
.nav_mobile-switch-button.active {
    display: block;
}
.nav_mobile-switch-button.active span:nth-child(1),
.nav_mobile-switch-button.active span:nth-child(3) {
    position: absolute;
    top: 20px;
}
.nav_mobile-switch-button.active span:nth-child(1) {
    transform: rotate(45deg);
}
.nav_mobile-switch-button.active span:nth-child(2) {
    display: none;
}
.nav_mobile-switch-button.active span:nth-child(3) {
    transform: rotate(-45deg);
}
@media screen and (max-width: 620px) {
    .nav_desktop {
        display: none;
    }
    .nav_mobile {
        display: block;
    }
}

.logo_promo {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}
.logo_promo h1 {
    font-size: 2.8rem;
    line-height: 130%;
    text-transform: uppercase;
}
.logo_promo h2 {
    font-size: 1.15rem;
    line-height: 120%;
    color: var(--color-orange);
    text-transform: uppercase;
}
.logo_promo .ornament {
    max-width: 350px;
    height: auto;
    margin: 0 auto;
}
.logo_promo .ornament.above {
    margin-bottom: 12px;
}
.logo_promo .ornament.below {
    margin-top: 22px;
}
@media screen and (max-width: 590px) {
    .logo_promo {
        margin-bottom: 50px;
    }
    .logo_promo h1 {
        font-size: 1.8rem;
    }
    .logo_promo h2 {
        font-size: 0.73rem;
    }
    .logo_promo .ornament {
        max-width: 220px;
    }
}
@media screen and (max-width: 390px) {
    .logo_promo h1 {
        font-size: 1.4rem;
    }
    .logo_promo h2 {
        font-size: 0.57rem;
    }
    .logo_promo .ornament {
        max-width: 180px;
    }
}

.footer-content,
.footer-nav ul {
    display: flex;
    flex-direction: row;
}
.footer-content {
    justify-content: space-between;
}
.footer-nav li::before {
    content: '|';
    margin: 0 6px;
}
.footer-nav li:first-child::before {
    content: none;
    margin: 0;
}
.footer-year {
    margin-top: 5px;
}
@media screen and (max-width: 640px) {
    .footer-content,
    .footer-nav ul {
        display: block;
    }
    .footer-nav li {
        display: block;
        margin-bottom: 8px;
    }
    .footer-nav li:last-child {
        margin-bottom: 0;
    }
    .footer-nav li:first-child::before,
    .footer-nav li::before {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 0 6px 0 0;
        background-color: var(--color-orange);
        border-radius: 50px;
        content: '';
    }
    .footer-year {
        margin-top: 20px;
    }
    .footer-invite {
        margin-top: 8px;
    }
}

/* ================================================
   LAYER DIALOG
=================================================== */

.layer-messages {
    display: none;
    z-index: 9999999;
}
.layer-messages,
.layer-messages .message-background,
.layer-messages .message-box,
.layer-messages .message-container,
.layer-messages p,
.layer-messages .message-content,
.layer-messages .message-buttons {
    margin: 0;
    padding: 0;
}
.layer-messages,
.layer-messages .message-background {
    position: fixed;
    inset: 0;
}
.layer-messages .message-background {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
}

.layer-messages .message-box {
    width: 500px;
}
.layer-messages .message-container {
    padding: 35px 30px;
    background-color: #FFF;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    text-align: center;
}
.layer-messages .message-content {
    position: relative;
}
.layer-messages .message-buttons {
    width: 100%;
    padding-top: 50px;
    text-align: center;
}
.layer-messages .message-buttons.hide-buttons {
    display: none;
}
.layer-messages .message-buttons:not(:has(*:not([style*="display: none"]))) {
    display: none;
}
.layer-messages .button {
    border: 0;
    margin: 0 5px 0 0;
    padding: 15px 30px;
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 1.1rem;
    line-height: 100%;
    color: black;
    text-transform: uppercase;
}
.layer-messages .button.cancel {
    background-color: white;
}
.layer-messages .button.ok {
    background-color: var(--color-blue-dark);
    color: white;
}
.layer-messages .button:hover,
.layer-messages .button:active {
    background-color: var(--color-blue-medium);
    color: white;
}
.layer-messages .button:last-child {
    margin-right: 0;
}
.message-custom h2,
.message-custom p {
    text-align: center;
}
.message-custom h2 {
    margin: 0 0 20px;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 1.4rem;
    line-height: 120%;
    color: var(--color-blue-dark);
    text-transform: uppercase;
    font-weight: 600 !important;
}
.message-custom p {
    margin: 0 0 12px;
    font-family: nunitoregular,Helvetica,Arial,sans-serif;
    font-size: 1.1rem;
    line-height: 130%;
    color: #333;
    word-wrap: break-word;
}
.message-custom p:last-child {
    margin-bottom: 0;
}
.message-custom p strong {
    font-weight: 500 !important;
    color: black;
}
.message-custom small {
    font-size: 0.7rem;
    line-height: 100%;
    color: #999;
    text-transform: uppercase;
}

/* ================================================
   SITE MAIN STYLES
=================================================== */

.step-title {
    display: block;
    margin-bottom: 30px;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 1.6rem;
    line-height: 120%;
    color: white;
    text-align: center;
    text-transform: uppercase;

    & span {
        color: var(--color-orange);
    }
}

.santa-calltoaction-msg {
    display: block;
    margin-bottom: 35px;
    font-size: 1.2rem;
    line-height: 130%;
    text-align: center;

    & span {
        color: var(--color-orange);
    }
}

.santa-home {
    display: block;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;

    & img {
        width: 100%;
        height: auto;
    }
}

.message-intro-home {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}
.message-intro-home span {
    display: inline-block;
    padding: 8px 12px;
    border: dashed 1px white;
    border-radius: 8px;
    font-size: 1rem;
    color: white;
}
@media screen and (max-width: 440px) {
    .message-intro-home span {
        font-size: 0.9rem;
    }
}

.message_page {
    margin: 50px 0;
    font-size: 1.2rem;
    line-height: 140%;
    text-align: center;
}

.title_page {
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
}
.title_page h1 {
    font-size: 2rem;
    line-height: 120%;
}
.title_page img {
    margin-top: 15px;
    max-width: 250px;
}
@media screen and (max-width: 460px) {
    .title_page h1 {
        font-size: 1.6rem;
    }
    .title_page img {
        max-width: 180px;
    }
}

.list_numeric {
    margin-bottom: 30px;
    counter-reset: custom-counter;
}
.list_numeric > li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 35px;
    counter-increment: custom-counter;
}
.list_numeric > li::before {
    position: absolute;
    left: 0;
    top: 5px;
    display: inline-block;
    content: counter(custom-counter) ')';
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 1.2rem;
    line-height: 100%;
    color: var(--color-orange);
}
.list_numeric p {
    font-size: 1rem;
    line-height: 140%;
    margin-bottom: 10px;
}
.list_numeric:last-child,
.list_numeric > li:last-child,
.list_numeric p:last-child {
    margin-bottom: 0;
}
.list_numeric strong {
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    text-transform: uppercase;
}

.calendar-container,
.calendar,
.calendar-week-times {
    display: block;
    width: 100%;
}
.calendar {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
}
.calendar:last-child {
    margin-bottom: 0;
}
.calendar-month {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: var(--color-calendar-aqua);
}
.calendar-month span {
    display: inline-block;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 1.3rem;
    line-height: 120%;
    color: var(--color-blue-dark);
    text-align: center;
    text-transform: uppercase;
}
.calendar-week,
.calendar-week-times .days-arrows {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}
.calendar-week li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: var(--color-calendar-backg-gray);
    cursor: not-allowed;
    text-align: center;
}
.calendar-week.weekday-name li {
    height: auto;
    padding: 10px 0;
    background-color: #44A5C9;
}
.calendar-week button,
.calendar-week span {
    font-family: nunitoregular,Helvetica,Arial,sans-serif;
    font-size: 1rem;
    line-height: 120%;
}
@media screen and (max-width: 440px) {
    .calendar-week.weekday-name li,
    .calendar-week span {
        font-size: 0.7rem;
    }
}
.calendar-week button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: white;
    cursor: pointer;
}
.calendar-week button span,
.calendar-week button span::before {
    display: inline-block;
}
.calendar-week button span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: solid 2px white;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    color: var(--color-blue-dark);
}
@media screen and (max-width: 440px) {
    .calendar-week button span {
        width: 35px;
        height: 35px;
    }
}
.calendar-week button span::before {
    content: attr(data-day);
}
.calendar-week button:hover span,
.calendar-week button:active span {
    border-color: var(--color-blue-dark);
}
.calendar-week li.santa_day.active span {
    background-color: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
    color: white;
}
.calendar-week span {
    display: inline-block;
}
.calendar-week li > span {
    color: #AABECE;
}
.calendar-week-times {
    position: relative;
    overflow: hidden;
    height: 0;
    overflow-y: auto;
    background-color: var(--color-calendar-aqua-dark);
    box-shadow: inset 0 3px 6px rgba(34,66,123,0.3);
}
.calendar-week-times.active {
    height: 400px;
}
.calendar-week-times .days-arrows {
    position: sticky;
    top: 0;
}
.calendar-week-times .days-arrows li {
    position: relative;
    width: 100%;
    overflow: hidden;
    opacity: 0;
    text-align: center;
}
.calendar-week-times .days-arrows li.active {
    opacity: 1;
}
.calendar-week-times .days-arrows i {
    position: relative;
    top: -5px;
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid white;
    filter: drop-shadow(0 3px 2px rgba(34,66,123,0.6));
}
.calendar-chosen-date {
    display: block;
    margin: 10px 0 30px;
    filter: drop-shadow(0 2px 2px rgba(34,66,123,0.6));
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 1.2rem;
    line-height: 120%;
    color: white;
    text-align: center;
    text-transform: uppercase;
}
.calendar-choosetime {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 40px;
    text-align: center;
}
.calendar-choosetime button,
.calendar-choosetime span {
    display: inline-block;
}
.calendar-choosetime button {
    padding: 0;
    width: 100px;
    background-color: white;
    border: solid 2px white;
    border-radius: 5px;
    cursor: pointer;
}
.calendar-choosetime button.active {
    background-color: var(--color-blue-dark);
}
.calendar-choosetime button.active span {
    color: white;
}
.calendar-choosetime button:disabled {
    background-color: transparent;
    border-style: dashed;
    opacity: 0.3;
    cursor: not-allowed;
}
.calendar-choosetime button:disabled span {
    color: white;
}
.calendar-choosetime span {
    padding: 10px 0;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 0.9rem;
    line-height: 120%;
    color: var(--color-blue-dark);
}

.navpages-buttons-prvnxt,
.form-guardian,
.form-children,
.dashboard {
    width: 100%;
}

.navpages-buttons-prvnxt {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 80px;
}
.navpages-buttons-prvnxt button {
    display: block;
    padding: 0 40px;
    height: 70px;
    background-color: var(--color-orange);
    border: solid 3px var(--color-orange);
    cursor: pointer;
    border-radius: 70px;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 1.2rem;
    line-height: 120%;
    color: white;
    text-align: center;
    text-transform: uppercase;
}
.navpages-buttons-prvnxt button.prv {
    background-color: transparent;
    border-color: rgba(248,141,3,0.3);
    color: white;
}
.navpages-buttons-prvnxt button:active {
    background-color: white;
    border-color: white;
    color: var(--color-blue-dark);
}
@media screen and (max-width: 540px) {
    .navpages-buttons-prvnxt button {
        padding: 0 30px;
        height: 60px;
        font-size: 1rem;
    }
}
@media screen and (max-width: 420px) {
    .navpages-buttons-prvnxt {
        display: block;
        text-align: center;
    }
    .navpages-buttons-prvnxt button {
        margin: 0 auto 15px;
    }
}

.register-form,
.register-form .row,
.register-form .row-multiple,
.register-form label {
    display: block;
    width: 100%;
}
.register-form .row,
.register-form .row-multiple {
    margin-bottom: 20px;
}
.register-form .row:last-child,
.register-form .row-multiple:last-child,
.register-form .row-multiple .row {
    margin-bottom: 0;
}
.register-form .row-multiple {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}
.register-form input[type="text"],
.register-form input[type="number"],
.register-form select {
    width: 100%;
    padding: 15px 12px;
    height: 60px;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.7);
    border: solid 2px transparent;
    border-radius: 6px;
    font-family: nunitoregular,Helvetica,Arial,sans-serif;
    font-size: 1.2rem;
    line-height: 120%;
    color: black;
}
.register-form input[type="text"],
.register-form input[type="number"] {
    appearance: none;
}
.register-form input[type="text"]:focus,
.register-form input[type="number"]:focus {
    background-color: white;
}
.register-form input::-webkit-input-placeholder,
.register-form select::-webkit-input-placeholder {
    color: #999;
}
.register-form input::-moz-placeholder,
.register-form select::-moz-placeholder {
    color: #999;
}
.register-form input:-ms-input-placeholder,
.register-form select:-ms-input-placeholder {
    color: #999;
}
.register-form input::-webkit-inner-spin-button,
.register-form input::-webkit-outer-spin-button,
.register-form input::-webkit-clear-button,
.register-form input::-webkit-inner-spin-button,
.register-form input::-webkit-calendar-picker-indicator {
    appearance: none;
    display: none;
    margin: 0;
}
.register-form input:read-only,
.register-form select:disabled {
    border: dashed 2px rgba(255,255,255,0.3) !important;
    background-color: rgba(255,255,255,0.1) !important;
    cursor: not-allowed;
    color: white !important;
}
.register-form .title {
    display: inline-block;
    clear: both;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.register-form select {
    appearance: menulist-text;
    cursor: pointer;
}
.register-form label {
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.register-form .required,
.register-form .required::after {
    position: relative;
}
.register-form .required::after {
    top: 8px;
    left: 7px;
    display: inline-block;
    content: '*';
    font-size: 1.8rem;
    color: var(--color-orange);
}
@media screen and (max-width: 680px) {
    .register-form .row-multiple {
        display: block;
    }
    .register-form .row-multiple .row {
        margin-bottom: 20px;
    }
}

.form-child-block {
    display: block;
    width: 100%;
    margin-top: 80px;
}

.dashboard {
    background-color: white;
    padding: 60px 25px;
    border-radius: 10px;
}
.dashboard .title {
    margin-bottom: 50px;
    text-align: center;
}
.dashboard .title h3 {
    font-size: 1.6rem;
    line-height: 120%;
    color: var(--color-blue-dark);
    text-transform: uppercase;
}
.dashboard .title p {
    margin-top: 5px;
    font-size: 0.9rem;
    line-height: 120%;
    color: #666;
    text-align: center;
}
.dashboard .title img {
    margin-top: 15px;
}
.dashboard .block-details,
.dashboard .block-details p {
    font-size: 1rem;
    line-height: 140%;
    color: #888;
    text-align: center;
}
.dashboard .block-details {
    margin-bottom: 30px;
}
.dashboard .block-details:last-child {
    margin-bottom: 0;
}
.dashboard .block-details h4,
.dashboard .block-details p {
    margin: 0 auto;
    max-width: 500px;
}
.dashboard .block-details h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    color: var(--color-blue-dark);
    text-transform: uppercase;
}
.dashboard .message {
    margin-top: 80px;
    text-align: center;
}
.dashboard .message p {
    display: inline-block;
    padding: 8px 15px;
    border: dashed 1px var(--color-calendar-aqua);
    border-radius: 100px;
    opacity: 0.5;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 0.6rem;
    line-height: 120%;
    color: black;
    text-transform: uppercase;
}
.dashboard .meet-button {
    display: block;
    width: 100%;
    margin-top: 50px;
    text-align: center;
}
.dashboard .meet-button button {
    margin: 0 auto
    display: block;
    padding: 0 50px;
    height: 80px;
    background-color: var(--color-calendar-aqua-dark);
    border: solid 3px var(--color-calendar-aqua-dark);
    cursor: pointer;
    border-radius: 70px;
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    font-size: 1.4rem;
    line-height: 120%;
    color: white;
    text-align: center;
    text-transform: uppercase;
}
.dashboard .meet-button button:active {
    background-color: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
}
.dashboard .meet-button button:disabled {
    border-color: #CCC;
    background-color: transparent;
    color: var(--color-calendar-aqua-dark);
    cursor: not-allowed;
}
.dashboard .meet-button p {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    line-height: 120%;
    color: #888;
}
@media screen and (max-width: 520px) {
    .dashboard .meet-button button {
        height: 60px;
        font-size: 1rem;
    }
}
@media screen and (max-width: 440px) {
    .dashboard .title h3 {
        font-size: 1.4rem;
    }
    .dashboard .title img {
        width: 180px;
    }
    .dashboard .meet-button button {
        font-size: 0.9rem;
    }
}
@media screen and (max-width: 410px) {
    .dashboard .meet-button button {
        height: 80px;
    }
}

.layer-meet {
    position: fixed;
    display: none;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
}
.layer-meet .content {
    position: absolute;
    inset: 0;
    padding: 25px;
    background-color: white;
}
.layer-meet iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
}

.message-home-fixingerror {
    margin-bottom: 30px;
    text-align: center;
}
.message-home-fixingerror h2 {
    font-size: 1.4rem;
    line-height: 120%;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.message-home-fixingerror h2 span {
    color: var(--color-orange);
}
.message-home-fixingerror p {
    font-size: 1.1rem;
    line-height: 140%;
}

.message-home-promoclosed {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}
.message-home-promoclosed h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    line-height: 120%;
    text-transform: uppercase;
}
.message-home-promoclosed h2 span {
    color: var(--color-orange);
}
.message-home-promoclosed p {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 130%;
}
.message-home-promoclosed p span {
    font-family: neo_sans_promedium,Helvetica,Arial,sans-serif;
    color: var(--color-orange);
}
.message-home-promoclosed .santa {
    max-width: 350px;
    margin-top: 50px;
}
@media screen and (max-width: 440px) {
    .message-home-promoclosed h2 {
        font-size: 1.6rem;
    }
    .message-home-promoclosed .santa {
        max-width: 250px;
        margin-top: 40px;
    }
}






