/* =======================================================================
 * 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
 * ===================================================================== */
.single-restaurant-infos {
    *zoom: 1;
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #E2E2E2;
    padding: 12px 0 24px;
}

.single-restaurant-infos:before, .single-restaurant-infos:after {
    content: " ";
    display: table;
    line-height: 0;
}

.single-restaurant-infos:after {
    clear: both;
}

.single-restaurant-infos:first-child {
    padding-top: 0;
}

.single-restaurant-infos:last-child {
    border-bottom: none;
}

.single-restaurant-infos .restaurants-infos {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 63.29114%;
    float: left;
    padding-top: 7px;
    position: relative;
}

.single-restaurant-infos .restaurants-infos .distance {
    padding-top: 2px;
    position: absolute;
    left: 0;
    text-align: center;
}

.single-restaurant-infos .restaurants-infos .distance span {
    display: block;
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
    color: #9B9B9B;
}

.single-restaurant-infos .restaurants-infos .distance .map-pin {
    width: 20px;
}

.single-restaurant-infos .restaurants-infos .restaurants-details {
    width: 100%;
    padding-left: 45px;
    padding-right: 0px;
}

.single-restaurant-infos .restaurants-infos .restaurants-details h5 {
    margin-bottom: 10px;
}

.single-restaurant-infos .restaurants-infos .restaurants-details h5 a {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: #1c1c1c;
    text-transform: uppercase;
    margin-bottom: 3px;
    text-decoration: none;
}

.single-restaurant-infos .restaurants-infos .restaurants-details h5 a:hover {
    color: #1c1c1c;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .street {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #9B9B9B;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .address {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #9B9B9B;
    margin-bottom: 10px;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .address .city, .single-restaurant-infos .restaurants-infos .restaurants-details .address .zipcode {
    text-transform: uppercase;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .status {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #9B9B9B;
    vertical-align: middle;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .status .circle-status {
    margin-left: 4px;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .more .socials {
    display: inline-block;
    vertical-align: top;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .more .socials .social-icon {
    display: inline-block;
    margin-right: 10px;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .more .socials .social-icon svg {
    fill: #ed1d24;
    opacity: 1;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .more .phone-contact {
    display: inline-block;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .more .phone-contact p {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin-bottom: 4px;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .more .phone-contact p a {
    color: #9B9B9B;
    text-decoration: none;
}

.single-restaurant-infos .restaurants-infos .restaurants-details .more .phone-contact p a:hover {
    color: #ed1d24;
}

.single-restaurant-infos .opening-times .category h4 {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #1c1c1c;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.single-restaurant-infos .opening-times .category .hours .hour {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.single-restaurant-infos .opening-times .category .hours .hour:not(:last-child) {
    margin-bottom: 6px;
}

.single-restaurant-infos .opening-times .category .hours .hour .circle-status {
    margin-right: 4px;
}

.single-restaurant-infos .actions {
    float: right;
}

.single-restaurant-infos .actions .action {
    text-align: center;
    margin-bottom: 15px;
}

.single-restaurant-infos .actions .action:last-child {
    margin-bottom: 0;
}

.single-restaurant-infos .actions .action .primary-cta {
    padding: 11px 28px;
}

.single-restaurant-infos .actions .action a {
    display: inline-block;
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
    color: #9B9B9B;
    text-transform: uppercase;
}

.single-restaurant-infos .actions .action .phone-order-text {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 0.01em;
    margin-top: 10px;
    width: 160px;
}

@media (min-width: 0) and (max-width: 1023px) {
    .single-restaurant-infos .actions .action .primary-cta {
        padding: 11px 15px;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .single-restaurant-infos .restaurants-infos {
        display: block;
        float: none;
        margin-bottom: 20px;
        width: 100%;
    }
    .single-restaurant-infos .restaurants-infos::after, .single-restaurant-infos .restaurants-infos::before {
        display: none;
    }
    .single-restaurant-infos .restaurants-infos .distance {
        width: 30px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
    }
    .single-restaurant-infos .restaurants-infos .restaurants-details {
        padding-right: 10px;
        padding-left: 0;
    }
    .single-restaurant-infos .restaurants-infos .restaurants-details h5 {
        font-size: 16px;
    }
    .single-restaurant-infos .actions {
        display: block;
        float: none;
        max-width: none;
    }
    .single-restaurant-infos .actions .action .primary-cta {
        padding: 11px 25px;
        width: 100%;
    }
    .single-restaurant-infos .actions .action .phone-order-text {
        width: 100%;
    }
}

.modal-content .single-restaurant-infos .restaurants-infos .restaurants-details h5 a {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

@media (min-width: 0) and (max-width: 767px) {
    .modal-content .single-restaurant-infos .restaurants-infos .restaurants-details h5 {
        font-size: 16px;
    }
    .modal-content .single-restaurant-infos .restaurants-infos .restaurants-details h5 a {
        font-size: 16px;
    }
}

/*# sourceMappingURL=list-item.css.map */
