@font-face {
    font-family: poppins;
    src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
    font-family: poppins-regular;
    src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
    font-family: poppins-bold;
    src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: poppins-light;
    src: url(../fonts/Poppins-Light.ttf);
}

html {
    font-size: 10px;
}

body {
    font-family: poppins;
    font-size: 1.6rem;
    letter-spacing: .1rem;
}

@media (max-width: 1199px) {
    .main_section .container {
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.justify-content-space-between {
    justify-content: space-between;
}

.cursor_pointer {
    cursor: pointer;
}

.font-20 {
    font-size: 2rem;
}


/* width */

 ::-webkit-scrollbar {
    width: 8px;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: #ddd;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #fff4f4;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #ff232a;
}

.fullWidth {
    float: left;
    width: 100%;
}
.text-red{color: #ff232a;}
.btn {
    padding: 2rem 3rem;
    border: 0;
    font-size: 1.6rem;
    border-radius: 0.7rem;
    text-transform: capitalize;
    position: relative;
}

.btn:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.btn:before {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition: all 400ms ease;
}

.btn:before {
    background: -webkit-radial-gradient(center, ellipse, rgba(39, 3, 106, 0.5) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(39, 3, 106, 0.5) 0%, rgba(0, 0, 0, 0) 80%);
}

.btn:hover:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.btn_primary,
.btn_primary:hover {
    background-color: #ff232a;
    color: #fff;
}

.btn_yellow,
.btn_yellow:hover {
    background-color: #ffd556;
    color: #000;
}

.btn_orange,
.btn_orange:hover {
    background-color: #faac57;
    color: #000;
}

.btn_blue,
.btn_blue:hover {
    background-color: #98caed;
    color: #000;
}

.logo img {
    height: 7rem;
}

@media screen and (min-width: 768px) {
    .red_bg .logo img {
        height: 4rem;
    }
}

header.red_bg {
    background-color: #ff232a;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 1rem 3rem;
    font-size: 1.5rem;
    color: #111111;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
    color: #fff;
}

.main_section {
    width: 100%;
    background: #ffffff url(../images/header_banner_wave.svg) no-repeat;
    background-size: 100% auto;
    position: relative;
    padding-top: 15rem
}

.welcome_text {
    font-size: 2.4rem;
}

h1 {
    font-size: 4.4rem;
}

.h1_caption {
    font-size: 2rem;
    line-height: 3.4rem;
    font-family: poppins-light;
}

.main_section h1,
.main_section .h1_caption {
    color: #000;
}

.qr_vector {
    animation: MoveUpDown 2s linear infinite;
}

.qr_code_img img {
    width: 300px;
}

@keyframes MoveUpDown {
    0% {
        position: relative;
        top: 0;
    }
    50% {
        position: relative;
        top: 10px;
    }
    100% {
        position: relative;
        top: 0;
    }
}


/* Create Account */

form label {
    font-family: poppins-light;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    float: left;
    width: 100%;
    text-align: left;
}

.form-group {
    float: left;
    width: 100%;
    margin-bottom: 2rem;
}

.form-control {
    width: 100%;
    font-size: 1.6rem;
    font-family: 'poppins-light';
    border-radius: .8rem;
    padding: 1rem;
}

.middle_content {
    float: left;
    width: 100%;
    /* max-height: 80vh;
overflow-y: auto;
overflow-x: hidden;
margin-top: 4rem; */
}

.create_account_vector {
    max-width: 85%;
    animation: MoveUpDown 2s linear infinite;
}

.create_account {
    background: #fff4f4;
    padding: 5rem;
    border-radius: 2rem;
}

.add_picture {
    width: 8rem;
    height: 8rem;
    border-radius: .8rem;
    border: .1rem dashed #ddd;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    margin-left: 30px;
}

.add_picture input {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.add_picture i {
    color: #ff232a;
    font-size: 2rem;
}

.upload_img {
    width: 14rem;
    float: left;
}

.uploaded_img {
    float: right;
}

.uploaded_img img, .uploaded_img .uploaded_video_preview {
    width: 15rem;
    height: 12rem;
    object-fit: cover;
    object-position: center;
    border-radius: 1.5rem;
    border: .1rem dashed #ddd;
}

.business_review .uploaded_img,
.item_preview .uploaded_img {
    width: 100%;
    margin-bottom: 5px; /* rupesh code */
}

.business_review .uploaded_img img, .business_review .uploaded_img .uploaded_video_preview,
.item_preview .uploaded_img img, .item_preview .uploaded_img .uploaded_video_preview {
    width: 100%;
    height: 20rem;
}

/* rupesh code start */

.uploaded_logo {
    float: right;
}

.uploaded_logo img {
    width: 15rem;
    height: 12rem;
    object-fit: cover;
    object-position: center;
    border-radius: 1.5rem;
    border: .1rem dashed #ddd;
}

.business_review .uploaded_logo,
.item_preview .uploaded_logo {
    width: 100%;
    margin-top: 5px;
}

.business_review .uploaded_logo img,
.item_preview .uploaded_logo img {
    width: 100%;
    height: 20rem;
}

/* rupesh code end */

a {
    color: #ff232a;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    color: #000
}

.review_social_icon a {
    color: #ff232a;
    font-size: 2.6rem;
    transition: 0.3s ease-in-out;
}

.review_social_icon a:hover {
    color: #000
}

.cong_screen {
    text-align: center;
}

.cong_screen h2 {
    font-size: 3rem;
    font-family: poppins-bold;
}

.cong_screen h3 {
    font-family: poppins-bold;
}

.cong_screen h4 {
    font-family: poppins-bold;
}

.cong_screen p {
    font-family: poppins-light;
}


/* Admin Panel */

.wrapper {
    display: flex;
    min-height: 100vh;
}

#sidebar {
    width: 30rem;
    background: linear-gradient( 180deg, rgba(255, 35, 42, .6), #f30008);
    position: fixed;
    min-height: 100vh;
}

#sidebar:after {
    content: '';
    background: url(../images/sidebar_bg.png) no-repeat;
    background-position: bottom center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background-size: 100% auto;
    opacity: .2;
}

.admin_logo,
.nav {
    position: relative;
    z-index: 1;
}

#sidebar .admin_logo img {
    max-height: 6.5rem;
}

.nav {
    padding: 3rem 0 0;
}

.menu-item>a {
    float: left;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: .7rem;
    margin-bottom: 1rem;
}

.menu-item.active a,
.menu-item:hover a {
    background: #fff;
}

.menu-item.active a,
.menu-item:hover a {
    color: #ff232a;
}

.menu-item a {
    color: #fff;
}

#content {
    max-width: calc(100% - 30rem);
    margin-left: 30rem;
}

.topbar {
    padding: 0;
    box-shadow: 0 0.5rem .4rem -.4rem rgba(0, 0, 0, .2);
}

.topbar h1 {
    font-size: 2rem;
}

.header_profile {
    font-size: 1.5rem;
    color: #8c8c8c;
}

.topbar .profile_pic img {
    border-radius: 100%;
    height: 6rem;
    width: 6rem;
    float: left;
    border: .1rem solid #ddd;
    border-radius: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.dropdown-menu {
    padding: .5rem;
    border-radius: .5rem;
}

.dropdown-menu .dropdown-item {
    color: #999;
    font-size: 1.4rem;
    padding: 0.7rem 1rem;
    border-radius: .5rem;
    transition: .3s ease-in-out
}

.dropdown-menu .dropdown-item:hover {
    background: #ff232a;
    color: #fff;
}

.dropdown-menu .dropdown-item i {
    font-size: 1.8rem;
    color: #c5ccde;
}

.dropdown-menu .dropdown-item i.fa-toggle-off {
    margin-top: .2rem;
    float: left;
}

.dropdown-menu .dropdown-item:hover i {
    color: #fff;
}

.content_area h2 {
    display: flex;
    /* font-family: poppins; */
    font-size: 3rem;
    align-items: center;
    justify-content: space-between;
}

.add_form {
    /* background: #fff4f4;
padding: 3rem;
border-radius: 1.5rem; */
}

.business_profile_img img, .business_profile_img  .uploaded_video_preview {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.business_profile_img a {
    background: #000;
    top: 1rem;
    right: 0;
    border-radius: .5rem 0 0 .5rem;
    color: #fff;
    font-family: poppins-light;
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: .3rem .5rem;
}

.business_services {
    background: #f47521;
    color: #fff;
}

.feature_image {
    width: 15rem;
}

.feature_image img {
    width: 15rem;
    height: 13rem;
    border-radius: .75rem;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.feature_content p {
    font-family: poppins-light;
}

.feature_content {
    width: calc(100% - 15rem);
    padding-left: 2rem;
}

.food_menu_list .todays_feature {
    padding: 1rem;
    background: #fff4f4;
    border-radius: .75rem;
    transition: .3s ease-in-out;
}

.food_menu_list .todays_feature:hover {
    box-shadow: 0 .7rem 1.8rem -1.4rem rgba(0, 0, 0, .3);
}

.food_menu_list .todays_feature img {
    border-radius: .75rem;
}

.finish_order_screen .feature_content {
    width: calc(100% - 0rem);
    padding-left: 0;
}

.justify-content-center {
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    #sidebar {
        width: 20rem;
    }
    #sidebar .admin_logo img {
        max-height: 4.5rem;
    }
    .admin_logo {
        text-align: center;
        padding: .7rem 0;
    }
    #content {
        max-width: calc(100% - 20rem);
        margin-left: 20rem;
    }
}

@media screen and (max-width: 992px) {
    .create_account {
        background: #fff4f4;
        padding: 5rem 2rem;
        border-radius: 2rem;
    }
}

@media screen and (max-width: 980px) {
    .main_section h1 {
        font-size: 3rem
    }
    .main_section .h1_caption {
        font-size: 1.8rem
    }
    .btn {
        padding: 1rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .main_section .logo img {
        max-height: auto;
        height: auto;
        width: 40rem;
    }
    .main_section {
        text-align: center;
    }
    .account_btns {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn {
        max-width: 35rem;
        width: 100%;
        max-width: 100%;
        width: auto;
    }
    /* rupesh code start */
    .heading-btn .btn{
        margin: 3px 0px;
    }
    /* rupesh code end */
}

@media screen and (max-width: 767px) {
    .flex-direction-md-column {
        flex-direction: column;
    }
    header {
        background: #2595ff;
    }
    .main_section {
        background: transparent;
        padding-top: 5.4rem;
    }
    .main_section .logo img {
        max-height: auto;
        height: auto;
        width: 30rem;
    }
    .main_section h1 {
        font-size: 2.4rem
    }
    .main_section .h1_caption {
        font-size: 1.4rem;
        line-height: 2.1rem;
    }
    .welcome_text {
        font-size: 2.8rem;
    }
    .middle_content {
        float: left;
        width: 100%;
        max-height: calc(100vh - 6rem);
        overflow-y: auto;
        overflow-x: hidden;
        margin-top: 0;
        padding-top: 2rem;
        height: 100vh;
    }
    .create_account {
        background: transparent;
        padding: 0;
    }
    .create_account .btn {
        max-width: auto;
        width: auto;
    }
    .call_email {
        /* background: #e2c165;
        padding: .5rem 0; */
        background-color: #f8f9fa;
        padding: 10px 15px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 1.1);
        display: flex;
        align-items: center;
        font-size: 16px;
    }
    .follow_us {
        flex-direction: column;
    }
    .review_social_icon a {
        width: 100%;
        float: left;
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
        color: #fff;
        text-transform: uppercase;
        padding: .5rem 0;
        font-family: poppins-light;
    }
    .facebook {
        /* background: #405eab; */
        background: #3b5998;
    }
    .instagram {
        /* background: #de2f26; */
        background: #E4405F;
    }
    .twitter {
        /* background: #26acde; */
        background: #1DA1F2;
    }
    .world {
        /* background: #ba8c2d; */
        background: #555555;
    }
    .cstm-ali-cent{
        align-items: normal !important;
    }
}

@media screen and (max-width: 575px) {
    .main_section .logo img {
        width: 29rem;
    }
    .cong_screen h2 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 376px) {
    .uploaded_img img {
        width: 12rem;
    }
    /* rupesh code start */
    .uploaded_logo img {
        width: 12rem;
    }
    /* rupesh code end */

}

@media screen and (max-width: 767px) {
    #sidebar {
        display: none;
    }
    #content {
        max-width: 100%;
        margin-left: 0;
    }
    .topbar {
        background: #2595ff;
    }
    .content_area .item_preview h2 {
        display: block;
    }
    .content_area .item_preview h2 .btn {
        margin-top: 30px;
    }
    .todays_feature {
        flex-direction: column;
    }
    .feature_image {
        width: 100%;
    }
    .feature_image img {
        width: 100%;
        height: 20rem;
    }
    .feature_content {
        width: 100%;
        padding-left: 0;
        margin-top: 2rem;
    }
    .price_addToOrder span {
        width: 100%;
        margin: 2rem 0;
        text-align: center;
    }
    .btn_black,
    .btn_black:hover {
        background: #000;
        color: #fff;
        padding: 1.2rem 2.5rem;
        border-radius: 0.9rem;
    }
}

.business_control_logo {
    height: 10rem;
}

.order_list_table td,
.order_list_table tr {
    border: 0
}

.table>:not(caption)>*>* {
    border-bottom: 0;
}

.line_saperator {
    width: 60%;
    display: inline-block;
    box-shadow: 0px 0px 3px 1px #000;
    margin: 0 auto;
}

.login_logo img {
    max-height: 10rem
}

@media screen and (max-width: 767px) {
    #hamburger {
        position: relative;
        padding: 5px;
        z-index: 9;
    }
    .navbar {
        position: unset
    }
    #mobile_menu {
        position: absolute;
        left: 0;
        top: 53px;
        background: #4aa7ff;
        width: 100%;
        flex-direction: column;
    }
    .navbar a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }
}

.todays_special {
    border: 2px dashed #555;
    padding: 10px;
    background: #fff4f4;
    border-radius: 5px;
    margin-top: 10px;
}

.todays_special img {
    border: 3px solid #f47521;
}


.qr_code_img{ margin: 0 auto;width: 100%; max-width: 400px;}
.qr_code_box{border: 1px solid #333; padding: 20px 50px;}
@media screen and (max-width: 376px){.qr_code_box{padding: 15px;}}




/* for Print */
@media print{
#qr_code_img{ }
}

.cstm-ali-cent{
    align-items: center;
}.flex-direction-md-column