

/* Start:/local/components/foam/promo.tree/templates/.default/style.css?17398196856413*/

.promo {
    position: relative;
    background-color: #DFF4FF;
    width: 100%;
    height: 1117px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;

    background-image: url('/local/templates/foam/resources/img/promo/back.png');
    background-size:     contain;
    background-repeat:   repeat-x;
    background-position: right center;
}


.promo__floor {
    position: absolute;
    bottom: 0;
    background-image: url('/local/templates/foam/resources/img/promo/floor.svg');
    background-size:     contain;
    background-repeat:   repeat;
    background-position: center center;
    background-color: #F7F3E9;
    width: 100%;
    height: 0px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.promo__tree {
    position: relative;

    width: 1400px;
    height: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-size:     contain;
    background-repeat:   no-repeat;
    background-image: url('/local/templates/foam/resources/img/promo/ng2025.png');
}

@media (max-width: 769px) {

    .promo {
        position: relative;
        width: 100%;
        height: 1117px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }


    .promo__tree {
        width: 100%;
        height: 643px;
        background-image: url('/local/templates/foam/resources/img/promo/ng2025_mobile.png');
    }
}

.promo__element {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-image: url('/local/templates/foam/resources/img/promo/element.svg');
    width: 75px;
    height: 124.5px;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: 1s ease-in-out;
    z-index: 1;
}

.promo__element:hover {
    transform: scale(110%);
    transition: all 100ms;
    z-index: 10;
}

.promo__element span {
    display: inline-block;
    padding: 0 5px;
    color: #181818;
    font-size: 14px;
    text-align: center;
    position: relative;
    bottom: 5px;
}

.promo__element__foam {
    left: 50%;
    transform: translateX(-50%) rotate(-27deg);
    bottom: 10%;
    width: 100px;
    height: 90px;
    cursor: auto;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    } to {
          transform: rotate(180deg);
      }
}

.promo__toggler {
    display: block;
    position: absolute;
    top: 57.5%;
    left: 50%;
    transform: translateX(-50%);
}

.promo__toggler img {
    transform: rotate(0);
    display: block;
    transition: 1s linear;
}

.promo__toggler.move img {
    animation: spin;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
.promo__toggler img.open {
    transform: rotate(180deg);
    animation: none;
}

.calendar-popup {
    top: 10em;
    left: 50%;
    z-index: 100;
    visibility: hidden;
    box-sizing: border-box;
    width: 90vw;
    max-width: 700px;
    border: 1px solid #979797;
    background: #fbfbfb;
    box-shadow: 0 1em 3em rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
    -webkit-animation-name: calendarPopupClosed;
    animation-name: calendarPopupClosed;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    position: absolute;
    margin-left: -100000px;
}

@media (min-width: 769px) {

    .calendar-popup {
        width: 20vw;
        min-width: 500px;
        max-width: 830px
    }
}

.calendar-popup.is__open {
    position: fixed;
    margin-left: 0;
    -webkit-animation-name: calendarPopupOpen;
    animation-name: calendarPopupOpen;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.calendar-popup-title {
    position: relative;
    padding-bottom: 6em;
    font-size: 2.5em;
    font-weight: bold;
    font-style: normal;
    line-height: 1.1;
    text-align: center;
    color: #4a4a4a;
}

.calendar-popup-title::after {
    position: absolute;
    bottom: 3em;
    left: 50%;
    display: block;
    width: 30%;
    height: 2px;
    background-color: #4a4a4a;
    content: '';
    transform: translateX(-50%);
}

.calendar-popup-text {
    font-size: 2.2em;
    font-weight: normal;
    font-style: normal;
    line-height: 1.1;
}

.calendar-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
}

.calendar-popup-close:hover {
    cursor: pointer;
}

.calendar-popup-close::after,
.calendar-popup-close::before {
    position: absolute;
    top: 10px;
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #4a4a4a;
    content: '';
}

.calendar-popup-close::after {
    transform: rotate(-45deg);
}

.calendar-popup-close::before {
    transform: rotate(45deg);
}

@-webkit-keyframes calendarPopupOpen {
    0% {
        visibility: hidden;
        opacity: 0;
    }
    100% {
        visibility: visible;
        opacity: 1;
    }
}

@keyframes calendarPopupOpen {
    0% {
        visibility: hidden;
        opacity: 0;
    }
    100% {
        visibility: visible;
        opacity: 1;
    }
}

@-webkit-keyframes calendarPopupClosed {
    0% {
        visibility: visible;
        opacity: 1;
    }
    100% {
        visibility: hidden;
        opacity: 0;
    }
}

@keyframes calendarPopupClosed {
    0% {
        visibility: visible;
        opacity: 1;
    }
    100% {
        visibility: hidden;
        opacity: 0;
    }
}

.text_img {
    margin-top: 10px;
}
.text_img.mobile {
    display: none;
}

@media (max-width: 600px) {
    .text_img.mobile {
        display: inline;
    }

    .text_img {
        display: none;
    }

    .promo {
        width: 100%;
        height: 698px;
        background-image: url('/local/templates/foam/resources/img/promo/spring_mobile.svg');
    }

    .promo__floor {
        height: 40px;
    }

    .promo__tree {
        height: 698px;
        width: 100%;
    }

    .promo__element {
        width: 44px;
        height: 84.5px;
    }

    .promo__element__foam {
        width: 70px;
        height: 63px;
    }

    .promo__element span {
        font-size: 10px;
    }
    .promo__toggler {
        width: 97px;
        height: 97px;
    }

    .calendar-popup {
        top: 20em;
    }
}

/* End */
/* /local/components/foam/promo.tree/templates/.default/style.css?17398196856413 */
