@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* _content/PickDream/Components/Custom/Countdown.razor.rz.scp.css */
.countdown-container[b-r6f29scche] {
    font-family: 'Cormorant', serif;
    width: 100%;
    padding: 20px;
}

.countdown-elements[b-r6f29scche] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-item[b-r6f29scche] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
}

.countdown-value[b-r6f29scche] {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.countdown-label[b-r6f29scche] {
    font-size: 1.2rem;
    margin-top: 5px;
    text-transform: uppercase;
}

.countdown-separator[b-r6f29scche] {
    font-size: 3rem;
    font-weight: 600;
    padding: 0 10px;
    line-height: 1;
}

.countdown-message[b-r6f29scche] {
    text-align: center;
    margin-top: 20px;
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .countdown-value[b-r6f29scche] {
        font-size: 2.5rem;
    }

    .countdown-label[b-r6f29scche] {
        font-size: 1rem;
    }

    .countdown-separator[b-r6f29scche] {
        font-size: 2.5rem;
    }

    .countdown-message[b-r6f29scche] {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .countdown-value[b-r6f29scche] {
        font-size: 2rem;
    }

    .countdown-label[b-r6f29scche] {
        font-size: 0.8rem;
    }

    .countdown-separator[b-r6f29scche] {
        font-size: 2rem;
        padding: 0 5px;
    }

    .countdown-message[b-r6f29scche] {
        font-size: 1rem;
    }
}
/* _content/PickDream/Components/Custom/ImageSlider.razor.rz.scp.css */
.polaroid-slider-container[b-82ne7s2uga] {
    position: relative;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.polaroid-slider-wrapper[b-82ne7s2uga] {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.polaroid-slide[b-82ne7s2uga] {
    align-items: center;
    min-width: 100%;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.polaroid-image[b-82ne7s2uga] {
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    position: relative;
}

    .polaroid-image img[b-82ne7s2uga] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.nav-arrow[b-82ne7s2uga] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #2E4735;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    z-index: 10;
    transition: all 0.3s ease;
}

    .nav-arrow:hover[b-82ne7s2uga] {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }

.nav-arrow-prev[b-82ne7s2uga] {
    left: 10px;
}

.nav-arrow-next[b-82ne7s2uga] {
    right: 10px;
}

.slider-dots[b-82ne7s2uga] {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 auto;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .slider-dots > button[b-82ne7s2uga] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .slider-dots > button:hover[b-82ne7s2uga] {
            transform: scale(1.2);
        }

        .slider-dots > button.active[b-82ne7s2uga] {
            transform: scale(1.3);
        }

.empty-slider[b-82ne7s2uga] {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.empty-slider-content[b-82ne7s2uga] {
    text-align: center;
    color: #565050;
}

    .empty-slider-content svg[b-82ne7s2uga] {
        margin-bottom: 15px;
    }


/********* stili per template diversi *********/
/** NATURE THEME **/
.polaroid-frame[b-82ne7s2uga] {
    background-color: white;
    padding: 15px 15px 40px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: 280px;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    position: relative;
}


    .polaroid-frame:nth-child(1)[b-82ne7s2uga] {
        transform: rotate(-3deg);
    }

    .polaroid-frame:nth-child(2)[b-82ne7s2uga] {
        transform: rotate(0deg);
    }

    .polaroid-frame:nth-child(3)[b-82ne7s2uga] {
        transform: rotate(3deg);
    }

    .polaroid-frame:hover[b-82ne7s2uga] {
        transform: translateY(-10px) rotate(0deg) !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

.slider-dots-yellow[b-82ne7s2uga] {
    background-color: rgba(255, 255, 255, 0.5);
}

    .slider-dots-yellow > button[b-82ne7s2uga] {
        background-color: rgba(46, 71, 53, 0.3);
    }

        .slider-dots-yellow > button.active[b-82ne7s2uga] {
            background-color: #E6C858;
        }

/* FLORAL THEME - ELEGANT THEME */
.rounded-frame[b-82ne7s2uga], .rounded-frame-high[b-82ne7s2uga] {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

    .rounded-frame:hover[b-82ne7s2uga], .rounded-frame-high:hover[b-82ne7s2uga]{
        transform: scale(1.05)
    }

    .rounded-frame[b-82ne7s2uga] {
        width: 260px;
        aspect-ratio: 16/9;
    }


.rounded-frame-high[b-82ne7s2uga] {
    width: 200px;
    height: 300px;
}

    .rounded-frame-high > .polaroid-image[b-82ne7s2uga] {
        height: 100%;
    }

.slider-dots-gray[b-82ne7s2uga] {
    background-color: #b6b1b2;
}

    .slider-dots-gray > button[b-82ne7s2uga] {
        background-color: #dbd8d9;
    }

        .slider-dots-gray > button.active[b-82ne7s2uga] {
            background-color: #FFFFFF;
        }
/* _content/PickDream/Components/Custom/Timeline.razor.rz.scp.css */
/* Stili per il componente Timeline */
[b-ysh3fu9o8d] .timeline-panel-left {
    float: left;
}

[b-ysh3fu9o8d] .timeline-panel-right {
    float: right;
}

.timeline-panel-left[b-ysh3fu9o8d]::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -14px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #fff;
    z-index: 1;
}

.timeline-panel-right[b-ysh3fu9o8d]::after {
    content: '';
    position: absolute;
    top: 15px;
    left: -14px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 14px solid #fff;
    z-index: 1;
}

.timeline-item[b-ysh3fu9o8d]::after {
    content: "";
    display: table;
    clear: both;
}

.timeline-date[b-ysh3fu9o8d] {
    font-weight: bold;
}

.timeline-title[b-ysh3fu9o8d] {
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 10px;
}

.timeline-panel:hover[b-ysh3fu9o8d] {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Responsive styles */
@media (max-width: 767px) {
    [b-ysh3fu9o8d] .timeline-line {
        left: 50% !important;
        width: 3px !important;
        bottom: -30%;
    }

    [b-ysh3fu9o8d] .timeline-badge {
        left: 50% !important;
    }

    [b-ysh3fu9o8d] .timeline-panel {
        padding: 20px !important;
    }

    [b-ysh3fu9o8d] .timeline-panel-right {
        text-align: end;
    }

    [b-ysh3fu9o8d] .timeline-panel-left {
        text-align: start;
    }

    [b-ysh3fu9o8d] .timeline-panel-left::after,
    [b-ysh3fu9o8d] .timeline-panel-right::after {
        left: -14px !important;
        right: auto !important;
        border-left: 0 !important;
        border-right: 14px solid #fff !important;
    }

    [b-ysh3fu9o8d] .time-line-block {
        font-size: 15px !important;
    }
}
/* _content/PickDream/Components/Custom/TimelineItem.razor.rz.scp.css */
/* Stili per il componente TimelineItem */
.timeline-content[b-nn3k3fki83] {
    margin-bottom: 10px;
}

.timeline-image[b-nn3k3fki83] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

    .timeline-image img[b-nn3k3fki83] {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
    }

/* Aggiungi questi stili se vuoi un effetto particolare */
.timeline-image-left[b-nn3k3fki83] {
    text-align: right;
}
    .timeline-image-left.in-view[b-nn3k3fki83] {
        animation: fadeInRight 2s;
    }


.timeline-image-right[b-nn3k3fki83] {
    text-align: left;
}
    .timeline-image-right.in-view[b-nn3k3fki83] {
        animation: fadeInLeft 2s;
    }

@media (max-width: 767px) {
    .timeline-image[b-nn3k3fki83] {
        display: none; /* Nascondi le immagini su mobile per mantenere il layout pulito */
    }
}
/* _content/PickDream/Components/Layout/MainLayout.razor.rz.scp.css */
/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row ::deep .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
        text-decoration: underline;
    }

    .top-row ::deep a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row {
        justify-content: space-between;
    }

    .top-row ::deep a, .top-row ::deep .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth ::deep a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row, article {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}*/

#blazor-error-ui[b-8yvzrpesu2] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-8yvzrpesu2] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/PickDream/Components/Layout/Template/Eventi/Battesimi/Nuvole di festa.razor.rz.scp.css */
main[b-r5wl6equff] {
    height: 100%;
    font-family: "Poppins", sans-serif;
    text-align: center;
    color: var(--text);
}

/* immagini */
[id^=cloud-][b-r5wl6equff], [id^=star-][b-r5wl6equff] {
    position: absolute;
}

[id^=cloud-bg-][b-r5wl6equff], [id^=star-blurred-][b-r5wl6equff] {
    z-index: -1;
}

#cloud-1[b-r5wl6equff] {
    left: 10%;
}

#cloud-2[b-r5wl6equff] {
    left: 25%;
}

#cloud-3[b-r5wl6equff] {
    left: 50%;
    transform: translateX(-50%);
}

#cloud-4[b-r5wl6equff] {
    right: 25%;
}

#cloud-5[b-r5wl6equff] {
    right: 10%;
}

#star-1[b-r5wl6equff] {
    top: 45%;
    left: 16%;
    width: 45px;
}

#star-2[b-r5wl6equff] {
    top: 60%;
    left: 33%;
    width: 37px;
}

#star-3[b-r5wl6equff] {
    top: 10%;
    left: 45%;
    width: 48px;
}

#star-4[b-r5wl6equff] {
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
}

#star-5[b-r5wl6equff] {
    top: 45%;
    left: 60%;
    width: 37px;
}

#star-6[b-r5wl6equff] {
    top: 10%;
    left: 60%;
    width: 27px;
}

#star-7[b-r5wl6equff] {
    top: 70%;
    left: 73%;
    width: 39px;
}

#star-8[b-r5wl6equff] {
    top: 25%;
    left: 80%;
    width: 36px;
}

#star-blurred-2[b-r5wl6equff] {
    right: 2%;
    top: 5%;
}

#star-blurred-3[b-r5wl6equff] {
    left: 20%;
    top: 40%;
}

#star-blurred-4[b-r5wl6equff] {
    right: 20%;
    bottom: 0;
}

#cloud-bg-1[b-r5wl6equff], #cloud-bg-3[b-r5wl6equff], #star-blurred-1[b-r5wl6equff] {
    left: 0;
    top: 0;
}


#cloud-bg-2[b-r5wl6equff], #cloud-bg-4[b-r5wl6equff] {
    right: 0;
    bottom: 0;
}

#cloud-bg-5[b-r5wl6equff] {
    left: 0;
    bottom: 10%;
}

#cloud-bg-6[b-r5wl6equff] {
    right: 0;
    bottom: 30%;
}

h2[b-r5wl6equff] {
    font-family: "Alice", serif;
    font-size: 36px;
    color: var(--primary);
}

h1[b-r5wl6equff] {
    font-family: "Gwendolyn", cursive;
    font-weight: 700;
    font-size: 72px;
}

h3[b-r5wl6equff] {
    font-family: "Alike", serif;
    font-size: 32px;
}

.card-pastel-blue[b-r5wl6equff] {
    border: 2px solid var(--accent);
    border-radius: 32px;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background) 100%);
    display: flex;
    justify-content: center;
    padding-block: 48px;
    padding-inline: 24px;
    font-size: 28px;
    margin-bottom: 16px;
    flex-grow: 1;
}

    .card-pastel-blue p:first-of-type[b-r5wl6equff] {
        font-family: "Alike", serif;
        color: var(--text-dark);
    }


.card-pastel-pink[b-r5wl6equff] {
    border-radius: 48px;
    background: linear-gradient( 313deg, #EDF4F810 0%, var(--accent) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 48px;
    padding-inline: 24px;
    font-size: 28px;
    height: 300px;
    box-shadow: 4px 4px 4px var(--accent-dark);
    font-size: 24px;
}

.luogo[b-r5wl6equff] {
    font-size: 22px;
}

    .luogo span:first-of-type[b-r5wl6equff] {
        font-size: 28px;
    }



.btn-pastel-blue[b-r5wl6equff] {
    background-color: var(--secondary);
    color: var(--text-dark);
    font-size: 20px;
    border-radius: 30px;
    width: 100%;
    padding-block: 16px;
    font-weight: 500;
    box-shadow: inset 1px 1px 4px 0px #FFFFFF, inset -1px -1px 4px 0px #A2C8DC, 1px 1px 8px #FFFFFF;
    border: 0;
    transition: transform ease-in-out .2s;
}

    .btn-pastel-blue:hover[b-r5wl6equff] {
        transform: scale(1.02);
    }

#main-invito[b-r5wl6equff] {
    background: linear-gradient(180deg, var(--background) 0%, #FFFFFF 100%);
}

#main-invito[b-r5wl6equff], #dettagli[b-r5wl6equff], #momenti[b-r5wl6equff] {
    min-height: 100vh;
    position: relative;
}

#lista-regali[b-r5wl6equff], #momenti[b-r5wl6equff] {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-bottom: 80px;
}

.banner-container[b-r5wl6equff] {
    height: 50vh;
    position: relative;
}

.caret[b-r5wl6equff] {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    animation: moveUpDown-b-r5wl6equff 1.5s ease-in-out infinite;
}

#camera img[b-r5wl6equff] {
    width: 200px;
}

@keyframes moveUpDown-b-r5wl6equff {
    0%, 100% {
        bottom: 48px;
    }

    50% {
        bottom: 30px;
    }
}

@media(max-width: 1536px){
    #cloud-1[b-r5wl6equff] {
        left: 2%;
    }

    #cloud-2[b-r5wl6equff] {
        left: 15%;
    }

    #cloud-5[b-r5wl6equff] {
        right: 2%;
    }

    #cloud-4[b-r5wl6equff] {
        right: 14%;
    }
}

/* media queries */
@media(max-width: 768px) {
    .banner-container[b-r5wl6equff] {
        height: 60vh;
    }

    #cloud-1[b-r5wl6equff], #cloud-5[b-r5wl6equff], #star-3[b-r5wl6equff], #star-5[b-r5wl6equff], #star-6[b-r5wl6equff], #star-blurred-2[b-r5wl6equff], #star-blurred-3[b-r5wl6equff] {
        display: none;
    }

    #cloud-3[b-r5wl6equff] {
        width: 40%;
    }

    #cloud-2[b-r5wl6equff] {
        left: 10%;
        width: 20%;
    }

    #cloud-4[b-r5wl6equff] {
        right: 10%;
        width: 20%;
    }

    #star-1[b-r5wl6equff] {
        left: 5%;
        top: 20%;
        width: 10%;
    }

    #star-2[b-r5wl6equff] {
        top: 10%;
        width: 5%;
    }

    #star-4[b-r5wl6equff] {
        width: 10%;
        top: 60%;
    }

    #star-7[b-r5wl6equff] {
        top: 10%;
        left: 65%;
    }

    #star-8[b-r5wl6equff] {
        left: 85%;
        width: 7%;
        top: 30%;
    }

    .caret img[b-r5wl6equff] {
        width: 30px;
    }

    h2[b-r5wl6equff], h3[b-r5wl6equff] {
        font-size: 24px;
    }

    h1[b-r5wl6equff] {
        font-size: 62px;
    }

    .card-pastel-blue[b-r5wl6equff], .luogo span:first-of-type[b-r5wl6equff] {
        font-size: 20px;
    }

    .card-pastel-blue[b-r5wl6equff] {
        padding-block: 24px;
        padding-inline: 12px;;
        border-radius: 24px;
    }

        .card-pastel-blue img[b-r5wl6equff] {
            width: 30px;
        }

    .luogo[b-r5wl6equff] {
        font-size: 16px;
    }

    #lista-regali[b-r5wl6equff], #momenti[b-r5wl6equff] {
        margin-bottom: 50px;
    }

    .card-pastel-pink[b-r5wl6equff] {
        border-radius: 24px;
        font-size: 20px;
        padding: 0;
    }

    .btn-pastel-blue[b-r5wl6equff] {
        font-size: 16px;
    }

        .btn-pastel-blue img[b-r5wl6equff] {
            width: 20px;
        }

    #camera > img[b-r5wl6equff] {
        width: 100px;
    }

    #cloud-bg-1[b-r5wl6equff], #cloud-bg-4[b-r5wl6equff], #cloud-bg-5[b-r5wl6equff], #cloud-bg-6[b-r5wl6equff] {
        width: 50%;
    }

    #star-blurred-1[b-r5wl6equff]{
        width: 30%;
        top: 10%;
    }

    #star-blurred-4[b-r5wl6equff]{
        right: 10%;
    }
}


@media(max-width: 468px){
    .banner-container[b-r5wl6equff] {
        height: 40vh;
    }
}
/* _content/PickDream/Components/Layout/Template/Eventi/Compleanni/Allegria Pastello.razor.rz.scp.css */
main[b-o7tz1etudq] {
    font-family: "Quicksand", sans-serif;
    color: var(--text-color);
    font-size: 28px;
}

h1[b-o7tz1etudq], h2[b-o7tz1etudq], h3[b-o7tz1etudq] {
    font-family: "Emilys Candy", serif;
    color: var(--heading-color);
    font-weight: 600;
}

h1[b-o7tz1etudq] {
    font-size: 64px;
}

h2[b-o7tz1etudq] {
    font-size: 48px;
}

h3[b-o7tz1etudq] {
    font-size: 40px;
}

section[b-o7tz1etudq] {
    position: relative;
    height: 100vh;
    background: var(--section-bg);
}

[id^=flag][b-o7tz1etudq], [id^=party][b-o7tz1etudq], [id^=balloon][b-o7tz1etudq], [id^=star][b-o7tz1etudq], #present[b-o7tz1etudq], [id^=heart][b-o7tz1etudq] {
    position: absolute;
}

#flag-flipped[b-o7tz1etudq] {
    transform: rotateY(180deg);
    right: 0;
}

#party-hat[b-o7tz1etudq] {
    top: -20%
}

#party-cupcake[b-o7tz1etudq] {
    bottom: 0;
    left: 50%;
}

#balloon-dettagli-1[b-o7tz1etudq] {
    width: 130px;
    left: 10%;
}

#balloon-dettagli-2[b-o7tz1etudq] {
    bottom: 0;
    right: 10%;
}

#star-dettagli-1[b-o7tz1etudq] {
    bottom: 5%;
    left: 20%;
}

#star-dettagli-2[b-o7tz1etudq] {
    top: 5%;
    right: 30%;
}

#star-dettagli-3[b-o7tz1etudq] {
    top: 0;
    right: 20%;
}

#star-dettagli-4[b-o7tz1etudq] {
    top: 10%;
    right: 25%;
}

#present[b-o7tz1etudq] {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    z-index: -1;
}

#balloon-regali-1[b-o7tz1etudq] {
    left: 10%;
}

#balloon-regali-2[b-o7tz1etudq] {
    bottom: 10%;
    right: 10%;
}

#star-regali-1[b-o7tz1etudq] {
    bottom: 10%;
    left: 10%;
}

#star-regali-2[b-o7tz1etudq] {
    top: 10%;
    right: 15%;
}

#heart-regali[b-o7tz1etudq] {
    top: 15%;
    right: 10%;
}

#balloon-rsvp[b-o7tz1etudq] {
    right: 10%;
}

#heart-rsvp-1[b-o7tz1etudq], #heart-rsvp-2[b-o7tz1etudq] {
    transform: rotateY(180deg);
}

#heart-rsvp-1[b-o7tz1etudq] {
    bottom: 25%;
    left: 50%;
}

#heart-rsvp-2[b-o7tz1etudq] {
    left: 52%;
    bottom: 18%;
    width: 50px;
}

#heart-rsvp-3[b-o7tz1etudq] {
    width: 55px;
    left: 55%;
    bottom: 20%;
}

#party-hat-rsvp[b-o7tz1etudq]{
    bottom: 30%;
    right: 25%;
}

div:has(.info-card)[b-o7tz1etudq] {
    height: 380px;
}


.info-card[b-o7tz1etudq] {
    background: var(--card-bg);
    border-radius: 32px;
    display: flex;
    justify-content: center;
    padding-block: 72px;
    text-align: center;
    height: 100%;
}

    .info-card.flipped[b-o7tz1etudq] {
        background: var(--card-bg-flipped);
    }

#lista-regali[b-o7tz1etudq] {
    text-align: center;
    font-weight: 500;
}

#momenti[b-o7tz1etudq]{
    text-align: center;
    height: 80vh;
}

#camera img[b-o7tz1etudq] {
    width: 200px;
    margin-bottom: 80px;
}

#switch[b-o7tz1etudq]{
    position: fixed;
    width: 80px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
}

@media (max-width: 767px){

    main[b-o7tz1etudq] {
        font-size: 24px;
    }


    section[b-o7tz1etudq] {

       height: 700px;

    }


    h1[b-o7tz1etudq]{
        font-size:50px;
    }


    h2[b-o7tz1etudq] {
        font-size: 38px;
    }

    p[b-o7tz1etudq]{
        font-size:20px;
    }

    .info-card[b-o7tz1etudq]{
        height:90%;
    }

    #flag[b-o7tz1etudq], #flag-flipped[b-o7tz1etudq]{
        height: 80px;
    }


    #party-hat[b-o7tz1etudq], #party-cupcake[b-o7tz1etudq], #balloon-regali-1[b-o7tz1etudq], #balloon-regali-2[b-o7tz1etudq], #balloon-rsvp[b-o7tz1etudq], #party-hat-rsvp[b-o7tz1etudq] {
        display: none;
    }



    #balloon-dettagli-1[b-o7tz1etudq] {
        width: 85px;
        left: 3%;
        top:10%;
    }

    #star-dettagli-2[b-o7tz1etudq] {
        top: 5%;
        right: 35%;
    }

    #star-dettagli-3[b-o7tz1etudq] {
        top: -5%;
        right: 10%;
    }

    #star-dettagli-4[b-o7tz1etudq] {
        top: 10%;
        right: 10%;
    }

    #star-dettagli-1[b-o7tz1etudq] {
        height:100px;
        bottom: 10%;
        left: 10%;

    }
    #star-regali-1[b-o7tz1etudq]{
        bottom:60%;
        left:20%;
    }

    #star-regali-2[b-o7tz1etudq] {
        top: 35%;
        right: 30%;
    }

    #balloon-dettagli-2[b-o7tz1etudq] {
        bottom: -15%;
        right: 5%;
    }

    #heart-regali[b-o7tz1etudq]{
        height:60px;
        top:40%;
        right:5%;

    }

    #heart-rsvp-1[b-o7tz1etudq]{
        bottom:100%;
        left:70%;
        height:44px;
    }

    #heart-rsvp-3[b-o7tz1etudq] {
        bottom: 98%;
        left: 82%;
        height: 30px;
        width:30px;
    }

    #heart-rsvp-2[b-o7tz1etudq] {
        bottom: 95%;
        left: 75%;
        height: 25px;
        width: 25px;
    }

    #present[b-o7tz1etudq] {
        height:470px;
        width:95%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        top: 75%;
        z-index: -1;
    }
}

@media (min-width: 768px) and (max-width: 1030px){

    main[b-o7tz1etudq] {
        font-size: 26px;
    }


    section[b-o7tz1etudq]{
        height:800px;
    }
     
    h1[b-o7tz1etudq]{
        font-size: 60px;
    }


    .info-card[b-o7tz1etudq]{
        height:300px;
    }


    #flag[b-o7tz1etudq], #flag-flipped[b-o7tz1etudq] {
        height: 160px;
    }

    #party-hat-mob[b-o7tz1etudq] {
        height: 120px;
        width: 110px;
        left: 60%;
        top: 35%;
    }

    #party-cupcake-mob[b-o7tz1etudq] {
        height: 160px;
        width: 210px;
        left:70%;
        top:60%;
    }

    #balloon-dettagli-1[b-o7tz1etudq]{
        width:100px;
        left:5%;
    }

    #star-dettagli-4[b-o7tz1etudq] {
        top:12%;
        right:20%;
    }

    #star-dettagli-3[b-o7tz1etudq]{
        top:-5%;
        right:15%;
    }


    #star-dettagli-1[b-o7tz1etudq]{
        bottom:10%;
        left:15%;
    }


    #balloon-dettagli-2[b-o7tz1etudq]{
        bottom:10%;
        right:10%;
    }

    #balloon-regali-1[b-o7tz1etudq]{
        left:3%;
        height:350px;
        bottom:55%;
    }
   

    #star-regali-2[b-o7tz1etudq]{
        top:-10%;
        right:20%;
    }

    #star-regali-1[b-o7tz1etudq] {
        bottom: 0%;
        left: 10%;
    }

    #heart-regali[b-o7tz1etudq]{
        top:0%;
        right:5%;
    }

    #balloon-regali-2[b-o7tz1etudq] {
        right: 5%;
       
        bottom: 0%;
    }

    #present[b-o7tz1etudq] {
        height: 700px;
        width: 85%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        top: 40%;
        z-index: -1;
    }

    #heart-rsvp-1[b-o7tz1etudq]{
        bottom:100%;
        left:60%;
    }

    #heart-rsvp-2[b-o7tz1etudq]{
        left:65%;
        bottom:90%;
    }

    #heart-rsvp-3[b-o7tz1etudq]{
        left:73%;
        bottom:95%;
    }

    #balloon-rsvp[b-o7tz1etudq], #party-hat-rsvp[b-o7tz1etudq]{
        display:none;
    }
}
/* _content/PickDream/Components/Layout/Template/Eventi/Compleanni/Diciotto.razor.rz.scp.css */
main[b-7ykokrjfnz] {
    font-family: "Bebas Neue", sans-serif;
    color: #404040;
    font-size: 24px;

}


.container-fluid[b-7ykokrjfnz]{
    gap:5rem;
}
#hero[b-7ykokrjfnz]{
    height:100vh;
}


h1[b-7ykokrjfnz] {
    font-size:64px;
    font-weight: 400;
    font-style: normal;
}

h2[b-7ykokrjfnz] {
    font-size: 80px;
    font-style: normal;
    background: linear-gradient(180deg,#E6E6E6 10%, #C0C0C0 50%, #A9A9A9 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;

}


h4[b-7ykokrjfnz] {
    font-size: 32px;
    color: #808080;
}


h5[b-7ykokrjfnz] {
    font-size: 32px;
    background: linear-gradient(178deg,rgba(169, 214, 191, 1) 0%, rgba(100, 181, 140, 1) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color:transparent;
    font-weight:600;
    letter-spacing:2px;
}

hr[b-7ykokrjfnz] {
    border: 2px solid #A9A9A9;
}


.btn-green[b-7ykokrjfnz] {
    background: linear-gradient(180deg,#A9D6BF 0%, #64B58C 100%);
    color: #E9E9E9;
    width: 290px;
    height: 60px;
    font-size: 18px;
    border-radius: 15px;
    box-shadow: inset -4px -4px 8px #51A97C, inset -1px -1px 4px #47946D,inset 4px 4px 8px #BDE0CE,inset 1px 1px 4px #D2EADE;
}

.btn-white[b-7ykokrjfnz] {
    color: #64B58C;
    width: 290px;
    height: 60px;
    font-size: 18px;
    border: 2px solid #64B58C;
    border-radius: 15px;
}

.btn-purple[b-7ykokrjfnz] {
    background: linear-gradient(180deg,#C5BADE 0%, #8B75BD 100%);
    color: #E9E9E9;
    width: 290px;
    height: 60px;
    font-size: 18px;
    border-radius: 15px;
    box-shadow: inset -4px -4px 8px #7A61B3, inset -1px -1px 4px #6A50A5,inset 4px 4px 8px #D4CBE6,inset 1px 1px 4px #B7A9D6;
}

.btn-grigio[b-7ykokrjfnz] {

    background: linear-gradient(180deg,#E6E6E6 10%,#C0C0C0 50%, #A9A9A9 100%);
    color: #E9E9E9;
    height: 60px;
    font-size: 18px;
    border-radius: 15px;
    box-shadow: inset -4px -4px 8px #B0B0B0, inset -1px -1px 4px #A1A1A1,inset 4px 4px 8px #F2F2F2,inset 1px 1px 4px #FAFAFA;
}


#giorni[b-7ykokrjfnz] {
    background-image: url('/images/temi/eventi/compleanni/Diciotto/Vector 1.png');
    background-repeat:no-repeat;
    background-size:contain;
    box-shadow: 0 8px 30px #473E3810;
    border-radius: 10px;
}

#freccia[b-7ykokrjfnz]{
    width:70px;
    margin-bottom:60px;
}

#presenza[b-7ykokrjfnz]{
    width:190px;
}
/* _content/PickDream/Components/Layout/Template/Eventi/Compleanni/Sfumature di Festa.razor.rz.scp.css */
main[b-op1f39wsjw] {
    font-family: "Lato", sans-serif;
    color: var(--text-color);
    font-size: 24px;
    background-color: #FDFBF7;
}

h1[b-op1f39wsjw], h2[b-op1f39wsjw], h3[b-op1f39wsjw] {
    font-family: Ubuntu,sans-serif;
    font-weight: bold;
    text-align: center;
}

h1[b-op1f39wsjw] {
    font-size: 80px;
    letter-spacing: -9px;
}

h2[b-op1f39wsjw] {
    font-size: 48px;
    letter-spacing: -3px;
}

h3[b-op1f39wsjw] {
    font-size: 40px;
    letter-spacing: -1px;
}

.subtitle[b-op1f39wsjw] {
    letter-spacing: -1px;
    font-weight: 500;
}

#hero[b-op1f39wsjw] {
    position: relative;
    height: 100vh;
    background: #FDFBF7;
}

/*#dettagli {
    background: linear-gradient(180deg,rgba(243, 241, 237, 0.3) 0%, rgba(253, 251, 247, 1) 30%);
}*/

section[b-op1f39wsjw] {
    position: relative;
    height: fit-content;
    background: #FDFBF7;
}


.gray-section[b-op1f39wsjw] {
    background: #F3F1ED;
    box-shadow: 0px 0px 50px 16px #F3F1ED;
    z-index: 1
}

.info-card[b-op1f39wsjw] {
    background: #ECE8DF;
    background: linear-gradient(180deg, rgba(236, 232, 223, 0.3) 0%, rgba(224, 219, 209, 0.47) 100%);
    height: fit-content;
    border: 2px solid #F0EBE5;
    border-radius: 48px;
    transition: transform 0.7s ease,box-shadow 0.7s ease;
}

    .info-card:hover[b-op1f39wsjw] {
        transform: scale(1.02);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

#regali-cont[b-op1f39wsjw] {
    border: 1px solid #DCC4A3 !important;
    transition: transform 0.5s ease,box-shadow 0.5s ease;
    
}

    #regali-cont #regalo[b-op1f39wsjw] {
        transition: transform 0.5s ease;
    }

    #regali-cont:hover #regalo[b-op1f39wsjw] {
        transform: rotate(20deg);
    }




.form-container[b-op1f39wsjw] {
    background-color: #F5F4F0;
    border-radius: 30px;
}



.btn-dettagli[b-op1f39wsjw] {
    background-color: #ACB894;
    color: #F5F4EF;
    transition: transform 0.5s ease;
}

    .btn-dettagli img[b-op1f39wsjw] {
        transition: transform 0.5s ease;
        vertical-align: text-top;
    }

    .btn-dettagli:hover[b-op1f39wsjw] {
        transform: translateY(-5px);
    }

        .btn-dettagli:hover #heart[b-op1f39wsjw] {
            transform: rotate(20deg);
        }

        .btn-dettagli:hover #dove[b-op1f39wsjw] {
            transform: rotate(-45deg);
        }




.btn-spotify[b-op1f39wsjw] {
    background-color: #1DB954;
    color: white;
}

.btn-form-blue[b-op1f39wsjw] {
    background-color: #263340;
    color: white;
}

.icon-dett[b-op1f39wsjw] {
    height: 32px;
    width: 32px;
}


.icon-container[b-op1f39wsjw] {
    display: flex;
    justify-content: center; /* centra orizzontalmente */
    align-items: center;
    background-color: #DCC4A333;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.note[b-op1f39wsjw] {
    height: 28px;
}

.genre[b-op1f39wsjw] {
    background-color: #F5F4F0;
    height: fit-content;
    width: fit-content;
    border-radius: 30px;
}

#btn-head[b-op1f39wsjw] {
    background-color: transparent;
    color: black;
    border: solid 1px gray;
    width: 320px;
}


#btn-galleria[b-op1f39wsjw] {
    color: #ACB894;
    border: 1px solid;
    
}

    #btn-galleria:hover[b-op1f39wsjw]  {
        color: white;
        background: #ACB894;
        border: 1px solid;

    }

        

#regali-btn[b-op1f39wsjw] {
    background-color: #DCC4A3;
    color: white;
    transition: transform 0.5s ease;
}


    #regali-btn:hover[b-op1f39wsjw] {
        transition: transform 0.5s ease;
    }

    #regali-btn img[b-op1f39wsjw] {
        transition: transform 0.5s ease;
    }

    #regali-btn:hover[b-op1f39wsjw] {
        transform: translateY(-5px);
    }


    #regali-btn:hover img[b-op1f39wsjw] {
        transform: rotate(20deg);
    }

#sf-orange[b-op1f39wsjw] {
    z-index: 1;
    top:40vh;
}

#sf-green[b-op1f39wsjw] {
    z-index: 1;
    right: 0;
}

#sf-orange-ph[b-op1f39wsjw] {
    height:40vh;
    z-index: 0;
    top: 60vh;
}

#sf-green-ph[b-op1f39wsjw] {
    height: 40vh;
    z-index: 0;
    right: 0;
}


#sf-greenw-ph[b-op1f39wsjw] {
    height: 40vh;
    z-index: 1;
    left: 0;
}


#sf-brown[b-op1f39wsjw] {
    z-index: 1;
    right: 0;
    top:55vh;
}

#un-orange[b-op1f39wsjw] {
    left: 0;
    z-index: 2;
   bottom:40vh;
}

#un-black[b-op1f39wsjw] {
    right: 0;
    z-index: 1;
    bottom: 0vh;
}

.music[b-op1f39wsjw] {
    width: 400px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

    .music .frame[b-op1f39wsjw] {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%; /* dimensione dell'immagine */
        height: auto;
        opacity: 0;
        animation: onda-b-op1f39wsjw 0.9s infinite; /* durata totale = numero immagini x 0.7s */
    }

    .music .frame1[b-op1f39wsjw] {
        animation-delay: 0s;
    }

    .music .frame2[b-op1f39wsjw] {
        animation-delay: 0.3s;
    }

    .music .frame3[b-op1f39wsjw] {
        animation-delay: 0.6s;
    }

@keyframes onda-b-op1f39wsjw {
    0%, 33% {
        opacity: 1;
    }
    /* visibile per 0.7s */
    34%, 100% {
        opacity: 0;
    }
    /* invisibile il resto del tempo */
}

@media (max-width: 767px) {

    h1[b-op1f39wsjw]{
        font-size:64px;
        letter-spacing:-5px;
    }

    #ph-h1[b-op1f39wsjw]{
        font-size:48px;
    }


    h2[b-op1f39wsjw] {
        font-size: 44px;
        letter-spacing: -2px;
    }

    h3[b-op1f39wsjw]{
        font-size:36px;
    }

    .btn-dettagli[b-op1f39wsjw]{
        width:200px !important;
    }

    .sp-mobile[b-op1f39wsjw]{
        display:block !important;
    }

    .sp-desk[b-op1f39wsjw]{
        display:none !important;
    }


    .rettangolo[b-op1f39wsjw]{
        height:5rem;
    }
    #sf-green[b-op1f39wsjw] {
       height:11rem;
    }

    #sf-greenw[b-op1f39wsjw]{
        height:10rem;
    }

    #sf-orange[b-op1f39wsjw] {
        height:12rem;
        top:55vh;
    }

    #sf-brown[b-op1f39wsjw] {
        height: 14rem;
        top:85vh;
    }

    #un-orange[b-op1f39wsjw] {
        display:none;
    }

    #un-black[b-op1f39wsjw] {
       display:none;
    }

    .music[b-op1f39wsjw] {
      display:none;
    }


    #sf-orange-ph[b-op1f39wsjw] {
        height: 20vh;
        z-index: 0;
        top: 40vh;
    }

    #sf-green-ph[b-op1f39wsjw] {
        height: 15vh;
        z-index: 0;
        right: 0;
    }


    #sf-greenw-ph[b-op1f39wsjw] {
        height: 15vh;
        z-index: 0;
        left: 0;
    }


}
@media (min-width: 768px) and (max-width: 1030px) {

    h2[b-op1f39wsjw] {
        font-size: 52px;
        letter-spacing: -3px;
    }

    h3[b-op1f39wsjw]{
        font-size:44px;
    }

    #sf-greenw[b-op1f39wsjw] {
        height: 20rem;
    }

    #sf-green[b-op1f39wsjw] {
        height: 22rem;
        
    }

    #sf-orange[b-op1f39wsjw] {
        height: 24rem;
        top: 11%;
    }

    #sf-brown[b-op1f39wsjw] {
        height: 28rem;
        top: 17%;
    }


    #un-orange[b-op1f39wsjw] {
        top:300vh;
        height: 27rem;
    }

    #un-black[b-op1f39wsjw] {
        height: 28rem;
        top: 80%;
    }

    .rettangolo[b-op1f39wsjw]{
        height:8rem;
    }

    #sf-orange-ph[b-op1f39wsjw] {
        height: 20vh;
        z-index: 0;
        top: 60vh;
    }

    #sf-green-ph[b-op1f39wsjw] {
        height: 20vh;
        z-index: 0;
        right: 0;
    }


    #sf-greenw-ph[b-op1f39wsjw] {
        height: 20vh;
        z-index: 0;
        left: 0;
    }
}
/* _content/PickDream/Components/Layout/Template/Eventi/Sportivi/Calcio/CUR Theme.razor.rz.scp.css */
.contenitore[b-k03ljj7gw4] {
    background-color: #1b172a;
    min-height: 95vh;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.contenitore-foto[b-k03ljj7gw4] {
    border: solid 3px #e6b800;
    border-radius: 25px;
}

.logo-cur[b-k03ljj7gw4] {
    max-height: 50px;
    max-width: 40%; /* Ridotto per mobile */
    object-fit: contain;
    height: auto;
    width: auto;
}

.logo-pd[b-k03ljj7gw4] {
    max-height: 30px;
    max-width: 40%; /* Ridotto per mobile */
    object-fit: contain;
    height: auto;
    width: auto;
}

/* Responsive per mobile */
@media (max-width: 576px) {
    .logo-cur[b-k03ljj7gw4], .logo-pd[b-k03ljj7gw4] {
        max-width: 35%;
    }
}
/* _content/PickDream/Components/Layout/Template/Matrimoni/Elegant Theme – Velvet Reverie.razor.rz.scp.css */
/* tipografia */
.text-accent[b-aspte6m2ym] {
    color: #873f1b;
    font-family: "Monsieur La Doulaise", cursive;
    font-size: 180px;
}

h1[b-aspte6m2ym], h2[b-aspte6m2ym], h3[b-aspte6m2ym] {
    color: #565050;
    font-family: "Crimson Pro", serif;
    text-transform: uppercase;
}

h1[b-aspte6m2ym]{
    font-weight: 600;
}

h1[b-aspte6m2ym]{
    letter-spacing: 10px;
}

h2[b-aspte6m2ym] {
    letter-spacing: 7px;
}

h3[b-aspte6m2ym]{
    letter-spacing: 5px;
    font-weight: 300;
}

h4[b-aspte6m2ym] {
    color: #873f1b;
    font-family: "Cormorant", serif;
    text-transform: uppercase;
}

div[b-aspte6m2ym] {
    font-family: "Cormorant", serif;
    color: #000000;
}

p[b-aspte6m2ym], h1[b-aspte6m2ym], h2[b-aspte6m2ym], h3[b-aspte6m2ym], h4[b-aspte6m2ym] {
    margin-bottom: 0;
}

a[b-aspte6m2ym]{
    color: #000000;
}

button[b-aspte6m2ym] {
    font-family: "Josefin Sans", sans-serif;
    width: fit-content;
}

/* immagini */
#divisore[b-aspte6m2ym] {
    width: 800px;
}

#freccia[b-aspte6m2ym] {
    position: absolute;
    bottom: 30%;
    left: 40%;
    width: 180px;
    transform: rotate(12deg);
}

.background-hearts[b-aspte6m2ym] {
    position: absolute;
    top: 0;
    left: 0;
    width: 525px;
    opacity: 0.2;
}

#hearts[b-aspte6m2ym] {
    position: absolute;
    top: -60px;
    right: 200px;
}

.cornice-countdown[b-aspte6m2ym] {
    max-width: 70%;
}

#cornice-countdown-top[b-aspte6m2ym]{
    padding-bottom: 30px;
}

#cornice-countdown-bottom[b-aspte6m2ym] {
    padding-top: 30px;
}

#wedding-day[b-aspte6m2ym] {
    width: 780px;
    padding-bottom: 50px;
}

/* componenti */
.btn-outline[b-aspte6m2ym] {
    padding-inline: 20px;
    padding-block: 10px;
    outline: 1px solid #aa8379;
    border-radius: 20px;
    background: transparent;
    color: #aa8379;
    transition: all 0.5s;
}

.btn-outline:hover[b-aspte6m2ym], .btn-outline:active[b-aspte6m2ym] {
    background: #aa8379;
    outline: 1px solid transparent;
    color: white;
}

    .btn-outline:focus:not(:focus-visible)[b-aspte6m2ym] {
        outline: 1px solid #aa8379;
    }

.map-container[b-aspte6m2ym]{
    width: 800px;
    height: 450px;
}

    .map-container > iframe[b-aspte6m2ym]{
        height: 100%;
        width: 100%;
    }

#p-cerimonia[b-aspte6m2ym] {
    max-width: 90%;
    color: #565050;
}



.time-line-block[b-aspte6m2ym] {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
}

/* animazioni */
#save-the-date[b-aspte6m2ym], #sposi[b-aspte6m2ym], #freccia.in-view[b-aspte6m2ym], #hearts.in-view[b-aspte6m2ym] {
    animation: fadeIn 3s;
}

#wedding-day.in-view[b-aspte6m2ym], #lista-nozze.in-view[b-aspte6m2ym], #nostri-momenti.in-view[b-aspte6m2ym] {
    animation: fadeInUp 2s;
}

@media(max-width: 768px) {
    .text-accent[b-aspte6m2ym] {
        font-size: 100px;
    }

    #divisore[b-aspte6m2ym] {
        width: 80vw;
    }

    #freccia[b-aspte6m2ym] {
        bottom: 80%;
        left: 69%;
        width: 140px;
        transform: rotate(126deg);
    }

    .cornice-countdown[b-aspte6m2ym] {
        max-width: 100%;
    }

    #wedding-day[b-aspte6m2ym] {
        width: 90vw;
        padding-bottom: 30px;
    }

    .background-hearts[b-aspte6m2ym] {
        width: 50vw;
    }

    #hearts[b-aspte6m2ym] {
        position: absolute;
        top: -20px;
        right: 30px;
        width: 50px;
    }
}
/* _content/PickDream/Components/Layout/Template/Matrimoni/Floral Theme – Petal Poem.razor.rz.scp.css */
/* immagini */
.background[b-rtuehp4d9g] {
    position: absolute;
}

    .background.top[b-rtuehp4d9g] {
        top: -100px;
        right: 0;
        width: 80%;
    }

    .background.bottom[b-rtuehp4d9g] {
        width: 100%;
        height: 700px;
        position: absolute;
        bottom: 0;
        left: 0;
        overflow: hidden;
    }

        .background.bottom > img[b-rtuehp4d9g] {
            position: absolute;
            bottom: -215px;
            left: 0;
        }

/* tipografia */
div[b-rtuehp4d9g] {
    text-align: center;
    font-family: "Cormorant", serif;
}


h1[b-rtuehp4d9g], h2[b-rtuehp4d9g], h3[b-rtuehp4d9g], h4[b-rtuehp4d9g] {
    text-transform: uppercase;
    word-spacing: 5px;
    font-weight: 700;
}

p[b-rtuehp4d9g]{
    margin-bottom: 0;
}

button[b-rtuehp4d9g] {
    font-family: "Josefin Sans", sans-serif;
}

.wedding-day > p:last-child[b-rtuehp4d9g] {
    margin-top: -55px;
}

.accent-font[b-rtuehp4d9g] {
    color: initial;
    text-transform: initial;
    font-weight: initial;
    font-family: "Lavishly Yours", cursive;
}

/* componenti */
.display-data[b-rtuehp4d9g] {
    height: 150px;
    text-transform: uppercase;
    position: relative;
    font-size: 30px;
    color: initial;
    font-weight: 600;
}

    .display-data div[b-rtuehp4d9g] {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .display-data > div:nth-child(2)[b-rtuehp4d9g] {
        border-left: 5px solid #8f5e36;
        border-right: 5px solid #8f5e36;
        line-height: 40px;
        justify-content: space-around;
    }

        .display-data > div:nth-child(2) > div:nth-child(2)[b-rtuehp4d9g]{
            margin-top: -20px;
        }

.map-container[b-rtuehp4d9g] {
    width: 600px;
    height: 450px;
}

    .map-container iframe[b-rtuehp4d9g] {
        width: 100%;
        height: 100%;
    }


.btn-outline[b-rtuehp4d9g] {
    padding-inline: 20px;
    padding-block: 10px;
    outline: 1px solid black;
    border-radius: 20px;
    background: transparent;
    color: #aa8379;
    transition: all 0.5s;
}

    .btn-outline:hover[b-rtuehp4d9g], .btn-outline:active[b-rtuehp4d9g] {
        background: #aa8379;
        outline: 1px solid transparent;
        color: white;
    }

    .btn-outline:focus:not(:focus-visible)[b-rtuehp4d9g] {
        outline: 1px solid black;
    }


/* utlilities */
.color-accent[b-rtuehp4d9g] {
    color: #8f5e36;
}

.color-accent-dark[b-rtuehp4d9g] {
    color: #484848;
}

.color-accent-light[b-rtuehp4d9g] {
    color: #aa8379;
}

/* animazioni */
#sposi[b-rtuehp4d9g], .map-container[b-rtuehp4d9g]{
    animation: fadeIn 4s;
}

#day[b-rtuehp4d9g] {
    animation: fadeInRight 3s;
}

#month[b-rtuehp4d9g] {
    animation: fadeIn 3s;
}

#hour[b-rtuehp4d9g] {
    animation: fadeInLeft 3s;
}

.wedding-day.in-view > p[b-rtuehp4d9g], #nostri-momenti.in-view[b-rtuehp4d9g], #lista-nozze.in-view[b-rtuehp4d9g] {
    animation: fadeInUp 3s;
}

.wedding-day.in-view > p:last-child[b-rtuehp4d9g] {
    animation-delay: 1s;
}


@media(max-width: 768px) {
    .background.top[b-rtuehp4d9g] {
        top: -20px;
    }

    .background.bottom[b-rtuehp4d9g] {
        height: 500px;
    }

        .background.bottom > img[b-rtuehp4d9g] {
            left: -16px;
            bottom: -87%;
        }

    .display-data[b-rtuehp4d9g] {
        height: 100px;
        font-size: 18px;
    }

        .display-data > div:nth-child(2)[b-rtuehp4d9g] {
            border-left-width: 3px;
            border-right-width: 3px;
            line-height: 20px;
        }

            .display-data > div:nth-child(2) > div:nth-child(2)[b-rtuehp4d9g] {
                margin-top: -12px;
            }

    .wedding-day > p:last-child[b-rtuehp4d9g] {
        margin-top: -40px;
    }

    #vi-aspettiamo[b-rtuehp4d9g] {
        line-height: 25px;
    }
}
/* _content/PickDream/Components/Layout/Template/Matrimoni/Nature Theme – Evergreen Haze.razor.rz.scp.css */

div.main[b-ygx2vrk0ku] {
    font-family: "Cormorant", serif;
}

/* immagini */
.img-top[b-ygx2vrk0ku] {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 30%;
}

.background-pattern[b-ygx2vrk0ku] {
    width: 30%;
    opacity: 10%;
    position: absolute;
}

.low-z-index > .background-pattern:not(:last-child)[b-ygx2vrk0ku] {
    transform: rotate(90deg);
    right: 0;
}

.low-z-index > .background-pattern:first-child[b-ygx2vrk0ku] {
    top: 30%;
}

.low-z-index > .background-pattern:nth-child(2)[b-ygx2vrk0ku] {
    right: 0;
    top: 40%;
}

.low-z-index > .background-pattern:last-child[b-ygx2vrk0ku] {
    width: 30%;
    left: 0;
    top: 70%;
}

.img-bottom[b-ygx2vrk0ku] {
    position: absolute;
    bottom: 0px;
    right: -30px;
    max-width: 30%;
    transform: rotate(180deg)
}

.img-bottom-left[b-ygx2vrk0ku] {
    position: absolute;
    bottom: 100px;
    left: -100px;
    max-height: 400px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1) rotate(-30deg);
}

h1[b-ygx2vrk0ku] {
    font-family: "Festive", cursive;
    font-weight: 400;
    font-style: normal;
}

#data-container[b-ygx2vrk0ku] {
    color: #565050;
    letter-spacing: 5px;
}

.divisore-sposi[b-ygx2vrk0ku] {
    max-width: 70%
}

.btn-outline-dark[b-ygx2vrk0ku]{
    transition: all 0.5s;
}

.map-container[b-ygx2vrk0ku] {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
}

.iframe-wrapper[b-ygx2vrk0ku] {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Square aspect ratio for mobile */
    overflow: hidden;
}

.iframe-wrapper iframe[b-ygx2vrk0ku] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Keep existing frame styles but adjust for mobile */
.cornice-mappa-1[b-ygx2vrk0ku] {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    max-width: 180px;
    z-index: -1;
    pointer-events: none;
}

.cornice-mappa-2[b-ygx2vrk0ku] {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    max-width: 180px;
    z-index: -1;
    pointer-events: none;
}


.img-right[b-ygx2vrk0ku] {
    position: absolute;
    right: -100px;
    top: 50vh;
    transform: translateY(-50%) rotate(340deg);
    margin-top: calc(50vh);
    max-width: 200px;
}

.img-disegno[b-ygx2vrk0ku] {
    position: absolute;
    right: 15vw;
    top: -15%;
    max-width: 200px;
}

.div-reminder[b-ygx2vrk0ku] {
    position: absolute;
    top: 55%;
    left: 15%;
    margin-top: -55px;
    margin-left: -15px;
    width: 240px;
    padding: 15px 40px; 
    transform: rotate(-15deg);
    background-image: url('/images/temi/matrimoni/Nature_Theme_–_Evergreen_Haze/cornice-div.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.low-z-index[b-ygx2vrk0ku]{
    z-index: -1;
}

/* animazioni */
.img-top[b-ygx2vrk0ku], .img-right.in-view[b-ygx2vrk0ku], .img-bottom.in-view[b-ygx2vrk0ku], .img-bottom-left.in-view[b-ygx2vrk0ku]{
    animation: fadeIn 4s;
}

h1[b-ygx2vrk0ku], #data-container > h2:nth-child(2)[b-ygx2vrk0ku], #sposi[b-ygx2vrk0ku], .div-reminder.in-view[b-ygx2vrk0ku], .img-disegno.in-view[b-ygx2vrk0ku] {
    animation: fadeIn 3s;
}

#data-container > h2:first-child[b-ygx2vrk0ku] {
    animation: fadeInRight 3s;
}

#data-container > h2:last-child[b-ygx2vrk0ku], .cornice-mappa-2.in-view[b-ygx2vrk0ku] {
    animation: fadeInLeft 2s;
}

.cornice-mappa-1.in-view[b-ygx2vrk0ku] {
    animation: fadeInRight 2s;
}

#nostri-momenti.in-view[b-ygx2vrk0ku], #lista-nozze.in-view[b-ygx2vrk0ku], #vi-aspettiamo.in-view[b-ygx2vrk0ku]{
    animation: fadeInUp 2s;
}

/* Media queries for responsive adjustments */
@media (min-width: 768px) {
    .iframe-wrapper[b-ygx2vrk0ku] {
        padding-bottom: 75%; /* 4:3 aspect ratio for larger screens */
    }

    .map-container[b-ygx2vrk0ku] {
        max-width: 600px;
    }

    .cornice-mappa-1[b-ygx2vrk0ku], .cornice-mappa-2[b-ygx2vrk0ku] {
        width: 50%;
        max-width: 220px;
    }
}

@media (max-width: 767px){
    .img-top[b-ygx2vrk0ku] {
        max-width: 60%;
    }

    .img-right[b-ygx2vrk0ku] {
        max-width: 155px;
    }

    .img-bottom[b-ygx2vrk0ku] {
        max-width: 70%;
    }

    .img-bottom-left[b-ygx2vrk0ku] {
        bottom: 15%;
        max-height: 255px;
    }

    .divisore-sposi[b-ygx2vrk0ku] {
        max-width: 100%
    }

    #sposi[b-ygx2vrk0ku]{
        line-height: 60px;
    }

    .div-reminder[b-ygx2vrk0ku] {
        position: static;
        margin-top: 50px; 
        margin-left: 15%; 
    }

    .img-disegno[b-ygx2vrk0ku] {
        right: 0;
        top: -10%;
        max-width: 100px;
    }
}
/* _content/PickDream/Components/Layout/Template/Matrimoni/Romantic Theme – Whispers of Amour.razor.rz.scp.css */
/* immagini */
.img-top-right[b-5bayrz0pvd] {
    position: absolute;
    max-width: 40%;
}

.flower-top-right[b-5bayrz0pvd]{
    top: -340px;
    right: -10%;
    opacity: 0.5;
    transform: rotate(320deg);
}

.gold-top-right[b-5bayrz0pvd] {
    right: 2%;
    top: -400px;
    opacity: 0.7;
}

.gold-left[b-5bayrz0pvd], .gold-right[b-5bayrz0pvd]{
    position: absolute;
    width: 24%;
    opacity: 0.7;
}

.gold-left[b-5bayrz0pvd] {
    bottom: 45%;
    left: -4%;
    transform: rotate(239deg);
}

.gold-right[b-5bayrz0pvd] {
    bottom: 30%;
    right: -4%;
    transform: rotate(28deg);
}


.img-bottom-left[b-5bayrz0pvd] {
    transform: rotate(136deg);
    opacity: 0.5;
    margin-left: -305px;
    margin-top: 100px;
}

.gold-bottom-left[b-5bayrz0pvd] {
    position: absolute;
    opacity: 0.7;
    bottom: 0;
    left: -143px;
    transform: rotate(180deg);
}

.img-bottom-left-container[b-5bayrz0pvd] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 700px;
    overflow: hidden;
}


/* titoli */
div[b-5bayrz0pvd], button[b-5bayrz0pvd] {
    font-family: "Josefin Sans", sans-serif;
}

h1[b-5bayrz0pvd] {
    font-family: "Great Vibes", cursive;
    font-size: 120px;
    word-spacing: 20px;
}

h2[b-5bayrz0pvd]{
    word-spacing: 15px;
    letter-spacing: 5px;
}

h2[b-5bayrz0pvd], h3[b-5bayrz0pvd], h4[b-5bayrz0pvd] {
    font-family: "Cormorant", serif;
    text-transform: uppercase;
}

h5[b-5bayrz0pvd]{
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0;
}

p[b-5bayrz0pvd] {
    font-family: "Cormorant", serif;
    margin-bottom: 0;
}

/* componenti */
.display-data[b-5bayrz0pvd]{
    height: 100px;
    text-transform: uppercase;
    position: relative;
}
.display-data div[b-5bayrz0pvd]{
    display: flex;
    align-items: center;
}


    .display-data div:nth-child(2)[b-5bayrz0pvd] {
        border-left: 5px solid #873f1b;
        border-right: 5px solid #873f1b;
    }

.timeline-card[b-5bayrz0pvd] {
    width: 300px;
    aspect-ratio: 1;
    border: 3px solid #873f1b;
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.timeline-card-cerimonia[b-5bayrz0pvd]{
    background-image: url(images/temi/matrimoni/Romantic_Theme_–_Whispers_of_Amour/cerimonia.jpg)
}

.timeline-card-ricevimento[b-5bayrz0pvd]{
    background-image: url(images/temi/matrimoni/Romantic_Theme_–_Whispers_of_Amour/ricevimento.jpg)
}

.timeline-card-party[b-5bayrz0pvd] {
    background-image: url(images/temi/matrimoni/Romantic_Theme_–_Whispers_of_Amour/wedding-party.jpg)
}

.timeline-info[b-5bayrz0pvd]{
    text-transform: capitalize;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 22px;
}

.timeline-info a[b-5bayrz0pvd]{
    color: inherit;
    text-transform: none;
}

.slider-container[b-5bayrz0pvd] {
    width: 500px;
    aspect-ratio: 4/3;
    padding-inline: 36px;
    padding-block: 56px;
    position: relative;
    display: flex;
    align-items: center;
}

.cornice-container[b-5bayrz0pvd] {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: url(images/temi/matrimoni/Romantic_Theme_–_Whispers_of_Amour/cornice.png);
    filter: contrast(0.2);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.carousel-inner[b-5bayrz0pvd],
.carousel-item[b-5bayrz0pvd] {
    width: 100%;
    height: 100%;
}

    .carousel-item img[b-5bayrz0pvd] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
.slider-container .carousel[b-5bayrz0pvd] {
    width: 100%;
    height: 100%;
    position: relative;
}


.btn-outline[b-5bayrz0pvd]{
    padding-inline: 20px;
    padding-block: 10px;
    outline: 2px solid black;
    border-radius: 20px;
    background: transparent;
    transition: all 0.5s;
}

    .btn-outline:hover[b-5bayrz0pvd], .btn-outline:active[b-5bayrz0pvd] {
        background: #873f1b;
        outline: 2px solid white;
        color: white;
    }

    .btn-outline:focus:not(:focus-visible)[b-5bayrz0pvd] {
        outline: 2px solid black;
    }

/* utilities */
.color-accent[b-5bayrz0pvd] {
    color: #873f1b;
}

.color-accent-dark[b-5bayrz0pvd] {
    color: #6b4d33;
}

/* animazioni */
@keyframes fadeInPartial-b-5bayrz0pvd{
    from{
        opacity: 0;
    }
    to{
        opacity: 0.5;
    }
}

@keyframes fadeInPartial2-b-5bayrz0pvd{
    from{
        opacity: 0;
    }
    to{
        opacity: 0.7;
    }
}

.flower-top-right[b-5bayrz0pvd], .img-bottom-left.in-view[b-5bayrz0pvd] {
    animation: fadeInPartial-b-5bayrz0pvd 4s;
}

.gold-top-right[b-5bayrz0pvd], .gold-left.in-view[b-5bayrz0pvd], .gold-right.in-view[b-5bayrz0pvd], .gold-bottom-left.in-view[b-5bayrz0pvd] {
    animation: fadeInPartial2-b-5bayrz0pvd 4s;
}

#sposi[b-5bayrz0pvd], #day.in-view[b-5bayrz0pvd], .cornice-container.in-view[b-5bayrz0pvd], #timeline h5.in-view[b-5bayrz0pvd] {
    animation: fadeIn 3s;
}

#month.in-view[b-5bayrz0pvd] {
    animation: fadeInRight 3s;
}

#hour.in-view[b-5bayrz0pvd] {
    animation: fadeInLeft 3s;
}

.timeline-card.in-view[b-5bayrz0pvd] {
    animation: fadeInDown 2s;
}

.timeline-card-ricevimento.in-view[b-5bayrz0pvd]{
    animation-delay: 0.25s;
}

.timeline-card-party.in-view[b-5bayrz0pvd]{
    animation-delay: 0.5s;
}

.timeline-info.in-view[b-5bayrz0pvd], #nostri-momenti.in-view[b-5bayrz0pvd], #lista-nozze.in-view[b-5bayrz0pvd] {
    animation: fadeInUp 2s;
}


/* responsive */
@media(max-width: 768px) {
    .img-top-right[b-5bayrz0pvd] {
        position: absolute;
        max-width: 80%;
    }

    .flower-top-right[b-5bayrz0pvd] {
        top: -125px;
        right: -33%;
    }

    .gold-top-right[b-5bayrz0pvd] {
        right: -37%;
        top: -105px;
    }

    .gold-left[b-5bayrz0pvd], .gold-right[b-5bayrz0pvd] {
        width: 55%;
    }

    .gold-left[b-5bayrz0pvd] {
        left: -10%;
    }

    .gold-right[b-5bayrz0pvd] {
        right: -10%;
    }

    .img-bottom-left-container[b-5bayrz0pvd] {
        height: 400px;
        width: 70%;
    }

    .gold-bottom-left[b-5bayrz0pvd] {
        bottom: -248px;
        left: -415px;
        transform: rotate(134deg);
    }

    .img-bottom-left[b-5bayrz0pvd] {
        margin-left: -80px;
        margin-top: 210px;
    }

    h1[b-5bayrz0pvd] {
        font-size: 60px;
        word-spacing: 5px;
    }

    .display-data[b-5bayrz0pvd] {
        height: 60px;
    }

        .display-data div:nth-child(2)[b-5bayrz0pvd] {
            border-left-width: 3px;
            border-right-width: 3px;
        }
}
