/* =======================================================================
 * 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
 * ===================================================================== */
/* =======================================================================
 * 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
 * ===================================================================== */
.locator-list .restaurant-list {
    max-height: none;
    padding-bottom: 62px;
}

.locator-list .restaurant-list .single-restaurant-infos {
    display: block;
    *zoom: 1;
    padding: 29px 0;
}

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

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

.locator-list .restaurant-list .single-restaurant-infos.no-schedule .restaurants-infos {
    width: 80%;
}

.locator-list .restaurant-list .single-restaurant-infos .restaurants-infos {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 42.68775%;
    float: left;
    margin-right: 3.16206%;
}

.locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .distance {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 19.44444%;
    float: left;
    margin-right: 7.40741%;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .distance span {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin-top: 15px;
}

.locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .distance .map-pin {
    width: 30px;
}

.locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 73.14815%;
    float: right;
    margin-right: 0;
    padding-left: 0;
}

.locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details h5 {
    margin-bottom: 25px;
}

.locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details .address, .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details .street {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.3;
}

.locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details .address {
    margin-bottom: 20px;
}

.locator-list .restaurant-list .single-restaurant-infos .opening-times {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 31.2253%;
    float: left;
    margin-right: 3.16206%;
    *zoom: 1;
    padding-top: 35px;
}

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

.locator-list .restaurant-list .single-restaurant-infos .opening-times:after {
    clear: both;
}

.locator-list .restaurant-list .single-restaurant-infos .opening-times .category {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 37.59494%;
    float: left;
    margin-right: 10.12658%;
}

.locator-list .restaurant-list .single-restaurant-infos .opening-times .category:last-child {
    margin-right: 0;
}

.locator-list .restaurant-list .single-restaurant-infos .actions {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 19.76285%;
    float: right;
    margin-right: 0;
    padding-top: 27px;
}

.locator-list .restaurant-list .single-restaurant-infos .actions .action {
    width: 100%;
    display: block;
}

.locator-list .restaurant-list .single-restaurant-infos .actions .action a {
    display: block;
}

.locator-list .restaurant-list .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;
    margin-bottom: 24px;
    width: 100%;
}

@media (min-width: 0) and (max-width: 1439px) {
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 35.78767%;
        float: left;
        margin-right: 2.73973%;
    }
    .locator-list .restaurant-list .single-restaurant-infos .opening-times {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 35.78767%;
        float: left;
        margin-right: 2.73973%;
    }
    .locator-list .restaurant-list .single-restaurant-infos .actions {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 18.66438%;
        float: right;
        margin-right: 0;
    }
}

@media (min-width: 0) and (max-width: 1023px) {
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 35.72874%;
        float: left;
        margin-right: 2.83401%;
        margin-right: 0;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .distance {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 28.04533%;
        float: left;
        margin-right: 7.93201%;
        margin: 0;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details h5 {
        font-size: 16px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details h5 a {
        font-size: 16px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details .street, .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details .address {
        font-size: 16px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details .more .socials {
        display: block;
        margin-bottom: 5px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details .more .phone-contact p {
        font-size: 16px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .opening-times {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 35.72874%;
        float: left;
        margin-right: 2.83401%;
        margin-right: 0;
        margin-left: 10px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .opening-times .category {
        width: 45%;
    }
    .locator-list .restaurant-list .single-restaurant-infos .opening-times .category:not(:last-child) {
        margin-right: 10px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .opening-times .category h4 {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .opening-times .category .hours .hour {
        font-size: 14px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .actions {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 22.87449%;
        float: right;
        margin-right: 0;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        display: block;
        padding-top: 0;
        margin-bottom: 28px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .distance {
        display: block;
        height: auto;
        position: absolute;
        width: auto;
        margin: 0;
        top: 0;
        right: 0;
        left: auto;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details {
        padding-right: 35px;
        width: 100%;
        float: none;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details h5 {
        font-size: 20px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details h5 a {
        font-size: 20px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .restaurants-infos .restaurants-details .more .socials .social-icon {
        margin-right: 24px;
    }
    .locator-list .restaurant-list .single-restaurant-infos .opening-times {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        display: block;
        padding-top: 0;
    }
    .locator-list .restaurant-list .single-restaurant-infos .opening-times .category {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 45.45455%;
        float: right;
        margin-right: 0;
        margin-bottom: 42px;
        margin-right: 0 !important;
    }
    .locator-list .restaurant-list .single-restaurant-infos .opening-times .category:nth-child(odd) {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 45.45455%;
        float: left;
        margin-right: 9.09091%;
    }
    .locator-list .restaurant-list .single-restaurant-infos .actions {
        display: block;
        padding-top: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
}

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