/* =======================================================================
 * 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
 * ===================================================================== */
.restaurant-schedule {
    position: relative;
}

.restaurant-schedule .bg-img {
    position: absolute;
    z-index: 1;
    top: -100px;
    right: -200px;
}

.restaurant-schedule .centered-content {
    position: relative;
    z-index: 2;
}

.restaurant-schedule .centered-content .schedule-menu-mobile {
    display: none;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn {
    position: relative;
    height: 55px;
    line-height: 1;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 55px;
    border: 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #ffffff;
    color: #333333;
    border-color: #d3d8d8;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu .toggler {
    position: absolute;
    top: 27.5px;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 16px;
    height: 12px;
    background-image: url("/resources/assets/images/ui/arrow-dropdown-red.png");
    background-size: 100% auto;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu .skinme-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #ffffff;
    filter: "alpha(opacity=1)";
    -khtml-opacity: 0.01;
    -moz-opacity: 0.01;
    opacity: 0.01;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu.opened .toggler {
    background-position: 0 -12px;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu.opened .active-choice {
    border-bottom: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu .active-choice {
    position: absolute;
    height: 55px;
    top: 0;
    left: 0;
    z-index: 5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 55px;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu .skinme-select-choices {
    display: none;
    position: relative;
    top: 100%;
    margin-top: 1px;
    border: 1px solid;
    z-index: 9999;
    overflow: hidden;
    background-color: #ffffff;
    border-color: #ececec;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu .skinme-select-choices.open {
    display: block;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    padding: 5px 15px;
    clear: both;
    cursor: pointer;
    text-align: left;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice.default {
    display: none;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice.selected, .restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu .skinme-select-choices .choice:hover {
    color: #333333;
    background-color: #d3d8d8;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn .select.schedule-menu:hover {
    background-color: #d3d8d8;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn select {
    cursor: pointer;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.restaurant-schedule .centered-content .schedule-menu-mobile.skinMe .skinme-select-ctn select.native {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.restaurant-schedule .centered-content .schedule-table {
    margin-bottom: 70px;
}

.restaurant-schedule .centered-content .schedule-table .row {
    margin: -3px 0 0;
    padding: 0 10px;
    display: inline-block;
    border-bottom: 1px solid rgba(151, 151, 151, 0.5);
}

.restaurant-schedule .centered-content .schedule-table .row::after {
    content: "";
    clear: both;
    display: table;
}

.restaurant-schedule .centered-content .schedule-table .row:last-child {
    border-bottom: none;
}

.restaurant-schedule .centered-content .schedule-table .row:first-child {
    border-bottom: none;
}

.restaurant-schedule .centered-content .schedule-table .row:first-child h3 {
    font-size: 14px;
}

.restaurant-schedule .centered-content .schedule-table .row.active {
    background-color: #F9F9F9;
}

.restaurant-schedule .centered-content .schedule-table .row .col {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    padding: 8px 30px 8px 0;
    float: left;
    min-height: 21px;
    width: 160px;
    line-height: 20px;
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.restaurant-schedule .centered-content .schedule-table .row .col:last-child {
    width: 150px;
    padding-right: 0;
}

.restaurant-schedule .centered-content .schedule-table .row .col h3 {
    line-height: 20px;
}

.restaurant-schedule .centered-content .schedule-table .row .col .circle-status {
    position: absolute;
    left: -13px;
    top: 15px;
}

.restaurant-schedule .centered-content .schedule-table .row .exception-info {
    width: 472px;
}

.restaurant-schedule .centered-content .schedule-table .row .exception-info p {
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(56, 56, 56, 0.5);
}

.restaurant-schedule .centered-content .circle-status {
    margin-right: 5px;
}

@media (min-width: 0) and (max-width: 1439px) {
    .restaurant-schedule .bg-img {
        top: -180px;
        right: -250px;
        -webkit-transform: scale(0.7);
                transform: scale(0.7);
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .restaurant-schedule .bg-img {
        display: none;
    }
    .restaurant-schedule .centered-content {
        padding-left: 0;
        padding-right: 0;
    }
    .restaurant-schedule .centered-content h2 {
        padding-left: 15px;
        padding-right: 15px;
    }
    .restaurant-schedule .centered-content .schedule-menu-mobile {
        display: block;
        width: 280px !important;
        margin: 0 auto 20px;
    }
    .restaurant-schedule .centered-content .schedule-table {
        margin-bottom: 35px;
    }
    .restaurant-schedule .centered-content .schedule-table .row {
        margin-top: 0;
        display: block;
        padding: 0;
        margin: 0 10px;
    }
    .restaurant-schedule .centered-content .schedule-table .row:first-child {
        display: none;
    }
    .restaurant-schedule .centered-content .schedule-table .row .col {
        display: none;
        width: 70%;
        padding-right: 0;
        font-size: 14px;
    }
    .restaurant-schedule .centered-content .schedule-table .row .col.mobile-visible {
        display: block;
        text-align: right;
    }
    .restaurant-schedule .centered-content .schedule-table .row .col:first-child {
        display: block;
        width: 30%;
    }
    .restaurant-schedule .centered-content .schedule-table .row .col:last-child {
        width: 70%;
    }
    .restaurant-schedule .centered-content .schedule-table .row .col .circle-status {
        left: auto;
        top: -2px;
        position: relative;
    }
    .restaurant-schedule .centered-content .schedule-table .row .exception-info {
        width: 100%;
    }
}

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