

/*** Landing Page Template Updates ***/

.page-template-page-landing  p + p {
    margin-top: 20px;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.actaPoster {
    font-weight: 400 !important;
}

@media all and (max-width: 991px){
    .landing-page .d-flex {
        flex-flow: column;
    }
}

/*** Adding Snowflake Animation from here - https://codepen.io/iautomation/pen/VYexBz ***/
.snowflakes {
    width: 100%; height: 1200px;
    position: absolute; top: -90px; left: 0;
    z-index: -1;
    pointer-events: none;
}

.snowflakes i, .snowflakes i:after, .snowflakes i:before { 
    background: #034A50; 
}

.snowflakes i:nth-child(2n+1), .snowflakes i:nth-child(2n+1):after, .snowflakes i:nth-child(2n+1):before { 
    background: #9D2235; 
}

.snowflakes i {
    display: inline-block;
    -webkit-animation: snowflakes 6s linear 4s infinite;
    -moz-animation: snowflakes 6s linear 4s infinite;
    position: relative;
}
.snowflakes i:after, .snowflakes i:before {
    height: 100%;
    width: 100%;
    content: ".";
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(120deg);
}
.snowflakes i:before { -webkit-transform: rotate(240deg); }

@-webkit-keyframes snowflakes {
    0% {
        -webkit-transform: translate3d(0,0,0) rotate(0deg) scale(0.6);
    }
    100% {
        -webkit-transform: translate3d(15px, 1200px, 0px) rotate(360deg) scale(0.6);
    }
}

.snowflakes i:nth-child(3n) {
    width: 24px; height: 4px;
    -webkit-animation-duration: 6s;
    -webkit-animation-iteration-count: 30;
    -webkit-transform-origin: right -45px;
}

.snowflakes i:nth-child(3n+1) {
    width: 32px; height: 6px;
    -webkit-animation-duration: 8s;
    -webkit-animation-iteration-count: 45;
    -webkit-transform-origin: right -30px;
}

.snowflakes i:nth-child(3n+2) {
    width: 40px; height: 8px;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: 60;
    -webkit-transform-origin: right -15px;
}

@media all and (max-width: 991px){
    .snowflakes i:nth-child(3n) {
        width: 12px; height: 2px;
        -webkit-animation-duration: 6s;
        -webkit-animation-iteration-count: 30;
        -webkit-transform-origin: right -45px;
    }

    .snowflakes i:nth-child(3n+1) {
        width: 16px; height: 3px;
        -webkit-animation-duration: 8s;
        -webkit-animation-iteration-count: 45;
        -webkit-transform-origin: right -30px;
    }

    .snowflakes i:nth-child(3n+2) {
        width: 20px; height: 4px;
        -webkit-animation-duration: 10s;
        -webkit-animation-iteration-count: 60;
        -webkit-transform-origin: right -15px;
    }
}   
    
/* different delays so they don't all start at the same time */
.snowflakes i:nth-child(7n) {
opacity:.1;
-webkit-animation-delay: 0s;
-webkit-animation-timing-function:ease-in;
}
.snowflakes i:nth-child(7n+1) {
opacity:.125;
-webkit-animation-delay: 1s;
-webkit-animation-timing-function:ease-out;
}
.snowflakes i:nth-child(7n+2) {
opacity:.15;
-webkit-animation-delay: 2s;
-webkit-animation-timing-function:linear;
}
.snowflakes i:nth-child(7n+3) {
opacity:.175;
-webkit-animation-delay: 3s;
-webkit-animation-timing-function:ease-in;
}
.snowflakes i:nth-child(7n+4) {
opacity:.2;
-webkit-animation-delay: 4s;
-webkit-animation-timing-function:linear;
}
.snowflakes i:nth-child(7n+5) {
opacity:.225;
-webkit-animation-delay: 5s;
-webkit-animation-timing-function:ease-out;
}
.snowflakes i:nth-child(7n+6) {
opacity:.25;
-webkit-animation-delay: 6s;
-webkit-animation-timing-function:ease-in;
}

    
/* Gift Card Popup */



.mfp-wrap .mfp-content .mfp-close {
    color: #0A585E;
    background-color: #fff;
    width: 32px;
    height: 32px;
    line-height: 30px;
    top: 16px;
    right: 16px;
    border-radius: 60px;
    border: 2px solid #0A585E;
    transition: all 500ms ease-in-out;
    opacity: 1;
}

.mfp-wrap .mfp-content .mfp-close:hover {
    color: #fff;
    background-color: #0A585E;
}

#gift-card-popup {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
}

#gift-card-popup .locations {
    display: grid;
    list-style-type: none;
    column-gap: 32px;
    row-gap: 32px;
}

#gift-card-popup .locations .location > a {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}

#gift-card-popup .locations .location .btn--red {
    margin-top: -32px;
    text-decoration: none;
}   

#gift-card-popup .locations .location .btn--red:hover {
    background-color: #fff;
}   
