:root {
    --color-orange: #fcb941;
    --color-black: #2e3131;
    --color-red: #f64747;
    --color-green: #388E3C;
}

.clr-orange {
    color: var(--color-orange) !important
}

.clr-red {
    color: var(--color-red)
}

.clr-green {
    color: var(--color-green)
}

body {
    /*background-color: #54411d14;*/
    background: #fff;
    animation: none !important;
    overflow-x: hidden;
    color: var(--color-black);
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    color: var(--color-red);
    transition: color .3s ease-in-out;
    text-decoration: none;
}

a:hover {
    transition: color .3s ease-in-out;
    text-decoration: none;
    color: #343a3a;
}

.btn {
    cursor: pointer;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.btn:hover {
    background: var(--color-orange);
    color: var(--color-black);
    transition: all .3s ease-in-out;
}

.btn:active, .btn.active {
    box-shadow: none;
    outline: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
    outline: none;
}

img {
    max-width: 100%;
}

body .content {
    width: 100%;
    position: relative;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

.page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-image: url('../../img/bg.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.inner-container {
    background-color: #fff;
    margin-top: 80px;
    margin-bottom: 30px;
    border-radius: 10px;
    min-height: 75vh;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.opacity_none {
    opacity: 0;
}

.alert-fixed {
    position: fixed;
    z-index: 99999;
    width: 25%;
    left: 50%;
    transform: translateX(-50%);
    border: unset;
    box-shadow: 1px 2px 2px white;
    font-weight: 600;
    font-size: 20px;
    color: white;
    top: 10vh;
}

.alert-fixed.alert-success, .alert-fixed.alert-warning {
    background-color: var(--color-orange);
}

.alert-fixed.alert-danger {
    background-color: red;
}

.alert-fixed button {
    background: transparent;
    border: 0;
    font-size: 50px;
    line-height: 1;
    position: absolute;
    right: 3px;
    top: -5px;
}

.alert-dismissible {
    padding-right: 35px;
}

.radio label, .checkbox label {
    width: 100%;
}

.remove_cart_item {
    cursor: pointer;
    padding-top: 10px;
}

@media (max-width: 992px) {
    .alert-fixed {
        width: 85%;
    }
}

/** FORMS **/
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #fcb941;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(252, 185, 65, 0.25);
}

textarea {
    resize: none;
}

/** /FORMS **/
/** HEADER **/
.header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
}

.header .header-wrapper {
    display: flex;
    justify-content: space-between;
}

.header .header-wrapper > div {
    width: 33%;
    display: flex;
    align-items: center;
}

@media (max-width: 786px) {
    .header .header-wrapper > div.logo-block {
        width: 46%;
        justify-content: flex-end;
    }
}

.header .header-wrapper > div:last-child {
    justify-content: flex-end;
}

.header .social-networks {
    display: flex;
    align-items: center;
}

.header .social-networks .social-block {
    display: flex;
    align-items: center;
    position: relative;
}

.header .social-networks .social-block::after {
    content: '';
    width: 0;
    height: 24px;
    border: 1px solid rgb(231, 231, 231);
    border-radius: 2px;
    margin: 0 15px;
}

@media (max-width: 767px) {
    .header .social-networks .social-block::after {
        margin: 0 10px 0 5px;
    }
}

.header .social-networks .social-block a {
    font-size: 24px;
    color: var(--color-black);
    margin-right: 10px;
    padding: 5px;
    transition: all .3s ease-in-out;
}

@media (max-width: 767px) {
    .header .social-networks .social-block a {
        margin-right: 4px;
    }
}

.header .social-networks .social-block a:hover {
    color: var(--color-orange);
    transition: all .3s ease-in-out;
}

.header .social-networks .social-block a:nth-last-child(1) {
    margin-right: 0;
}

.header a.download_app {
    background-color: var(--color-orange);
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    padding: 9px 10px 7px;
    border-radius: 4px;
    transition: all .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-weight: bold;
}

.header a.download_app svg {
    display: none;
}

.header a.download_app:hover {
    background-color: var(--color-black);
    color: #fff;
    transition: all .3s ease-in-out;
}

@media (max-width: 786px) {
    .header a.download_app {
        width: 35px;
        height: 35px;
        padding: 5px;
        color: var(--color-black);
        margin-right: 0;
        flex-shrink: 0;
    }

    .header a.download_app svg {
        height: 20px;
        width: 20px;
        display: block
    }

    .header a.download_app span {
        display: none;
    }
}

.header .logo-block img {
    max-width: 100%;
    width: 80px;
    height: auto;
    background-color: white;
    border-radius: 50%;
    margin-bottom: -7px;
}

.header .cart-block {
    display: flex;
    align-items: center;
    justify-content: center;
}


.header .cart-holder {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    border: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
    user-select: none;
    text-decoration: none;
    color: var(--color-orange);
    background: var(--color-black);
}

.header .cart-holder .bi {
    font-size: 22px;
}

.header .cart-holder span {
    font-size: 12px;
    font-weight: bold;
    color: var(--color-black);
    background-color: #fff;
    border-radius: 500px;
    position: absolute;
    top: -2px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    line-height: 1;
}


.header .cart-holder:hover {
    background-color: var(--color-orange);
}

.header .cart-holder .bi {
    color: #fff;
    transition: all .3s ease-in-out;
}

.header .cart-holder:hover .bi {
    color: var(--color-black);
    transition: all .3s ease-in-out;
}

@media (max-width: 992px) {
    .header .cart-holder span {
        top: 6px;
        right: 31px;
    }

    .header .cart-holder {
        width: 120px;
        height: 50px;
        position: fixed;
        bottom: 10px;
        right: 10px;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
        z-index: 101;
        background-color: var(--color-orange);
        color: #fff;
    }

}

/** ./HEADER **/

/** SUBHEADER **/


.subheader .info-block .free-delivery {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 21px;
}

/** ./SUBHEADER **/
.index-btns {
    display: flex;
    column-gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 30px;
}

.index-btns button {
    padding: 0;
    margin: 0;
    background: var(--color-black);
    color: #fff;
    border: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
    min-width: 250px;
    min-height: 60px;
    border-radius: 60px;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

.index_footer ul {
    font-size: 14px;
    margin-top: 20px;
}

/** INDEX PAGE **/

.btn_category {
    -webkit-animation: btn_light 3s infinite; /* Safari 4.0 - 8.0 */
    animation: btn_light 3s infinite;
}

.notification {
    background: linear-gradient(to right, #ff000073, #ffa50078, #ffff0075);
    font-weight: 600;
    font-size: 18px;
    color: white;
}

/**@keyframes btn_light {
    0% {
        box-shadow: 1px 1px 8px 1px #ffff007;
    }
    50% {
        box-shadow: 1px 1px 8px 6px #ffff007d;
    }
    100% {
        box-shadow: 1px 1px 8px 1px #ffff007d;
    }
}*/
/**@keyframes notification_animate{
    0% {
        background: linear-gradient(to right, red , orange, yellow);
        font-weight:600;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent;
    }
    50% {
        background: linear-gradient(to right, yellow , orange, yellow);
        font-weight:800;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent;
    }
    100% {
        background: linear-gradient(to right, yellow, orange, red);
        font-weight:600;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-fill-color: transparent;
    }
}
.notification{
    -webkit-animation: notification_animate 3s infinite;
    animation: notification_animate 4s infinite;
    font-size: x-large;
}*/
/**@keyframes phone_numbers_animate{
    0% {
        background: linear-gradient(to right, red , orange, yellow);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    50% {
        background: linear-gradient(to right, yellow , orange, yellow);
        -webkit-background-clip: text;
        -webkit-text-fill-color: white;
    }
    100% {
        background: linear-gradient(to right, yellow, orange, red);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}*/


.location {
    margin: auto;
    border-radius: 10px;
    border: 1px solid black;
}

.location iframe {
    width: 100%;
    border-radius: 10px;
    height: 33vmin;
}

@media (max-width: 992px) {
    .location {
        width: 100%;
    }

    .location iframe {
        height: 16vh;
    }
}

/** ./INDEX PAGE **/
/** MENU **/
.menu-sidebar {
    padding-top: 5px;
}

.menu-sidebar .nav-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 0;
}

.menu-sidebar .nav-tabs li {
    float: none;
    width: 100%;
    border: 0;
    margin: 0;
    border-bottom: 1px solid #eaeaea;
}

.menu-sidebar .nav-tabs li a {
    width: 100%;
    border: 0;
    text-align: left;
    text-transform: uppercase;
    color: var(--color-black);
    font-weight: 700;
    display: block;
    padding: 10px;
    transition: all .3s ease-in-out;
    white-space: nowrap;
}

.categories_filters.active, .categories_filters:hover {
    color: red !important;
}

.menu-sidebar .nav-tabs li a:hover,
.menu-sidebar .nav-tabs li a:focus {
    border: 0;
    transition: all .3s ease-in-out;
}

@media (max-width: 992px) {
    .menu-sidebar .nav-tabs {
        display: flex;
        align-items: stretch;
        border: 0;
        overflow: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .menu-sidebar .nav-tabs li a {
        font-size: 19px;
    }
}

/*products*/
.product-holder .product-title {
    font-size: 18px;
}

.product-holder .product-block {
    background: #fff;
    box-shadow: rgb(136 165 191 / 48%) 0px 1px 5px 0px, rgb(255 255 255 / 80%) -6px -2px 16px 0px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    overflow: auto;
}

.product-holder .product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-holder .product-block img {
    margin: auto;
}

.product-holder .product-block .product-data {
    text-align: left;
    padding: 20px 20px 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    position: absolute;
    bottom: 61px;
    color: white;
    background: linear-gradient(to bottom, #00000017 5%, black 100%);
}

@media (max-width: 786px) {
    .product-holder .product-block .product-data {
        padding: 15px;
    }
}

.product-holder .product-block .product-data .product-info-block {
    align-self: flex-end;
}

.product-holder .product-block .product-data .product-description {
    margin-bottom: 0
}

.product-holder .product-block .product-price {
    text-align: center;
    padding: 8px 10px;
    font-size: 19px;
    font-weight: 700;
    background-color: white;
    color: var(--color-orange);
    position: relative;
    top: 8px;
}

.product-holder .product-block .product-footer {
    border-top: 0.0625rem dashed rgba(32, 33, 37, 0.12);
    margin: 0 20px;
    padding: 10px 0;
}

@media (max-width: 992px) {
    .product-holder .product-block .product-footer {
        margin: 0 15px;
    }

    .product-holder .product-block .product-price {
        font-size: 15px;
        top: 10px;
    }

    .product-holder .product-block .product-data {
        bottom: 54px;
    }
}

.product-holder .product-block .product-footer a {
    background: var(--color-orange);
    color: var(--color-black);
    border-radius: 4px;
    padding: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.product-holder .product-block .product-footer a:hover {
    color: #fff;
    background: var(--color-black);
    transition: all .3s ease-in-out;
}

.product-holder .product-block .product-footer a i {
    margin-right: 5px;
}

.content .login_form, h2 {
    color: #FF5722;
}

.tab-content {
    padding: 20px
}

.tab-content .alert {
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.tab-content .alert h4 {
    margin: 0;
}

.tab-content .flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_thumb .thumb_cart_holder:hover {
    color: #5fd7a5;
}

.panel-footer {
    color: white;
    padding: 10px 15px;
    background-color: #f5f5f500;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.modal-content .panel-primary h6 {
    font-size: 18px;
    font-weight: 400;
}

.list-group-item {
    background: black;
    color: white;
}

.label-default {
}

.navbar-default .navbar-toggle {
    margin-top: 27px;
}

@media (max-width: 992px) {
    .product-holder .product-title {
        font-size: 16px;
    }

    .product-holder .product-block .product-data .product-description {
        font-size: 12px;
    }

    .product-holder .product-block .product-footer a {
        font-size: 10px;
        max-height: 85vh;
    }
}

@media (max-width: 992px) {
    .tab-content {
        padding: 11px;
    }
}

/** ./MENU **/
/** PRODUCT DATA **/
.product_data_modal .modal-header {
    flex-direction: column;
    border: unset;
    padding: 0px;
}

.product_data_modal .modal-body::-webkit-scrollbar {
    width: 4px;
    border-radius: 10px;
}

.product_data_modal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product_data_modal .modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.product_data_modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.modal .btn-close {
    position: absolute;
    right: 16px;
    top: 21px;
    font-size: 23px;
    z-index: 9999;
    background-color: white;
    border-radius: 22px;
}

.product_data_modal .modal-body {
    padding: 0px;
    max-height: 82vh;
}

.modal .modal-content {
    border-radius: 10px;
}

.product_data_modal .product_data {
    padding: 15px;
}

.product_data_modal .total_price {
    color: white;
}

.product_data .nav-tabs {
    width: 100%;
    border: 0;
}

.product_data .label {
    font-weight: bold;
}

.product_data .form-control:disabled, .product_data .form-control[readonly] {
    width: 100%;
}

.product_data p {
    color: black;
}

.product_data .required,
.product_data .checkbox {
    font-size: 14px;
    border-radius: 10px;
    padding: 5px;
    box-shadow: rgba(9, 30, 66, 0.25) 3px 3px 4px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product_data .required {
    background-color: var(--color-orange);
    font-weight: bold;
}

.product_data .checkbox label {
    cursor: pointer;
}

.product_data .checkbox input[type=checkbox] {
    display: none;
}

.product_data .checkbox.active {
    background-color: #ff1b0a;
    font-weight: bold;
    color: #fff;
}


.product_data .accesories-list .checkbox.active {
    background-color: var(--color-orange);
    color: var(--color-black);
    color: white;
    font-weight: 500;
}

.product_data .accesories-list {
    display: flex;
}

.product_data .meal_types > li {
    display: inline-block;
    cursor: pointer;
    padding: 4px 10px;
    background-color: #a29c9c85;
    font-weight: 600;
    color: #eeeeee63;
    box-shadow: 2px -1px 4px #cec7c7d9;
    width: 100px;
    line-height: 1;
}

.product_data .meal_types > li p {
    margin-bottom: 2px;
}

.product_data .meal_types > li.resp-tab-active {
    background-color: #efe9e91f;
    color: #194618;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

ul.meal_types {
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.meal_accessories_holder {
    display: inline-block;
    width: 100%;
}

.quantity_indicators {
    position: relative;
    width: 120px;
    padding: 0 !important;
}

.quantity_indicators .down,
.quantity_indicators .up {
    top: 50%;
    width: 40%;
    transform: translateY(-50%);
    height: 100%;
    color: var(--color-orange);
    font-weight: bold;
    font-size: 28px;
    position: absolute;
    padding: 5px;
    cursor: pointer;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity_indicators .form-control[readonly] {
    background-color: white;
    font-weight: bold;
    border: 2px solid var(--color-orange);
}

.quantity_indicators .up:hover, .quantity_indicators .down:hover {
    color: black !important;
}

.quantity_indicators .down {
    left: 0;
}

.quantity_indicators .up {
    right: 0;
}

.btn-danger, .btn-success {
    border-radius: 4px;
    box-shadow: none;
}

.btn-danger {
    color: #fff;
    border-color: #F44336;
}

.btn-success {
    color: #fff;
    border-color: #00ff0c;
}

.btn-danger:hover {
    color: #fff;
    background-color: var(--color-red);
    box-shadow: 1px -3px 8px #ff000085;
}

.btn-success:hover {
    color: #fff;
    background-color: var(--color-green);
    box-shadow: 1px -3px 8px #00ff0c82;
}

@media (max-width: 992px) {
    .product_data_modal .modal-footer {
        padding: 10px 3px;
    }

    .product_data_modal .modal-body {
        max-height: 75vh;
    }
}


/** ./PRODUCT DATA **/
/** CART **/

.cart-row {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #fcb9414f;
}

.cart-row .product-image img {
    border-radius: 10px;
}

.cart-items-number, #customer-form {
    display: inline-block;
    width: 100%;
}


.form-validation {
    position: absolute;
    top: 4px;
    color: var(--color-red);
    font-style: italic;
    right: 16px;
}

.cart-holder .table td {
    text-align: left;
    vertical-align: middle;
}

.cart-holder a:hover, .cart-holder a {
    color: var(--color-orange);
    font-size: 19px;
}

.cart-holder .total-price {
    color: var(--color-orange);
    font-size: 19px;
}

.cart-holder .cart-price-holder {
    margin-bottom: 11px;
}

.cart-holder .label {
    font-weight: bold;
}

[data-action-id="cart"] {
    color: var(--color-black);
}

[data-action-id="cart"] .glyphicon {
    color: var(--color-black);
}

.remove_cart_item svg {
    width: 30px;
    height: 30px;
    fill: red;
}

.btn-save-order {
    background-color: #8BC34A;
    width: 42%;
    border-radius: 10px;
    font-size: 20px;
    padding: 14px;
    color: white;
}

@media (max-width: 992px) {
    .inset-left-20 {
        border-bottom: 1px solid white;
        padding-bottom: 10px;
    }

    .remove_cart_item {
        width: auto;
        position: absolute;
        top: 0px;
        right: 29px;
    }

    .remove_cart_item svg {
        width: 56px;
        height: 56px;
    }

    .btn-save-order {
        width: 100%;
    }

    [data-action-id="cart"] .header-wrapper .cart-holder, [data-action-id="index"] .header-wrapper .cart-holder {
        display: none;
    }
}

.empty-cart-btn {
    margin-top: 20px;
    background-color: var(--color-orange);
    font-size: 24px;
    border-radius: 11px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .empty-cart-btn {
        width: 84%;
    }
}

/** ./CART **/
/** FOOTER **/
footer {
    padding: 10px 0;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 992px) {
    footer {
        padding-top: 8px;
        padding-bottom: 10px;
        font-size: 12px;
    }
}

/** ./FOOTER **/


/** SUCCESS PAGE **/
.success_page {
    padding: 15px;
    color: var(--color-black);
}

.success_page .icon {
    display: inline-block;
    padding: 19px;
    font-size: 57px;
    width: 120px;
    height: 120px;
    background-color: #cddc39;
    border-radius: 51%;
}

[data-action-id="success"] .inner-container {
    min-height: unset;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

@media (max-width: 992px) {
    [data-action-id="success"] .inner-container {
        padding-top: 5vh;
        padding-bottom: 5vh;
    }

    .success_page .title {
        font-size: 24px;
    }

    .success_page p {
        font-size: 15px !important;
    }
}

/** ./SUCCESS PAGE **/
