.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.j-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.flex-row {
    margin: 0 -10px;
}



.w-newsletter-signup {
    max-width: 420px;
}

.w-newsletter-signup .form-input {
        padding: 8px;
        border-radius: 3px;
        height: 40px;
        margin-bottom: 10px;
}
.modal .w-newsletter-signup .form-input {
    height: 30px;
    margin-bottom: 5px;
}
.w-newsletter-signup .form-submit {
    background-color: #aaa;
    border: 0 none;
    border-radius: 4px;
    font-size: 15px;
}
.modal .w-newsletter-signup .form-submit,
.modal .button-primary {
    background: #fd1edf;
    color: #fff;
    border: 0 none;
    border-radius: 4px;
    font-size: 15px;
}
.modal .button-primary {
    margin-top: 1em;
}

.panel-newsletter {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 99;
}
.panel-newsletter.closed {
    opacity: 0;
    visibility: hidden;
}
.panel-newsletter>div {
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 600px;
    width: 90%;
}
.panel-newsletter>div img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    max-height: 45vh;
}
.panel-newsletter>div>button {
    width: 50px;
    height: 50px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
}
.panel-newsletter svg {
    max-width: 100%;
    max-height: 100%;
}
@media (min-width: 960px) {
    .panel-newsletter>div {
        flex-direction: row;
    }
    .panel-newsletter>div>div {
        width: 50%;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
}

.button-primary[data-target="panel-newsletter"] {
    position: fixed;
    right: 10px;
    bottom: 0;
    width: auto;
}
.w-newsletter-signup .m-newsletter-newsletter .form-label.input-group-main {
    font-size: 11px;
}





.scroller-container {
    padding: 10px;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}
.scroller-inner {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 25s linear infinite;
    white-space: nowrap;
}
.scroller-inner p {
    margin: 0;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.scroller-container:hover .scroller-inner {
  animation-play-state: paused;
}

.timer {
    margin: 0 0 20px;
}
.timer>.flex>div {
    padding: 30px;
}
.timerTitle {
    font-size: 24px;
    line-height: 100%;
    font-weight: 600;
}
.timerSubtitle {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}
.timerDigits {
    max-width: 230px;
    margin: 10px auto;
}
.t-unit {
    align-items: center;
}
.t-value {
    font-size: 27px;
    font-weight: 600;
}
.t-label {
    font-size: 11px;
}
.timer-background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}