/* =======================================================================
 * CONFIG
 * -----------------------------------------------------------------------
 * File used to import custom and vendors variables
 * ===================================================================== */
/* =======================================================================
 * BREAKPOINTS
 * -----------------------------------------------------------------------
 * Breakpoints are used for responsive design. You can define here
 * the breakpoints required for the design.
 * ===================================================================== */
/* =======================================================================
 * COLORS VARIABLES
 * -----------------------------------------------------------------------
 * Define all the colors used in the website. You can use
 * http://chir.ag/projects/name-that-color/ to generate human readable
 * names for each color.
 * ===================================================================== */
/* =======================================================================
 * BASE VARIABLES
 * -----------------------------------------------------------------------
 *
 * ===================================================================== */
/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors configurations files for them to be automatically
 * loaded into the app.config file
 * ===================================================================== */
/* =======================================================================
 * MIXINS
 * -----------------------------------------------------------------------
 * File used to import custom and vendors mixins
 * ===================================================================== */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@-webkit-keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@-webkit-keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@-webkit-keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@-webkit-keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@-webkit-keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@-webkit-keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@-webkit-keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@-webkit-keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@-webkit-keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@-webkit-keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

@keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors mixins files for them to be automatically
 * loaded into the app.mixins file
 * ===================================================================== */
.promos-listing {
    margin: 20px 0;
}

.promos-listing .no-offers {
    font-family: 'TradeGothicLTPro-Light', Arial, helvetica, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    color: rgba(56, 56, 56, 0.5);
    margin: 100px 0;
}

.promos-listing .listing-2col .promo.alternate.listing-2col-item .content .offer-subtitle {
    color: #000000;
}

.promos-listing .listing-2col .promo.alternate.listing-2col-item .content .offer-title {
    color: #ed1d24;
}

.promos-listing .listing-2col .promo.no-gradient .shadow-filter {
    display: none;
}

.promos-listing .listing-2col .promo.large.listing-2col-item .listing-2col-item-wrapper {
    min-height: 530px;
}

.promos-listing .listing-2col .promo.listing-2col-item .listing-2col-item-wrapper {
    min-height: 525px;
}

.promos-listing .listing-2col .promo.listing-2col-item .shadow-filter {
    background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.44)));
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.44) 100%);
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.promos-listing .listing-2col .promo.listing-2col-item .content {
    padding: 0 calc(5% + 5% + 178px) calc(71px + 53px) 6%;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform: none;
            transform: none;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .offer-subtitle {
    margin-bottom: 2px;
    font-family: 'Timeout-Regular', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 80px;
    line-height: 64px;
    color: #E4002B;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .offer-title {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .excerpt {
    margin-top: 12px;
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .stamp {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    right: 5%;
    top: 86px;
    width: 178px;
    height: 178px;
    background: url("/resources/assets/images/promos/stamp@2x.png") no-repeat center;
    background-size: 100%;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-content {
    position: relative;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 68px;
    line-height: 72px;
    color: #FFFFFF;
    text-align: center;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text span {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 38px;
    line-height: 42px;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text.is-small {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text.is-pre, .promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text.is-post {
    position: absolute;
    left: 0;
    right: 0;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text.is-pre {
    bottom: 100%;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text.is-post {
    top: 100%;
}

.promos-listing .listing-2col .promo.listing-2col-item .content .primary-cta {
    position: absolute;
    left: 6%;
    bottom: 71px;
    min-width: 238px;
}

@media (min-width: 0) and (max-width: 1439px) {
    .promos-listing .listing-2col .promo.large.listing-2col-item .listing-2col-item-wrapper {
        min-height: 480px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .listing-2col-item-wrapper {
        min-height: 400px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content {
        padding-right: calc(5% + 5% + 168px);
        padding-bottom: calc(32px + 53px);
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .offer-subtitle {
        font-size: 60px;
        line-height: 48px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .offer-title {
        font-size: 45px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .excerpt {
        font-size: 17px;
        line-height: 22px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .stamp {
        top: 56px;
        width: 168px;
        height: 168px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text {
        font-size: 64px;
        line-height: 68px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text.is-small {
        font-size: 15px;
        line-height: 20px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .primary-cta {
        bottom: 32px;
    }
}

@media (min-width: 0) and (max-width: 1023px) {
    .promos-listing .listing-2col .promo.large.listing-2col-item .listing-2col-item-wrapper {
        min-height: 450px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content {
        padding-right: calc(5% + 5% + 118px);
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .offer-subtitle {
        margin-bottom: 7px;
        font-size: 55px;
        line-height: 44px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .offer-title {
        font-size: 41px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .excerpt {
        margin-top: 7px;
        font-size: 15px;
        line-height: 18px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .stamp {
        width: 118px;
        height: 118px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text {
        font-size: 38px;
        line-height: 40px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text span {
        font-size: 24px;
        line-height: 18px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .stamp .stamp-text.is-small {
        font-size: 12px;
        line-height: 14px;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .promos-listing {
        margin: 10px 0;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .listing-2col-item-wrapper {
        min-height: 400px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content {
        padding-bottom: calc(32px + 48px);
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .offer-subtitle {
        font-size: 45px;
        line-height: 36px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .offer-title {
        font-size: 34px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .excerpt {
        font-size: 15px;
        line-height: 18px;
    }
    .promos-listing .listing-2col .promo.listing-2col-item .content .primary-cta {
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}

/*# sourceMappingURL=listing.css.map */
