:root {
    --dark-color: #090909;
    --white-color: #ffffff;
    --dark-gray-color: #252525;
    --darker-gray-color: #111111;
    --gray-color: #747474;
    --light-gray-color: #c0c0c0;
    --lighter-gray-color: #e9e9e9;
    --ultra-light-gray-color: #fbfbfb;

}


@keyframes zoomInOut {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}

.party-container {
    width: 100%;
}

.party-header {
    width: 100%;
    height: 70px;
    position: fixed;
    padding: 10px 0px 10px 0px;
    font-weight: 100;
    font-size: 20px;
    top: 0px;
    z-index: 10;
    background: var(--first-color);
}

.party-menu-container {
    height: 60px;
    display: block;
    width: 100%;
    position: fixed;
    top: 90px;
    background: var(--pink-color);
    color: var(--white-color);
}

.party-menu {
    width: 600px;
    /* display: grid;
    grid-template-columns: repeat(8, 1fr); */
    display: flex;
    margin: 0px auto;
    height: 100%;
    align-content: center;
    font-size: 20px;
    padding: 15px 0px 0px 0px;
}

.menu-element {
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.party-notification {
    height: 40px;
    display: flex;
    width: 100%;
    position: fixed;
    background: var(--dark-pink-color);
    color: var(--white-color);
    align-items: center;
    justify-content: center;
    top: 150px;
}

.spotify-frame {
    width: 100%;
    /* margin: 100px 0px 0px 0px; */
    position: fixed; 
    bottom: 0px;
}

.party-body {
    width: 100%;
    margin: 90px 0px 0px 0px;
}

.party-messages {
    width: 100%;
}

.event-title, .event-time-container, .event-thanks, .event-slide-gallery, .event-addresses, .event-dresscode, 
.event-timeline, .event-gift-tables, .event-social, .event-confirmation, .event-bye {
    margin: 0px 0px 0px 0px;
    min-height: 400px;
    /* border-bottom: solid 1px var(--second-color); */
    height: calc(100vh - 120px);
}

.event-title {
    margin: 80px 0px 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/5447182.jpg?v107);
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation-name: fadeIn;
    animation-duration:  2s;
    animation-timing-function: ease;

}

.event-time-container {
    margin: 80px 0px 0px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/5447182.jpg?v107);
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation-name: fadeIn;
    animation-duration:  2s;
    animation-timing-function: ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.75;
    }
    100% {
        opacity: 1;
    }
}

.event-names {
    text-align: center;
    font-size: 105px;
    color: var(--fourth-color);
    font-family: Euphoria, Verdana;
    animation-name: sizeGrow;
    animation-duration:  2s;
    animation-timing-function: ease;
    /* animation-iteration-count: 3; */
    /* animation-delay: 2s; */
}

@keyframes sizeGrow {
    from {
        top: -1000px;
        font-size: 0px;
    }
    to {
        top: 0px;
        font-size: 105px;
    }
}

.event-type {
    text-align: center;
    font-size: 40px;
    font-weight: 100;
    margin: 30px 0px;
    animation-name: topToDown;
    animation-duration:  2s;
    animation-timing-function: ease;
    /* animation-delay: 3s; */
}

@keyframes topToDown {
    0% {
        transform: translateY(1000%);
        opacity: 0;
    }
    50%{
        transform: translateY(900%);
        opacity: .5;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    } 
}

.event-date {
    text-align: center;
    font-size: 40px;
    font-weight: 100;
    margin: 30px 0px;
    animation-name: leftToRight;
    animation-duration:  2s;
    animation-timing-function: ease;
    overflow-x: hidden;
}

@keyframes leftToRight {
    0% {
        transform: translateX(1000%);
        opacity: 0;
    }
    50%{
        transform: translateX(900%);
        opacity: .5;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    } 
}

.event-time {
    text-align: center;
    font-size: 50px;
    font-weight: 100;
    animation-name: rightToLeft;
    animation-duration:  2s;
    animation-timing-function: ease;
    overflow: hidden;
}

@keyframes rightToLeft {
    0% {
        transform: translateX(-1000%);
        opacity: 0;
    }
    50%{
        transform: translateX(-900%);
        opacity: .5;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    } 
}



.event-thanks {
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/5447182.jpg?v107);
}

.event-thanks-container {
    display: flex;
    flex-direction: column;
}



.event-thanks-header {
    text-align: center;
    font-size: 65px;
    color: var(--dark-pink-color);
    font-family: Prata, Verdana;
    margin: 50px 0px 10px 0px;
}

.event-thanks-title {
    text-align: center;
    font-size: 30px;
}

.event-thanks-name {
    text-align: center;
    font-size: 30px;
    font-weight: 100;
}

.event-slide-gallery {
    margin: 0px;
    background: var(--pink-light-color);
}

.event-image {
    width: 100%;
    margin: 0px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 700px;
    /* background-color: var(--fourth-color); */
    height: calc(100vh - 90px);
    transition: 1s;
}

.fixed-gallery {
    display: grid;
    grid-template-columns: 30px auto 30px;
}

.gallery-left, .gallery-right {
    background: var(--white-color-05-percent);
    color: var(--white-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-addresses {
    /* margin: 30px 0px; */
    padding: 0px 0px 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/5447182.jpg?v107);
}

.event-add-container {
    width: 45%;
    display: inline-block;
}

.event-add-title {
    text-align: center;
    font-size: 50px;
    font-family: 'Euphoria';
    margin: 40px 0px 0px 0px;
}

.event-add-data {
    text-align: center;
    font-size: 25px;
    font-weight: 100;
}

.event-dresscode {
    min-height: auto;
    padding-bottom: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/10_FEB_10.jpg?v107);
    margin: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-dresscode-header {
    text-align: center;
    font-family: 'Euphoria';
    font-size: 50px;
}

.event-dresscode-title {
    text-align: center;
    /* font-family: 'Euphoria'; */
    font-size: 30px;
    font-weight: 100;
}

.event-dresscode-image {
    text-align: center;
}

.event-dresscode-image img{
    width: 100px;
}

.event-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-timeline-container {
    display: grid;
    grid-template-columns: 50% 50%;  
}

.event-timeline-header {
    text-align: center;
    grid-column: 1 / span 2;
    font-size: 50px;
    font-family: 'Euphoria';
}

.event-timeline-title {
    text-align: right;
    font-size: 25px;
    padding-right: 20px;    
}

.event-timeline-data {
    font-size: 25px;
    font-weight: 100;
}

.event-gift-tables {
    min-height: auto;
    padding: 40px 0px 60px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/5589238.jpg?v107);
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.event-gift-container {    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.event-gift-header {
    text-align: center;
    grid-column: 1 / span 2;
    font-size: 50px;
    font-family: 'Euphoria';
}

.event-gift-title {
    text-align: right;
    font-size: 25px;
    padding-right: 20px;
}

.event-gift-data {
    font-size: 25px;
    font-weight: 100;
}

.event-social {
    min-height: auto;
    padding-bottom: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.event-social-tile {
    text-align: center;
    font-size: 50px;
    font-family: 'Euphoria';
    padding: 20px 0px;
}

.event-social-link {
    display: inline-block;
    padding: 20px 15px;
    /* font-family: 'Euphoria'; */
    font-size: 30px;
}


.event-confirmation {
    text-align: center;
    min-height: auto;
    padding-bottom: 40px;
    background-color: var(--pink-light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/10_FEB_10.jpg?v107);
}

.event-confirmation-header {
    font-size: 50px;
    font-family: 'Euphoria';
    padding: 0px 0px 30px 0px;
}

.event-confirmation-text {
    padding: 10px 0px 20px 0px;
}

.btn-confirm {
    font-weight: 100;
    margin: 20px auto;
}

.bg-image {
    width: 100%;
    margin: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* background-image: url(../assets/images/logo_h_01_white.png); */
}

.event-bye {
    font-size: 50px;
    font-family: 'Euphoria';
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2661d7;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/images/5631800.jpg?v107);
    flex-direction: column;
}



/* .t-script {
    font-family: Euphoria;
} */

.f-color-red {
    color: red !important;
}

.colspan-2 {
    grid-column: 1 / span 2;
    text-align: center;
    padding: 0px 20px;
}



/* NUEVO TEMPLATE  --> */

.invitation-container {
    width: 100%;
}

.invitation-cover {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    display: grid;
    grid-template-rows: 60% 40%;
}

.invitation-event-type {
    font-size: 60px;
    color: var(--white-color);    
    font-family: 'GreatVibes';
    text-align: center;
}

.invitation-event-gest {
    display: flex;
    justify-content: center;
    align-items: end;
    font-size: 35px;
    color: var(--white-color);    
    font-family: 'Montserrat';
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.invitation-message {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-message {
    text-align: justify;
    font-size: 25px;
    font-family: 'GreatVibes';
    padding: 0px 30px;
}

.invitation-data {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    display: grid;
    grid-template-rows: 40% 60%;
    color: var(--white-color);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.invitation-event-date {
    font-family: 'GreatVibes';
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-weight: 200;
}

.invitation-event-counter {
    text-align: center;
    font-size: 16px;
    font-family: 'Montserrat';
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    height: fit-content;
    width: 80%;
    margin: 0px auto;
}

.invitation-event-counter .t-title {
    grid-column: 1 / span 4;
    text-align: center;
    padding: 0px 0px 10px 0px;
    font-size: 25px;
}

.t-days, .t-hours, .t-minutes, .t-seconds {
    font-weight: 400;
    text-align: center;
    font-size: 30px;
}

.t-text {
    font-weight: 200;
    text-align: center;
}


/* .invitation-event-counter .t-script {
    font-weight: 200;
} */

/* .invitation-event-counter  */


.invitation-gallery {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: 1s;
}

.invitation-gallery.contain {
    background-size: contain;
}

.invitation-gallery.none {
    background-size: none;
    height: 0px;
}


.invitation-maps {
    min-height: 100vh;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    background: var(--dark-gray-color);
    font-family: 'Montserrat';
    font-weight: 200;
}

.invitation-maps .event-map-container {
    padding: 20px 0px;
    margin: 0px auto;
    width: 50%;
}

.invitation-dresscode {
    /* height: 100vh; */
    min-height: 40vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: grid;
    grid-template-rows: 50% 50%;
    /* color: var(--white-color); */
}

.invitation-dresscode .dc-title {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-family: 'Montserrat';
    font-weight: 200;
    font-size: 30px;
}

.invitation-dresscode .dc-title img {
    height: 40px;
    margin: 0px 5px;
}


.invitation-dresscode .dc-caption {
    text-align: center;
    font-family: 'GreatVibes';
    font-size: 30px;
    padding: 20px 0px 0px 0px;
}

.invitation-schedules {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color)
}

.schedules-container {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
}

.schedules-header {
    grid-column: 1 / span 2;
    font-family: 'GreatVibes';
    font-size: 30px;
    text-align: center;
    padding: 0px 0px 20px 0px;
}

.schedules-title {
    font-family: 'Montserrat';
    font-weight: 200;
    text-align: right;
    padding: 0px 10px 5px 0px;
}

.schedules-data {
    font-family: 'Montserrat';
    font-weight: 300;
    text-align: left;
}

.invitation-gift-table {    
    /* height: 100vh; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0px;
}

.gift-title {
    font-family: 'Parisienne';
    font-size: 35px;
    text-align: center;
    padding: 30px 0px 40px 0px;
}

.gift-message {
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 20px;
    padding: 15px;
}

.gift-link {
    text-align: justify;
    font-weight: 300;
    font-size: 16px;
}

.invitation-confirmation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 0px;
}

.confirmation-title {
    font-family: 'GreatVibes';
    font-size: 30px;
    text-align: center;
    padding: 0px 0px 30px 0px;
}

.invitation-confirmation .btn-confirm {
    font-size: 16px;
}

.invitation-video {
    width: 100%;
    height: auto;
    margin: 0px 0px
    position: relative;
}

.invitation-video iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

.invitation-footer {
    /* height: 100vh; */
    padding: 10px 0px;
    background: var(--dark-gray-color);
    color: var(--light-gray-color)
}

.invitation-footer .footer-text {
    font-family: 'Montserrat';
    font-weight: 200;
    font-size: 14px;
    color: var(--light-gray-color);
    margin: 20px 0px 0px 0px;
}

.invitation-footer .footer-wa {
    font-family: 'Montserrat';
    font-weight: 200;
    font-size: 12px;
    color: var(--lighter-gray-color);
    margin: 0px 0px 30px 0px;
}

.invitation-fix-menu {
    /* display: grid;
    grid-template-columns: 10% 80% 10%; */
    bottom: 20px;
    position: sticky;
    height: 50px;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    color: var(--white-color);

    display: flex;
    flex-direction: row;
    justify-content: center;

}

.fix-menu-elem {
    padding: 10px 0px;
    /* text-align: center;  */
    font-size: 20px;

    background: var(--white-color-10-percent);
    border-radius: 100%;
    width: 50px;
    /* vertical-align: middle; */
    margin: 0px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.fix-menu-elem.zoom-in-out {
    animation: zoomInOut 2s infinite;
}

/* NUEVO TEMPLATE  <-- */

@media only screen and (max-width:850px) { 

    .party-header {
        height: 50px;
        padding: 5px 0px 5px 0px; 
    }

    .party-menu-container {
        height: 40px;
        top: 60px;
    }

    .party-menu {
        width: 100%;
        padding: 5px 0px 0px 0px;
    }

    .party-notification {
        top: 100px;
    }

    .spotify-frame {
        width: 100%;
        /* margin: 50px 0px 0px 0px; */
        position: fixed;
        bottom: 0px;
    }

    .event-title, .event-time-container, .event-thanks, .event-slide-gallery, .event-addresses, .event-dresscode, .event-timeline, 
    .event-gift-tables, .event-social, .event-confirmation, .event-bye {
        min-height: calc(100vh - 80px);
    }

    .event-names {
        font-size: 55px;
    }

    .event-time-title {
        font-size: 30px;
        margin: 0px 0px 20px 0px;
    }

    @keyframes sizeGrow {
        from {
            top: -1000px;
            font-size: 0px;
        }
        to {
            top: 0px;
            font-size: 55px;
        }
    }

    .event-type {
        font-size: 30px;
    }

    .event-date {
        font-size: 20px;
    }

    .event-time {
        font-size: 25px;
    }

    .event-thanks-header {
        font-size: 45px;
    }

    .event-thanks-name {
        font-size: 20px;
    }

    .event-image {
        min-height: calc(100vh - 80px);
    }

    .event-addresses {
        flex-direction: column;
    }

    .event-add-container {
        width: 100%;
        margin: 5px 0px;
    }

    .event-add-title {
        font-size: 45px;
    }

    .event-add-data {
        font-size: 20px;
    }

    .event-timeline {
        /* min-height: max-content; */
        padding: 0px 0px 40px 0px;
    }

    .event-gift-container {
        display: grid;
        grid-template-columns: 40% 60%;
    }

    .event-social {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .event-social-link {
        padding: 20px 0px;
    }

    .event-confirmation {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .btn {
        font-size: 20px;
    }

    .btn-confirm {
        margin: 0px 0px 30px 0px;
    }

    .event-bye {
        min-height: 350px;}
    }



}
