@charset "utf-8";

/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0px 0 0 0;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: normal;
    background: #F6F8FD;
}

body {
    opacity: 1;
    transition: .5s opacity;
}

body.fade-out {
    opacity: 0;
    transition: none;
}

img {
    max-width: 100%;
}

a,
a:hover,
a.active,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

#main {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.brand {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    z-index: 3
}

.section-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url(../img/rest-img.png) center top no-repeat;
    background-size: cover;
}

.section-banner:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: -moz-linear-gradient(left, rgba(250, 68, 49, 0.85) 0%, rgba(250, 33, 92, 0.85) 100%);
    background: -webkit-linear-gradient(left, rgba(250, 68, 49, 0.85) 0%, rgba(250, 33, 92, 0.85) 100%);
    background: linear-gradient(to right, rgba(250, 68, 49, 0.85) 0%, rgba(250, 33, 92, 0.85) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d9fa4431', endColorstr='#d9fa215c', GradientType=1);
}

.section-banner .content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
}

.section-banner .content img {
    right: -75px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pad-l {
    padding-left: 35%
}

.pad-l strong {
    color: #FBC61A;
    font-size: 20px;
    font-weight: 500;
}

.pad-l h1 {
    color: #fff;
    font-weight: 600;
    font-size: 45px;
    margin-bottom: 25px;
}

.mdi-36px {
    font-size: 39px;
    margin-right: 10px
}

.btn-outline-dark {
    color: #fff;
    border-color: #000;
    background: #000;
}

.read-more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    z-index: 3
}

.about {
    width: 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
}

.about-content:after {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 100px;
    color: #F0F3FB;
    content: "ABOUT";
    font-weight: 800;
    line-height: 80px;
    z-index: -1
}

.about-content p {
    line-height: 30px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    padding-top: 30px;
    margin-bottom: 50px;
}

.video-sections {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 270px;
    margin-bottom: 0px;
    background: url(../img/video.png) center top no-repeat;
    background-size: cover;
}

.video-sections .play {
    position: absolute;
    left: 50%;
    text-align: center;
    color: #000;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

#video-box {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 1050;
}

#video-box.opens {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#video-box .closes {
    position: fixed;
    top: 15px;
    right: 15px;
    border: none;
    color: #fff;
    background-color: #FC5C13;
    border-color: #FC5C13;
    opacity: 1;
    padding: 0px;
    font-size: 15px;
    width: 30px;
    height: 30px;
}

#video-box video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.our-goal {
    width: 100%;
    position: relative;
    background: #1A202E;
    padding-top: 100px;
    overflow: hidden;
}

.goal-content {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.goal-content:after {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 100px;
    color: #1E2536;
    content: "OUR GOAL";
    font-weight: 800;
    line-height: 80px;
    z-index: 1
}

.goal-content p {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.goal-content p:first-child {
    padding-top: 40px;
}

.app-section {
    padding: 50px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.app-section p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.footer {
    width: 100%;
    position: relative;
    background: #F0F3FB;
    padding-top: 50px;
    overflow: hidden;
}

.footer-contatcts {
    position: relative;
    width: 100%;
}

.footer-contatcts:after {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 100px;
    color: #E7E9F5;
    content: "CONTACT";
    font-weight: 800;
    line-height: 80px;
    z-index: 1
}

.footer-contatcts .row {
    position: relative;
    z-index: 2;
}

.footer-contatcts ul {
    margin-top: 25px;
    margin-bottom: 0px;
    list-style: none;
}

.footer-contatcts li {
    margin: 0px;
    list-style: none;
    line-height: 24px;
}

.footer-contatcts address {
    margin-top: 25px;
    margin-bottom: 0px;
    list-style: none;
    line-height: 24px;
}

.footer .copyright {
    background: #DADDE3;
    color: #474747;
    font-size: 12px;
    width: 100%;
    margin-top: 50px;
    line-height: 40px;
}

.footer .copyright a {
    color: #474747;
}

.footer .copyright a:hover {
    color: #000;
}

@media(max-width:1024px) {
    .pad-l {
        padding-left: 0;
    }
    .mdi-36px {
        font-size: 32px;
    }
}

@media(max-width:768px) {
    .goal-content {
        position: relative;
        width: 100%;
        top: 0%;
        transform: translateY(-0%);
    }
    .goal-content p {
        font-size: 15px;
    }
}

@media(max-width:767px) {
    .pad-l {
        padding-left: 0;
        text-align: center;
    }
    .about-content:after {
        display: none;
    }
    .goal-content {
        position: relative;
    }
    .goal-content:after {
        display: none;
    }
    .our-goal {
        text-align: center;
    }
    .mdi-36px {
        font-size: 39px;
    }
    .footer-contatcts:after {
        display: none
    }
}

@media(max-width:736px) {
    .brand img {
        max-width: 50px;
    }
}

@media(max-width:667px) {
    .brand img {
        max-width: 50px;
    }
}

@media(max-width:480px) {
    .brand img {
        max-width: 100%;
    }
}


/*---------- Css for the Details page ----------*/

.details-main {
    position: relative;
    width: 100%;
    margin: 0px auto;
}

.white-bg {
    width: 100%;
    background: #fff;
    position: relative;
    top: -60px;
}

.background {
    height: 450px;
    background-position: 100%;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    background: url(../img/restaurant-690975_1920.png) center top no-repeat;
    background-size: cover;
}

.background-dish {
    height: 450px;
    background-position: 100%;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    background: url(../img/sl19_fb_jun03.png) center top no-repeat;
    background-size: cover;
}

.gallery {
    position: absolute;
    right: 195px;
    top: 20px;
}

.arrow-back {
    position: absolute;
    left: 20px;
    top: 20px;
}

.rest-content {
    position: relative;
    width: 100%;
    padding: 0px 0;
}

.rest-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.rest-content ul {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
}

.rest-content li {
    margin: 0;
    padding: 0 15px;
    list-style: none;
    vertical-align: top;
    position: relative;
    text-align: center;
    width: 32%;
    display: inline-block;
}

.rest-content li:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    content: "";
    background: #e7e9f5;
}

.rest-content li:last-child:after {
    display: none;
}

.rest-content li span {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: #5d5d5d;
}

.reviews-bg {
    background: #e7e9f5;
    width: 100%;
    border-radius: 40px;
    padding: 10px 20px;
}

.reviews-bg .stars {
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    display: inline-block;
}

.reviews-bg .stars li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 16px;
    color: #FFBB00;
    width: auto;
    line-height: 30px;
    vertical-align: middle;
}

.reviews-bg .user-reviews-picks {
    position: relative;
    width: auto;
    display: inline-block;
    margin-left: 15px;
    line-height: 30px;
}

.reviews-bg .user-reviews-picks span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.reviews-bg .user-reviews-picks span.second {
    z-index: 2;
    margin-left: -5px;
}

.reviews-bg .user-reviews-picks span strong {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 33, 92, 0.7);
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 11px;
}

.reviews-bg .user-reviews-picks aside {
    display: inline-block;
    position: relative;
    margin-left: 10px;
    color: #FA215C;
}

.rest-disc {
    font-size: 15px;
    color: #5d5d5d;
    line-height: 25px;
    width: 100%;
    margin-top: 20px;
}

.menu-sections {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

h4.my-class {
    font-weight: 400;
    color: #000;
    margin-bottom: 0px;
    font-size: 18px;
}

.tabs-rounded {
    margin: 20px 0 20px 0;
    padding: 20px 0 20px 0;
    list-style: none;
    border-bottom: 1px solid #D8DBEC;
}

.tabs-rounded li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.tabs-rounded li a {
    background: #fff;
    color: #000;
    line-height: 40px;
    display: block;
    padding: 0 25px;
    border: 1px solid #D8DBEC;
    border-radius: 40px;
}

.tabs-rounded li a:hover,
.tabs-rounded li a:active,
.tabs-rounded li.active a {
    background: rgb(250, 68, 49);
    background: -moz-linear-gradient(-45deg, rgba(250, 68, 49, 1) 0%, rgba(250, 33, 92, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(250, 68, 49, 1) 0%, rgba(250, 33, 92, 1) 100%);
    background: linear-gradient(135deg, rgba(250, 68, 49, 1) 0%, rgba(250, 33, 92, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fa4431', endColorstr='#fa215c', GradientType=1);
    color: #fff;
    border-color: #FA215C;
}

.tabs-rounded li:last-child {
    margin: 0 0 0 0;
}

.tabs-circle {
    position: relative;
    margin: 0px;
    width: 110px;
    height: 110px;
    line-height: 110px;
    text-align: center;
    border-radius: 50%
}

.tabs-circle a {
    display: block;
    background: #fff;
    color: #000;
    line-height: 110px;
    width: 110px;
    height: 110px;
    display: block;
    border: 1px solid #D8DBEC;
    border-radius: 100%;
}

.tabs-circle a:hover,
.tabs-circle.active a {
    background: rgb(250, 68, 49);
    background: -moz-linear-gradient(-45deg, rgba(250, 68, 49, 1) 0%, rgba(250, 33, 92, 1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(250, 68, 49, 1) 0%, rgba(250, 33, 92, 1) 100%);
    background: linear-gradient(135deg, rgba(250, 68, 49, 1) 0%, rgba(250, 33, 92, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fa4431', endColorstr='#fa215c', GradientType=1);
    color: #fff;
    border-color: #FA215C;
}


/*#menus-circle{margin-bottom: 20px; padding-bottom: 20px;}*/

.food-list {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 15px;
    padding-left: 161px;
    background: #fff;
    min-height: 140px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.food-list .image-left {
    position: absolute;
    left: 0;
    width: 120px;
    height: 100%;
}

.food-list .rounds-price {
    width: 50px;
    height: 50px;
    line-height: 48px;
    left: 95px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: #FA215C;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.food-list .discription {
    padding: 15px 15px 15px 0px;
}

.food-list .discription strong {
    font-size: 15px;
}

.food-list .discription strong a {
    color: #000;
}

.food-list .discription strong a:hover {
    color: #FA215C;
}

.food-list .discription p {
    font-size: 12px;
    color: #474747;
    margin: 10px 0 0 0;
    font-weight: 600
}

.food-reviews {
    list-style: none;
    margin: 0;
    padding: 0;
}

.food-reviews li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 12px;
}

.food-reviews li img {
    width: 12px;
}

.food-reviews li:last-child {
    margin-left: 10px;
    color: #B1B1B1;
}

.dish-address {
    width: 100%;
    position: relative;
    margin-top: 20px;
    line-height: 24px;
}

.dish-address img {
    width: 24px;
    margin-right: 5px;
}

.price-big {
    position: absolute;
    right: 70px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fa4431+0,fa215c+100 */
    background: rgb(250, 68, 49);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(250, 68, 49, 1) 0%, rgba(250, 33, 92, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(250, 68, 49, 1) 0%, rgba(250, 33, 92, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(250, 68, 49, 1) 0%, rgba(250, 33, 92, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fa4431', endColorstr='#fa215c', GradientType=0);
    /* IE6-9 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    border-radius: 50%;
    top: 0px;
    border: 1px solid #fff;
    margin-top: -35px;
}

.main-reviews {
    position: relative;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
}

.reviews-lists {
    position: relative;
    width: 100%;
    padding-left: 75px;
    min-height: 75px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.reviews-lists .user-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.reviews-lists h4 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    display: inline-block;
    width: auto;
    margin-right: 30px;
}

.reviews-lists small {
    line-height: 18px;
    font-size: 12px;
    color: #474747;
}

.reviews-lists small.last-reviews {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reviews-lists small.last-reviews li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 12px;
}

.reviews-lists small.last-reviews li img {
    width: 12px;
}

.reviews-lists small.last-reviews:last-child {
    margin-left: 10px;
    color: #B1B1B1;
}

.reviews-lists p {
    color: #474747;
    font-size: 12px;
    margin: 10px 0 0 0;
}

@media(max-width:768px) {
    .details-main {
        padding: 0 15px;
    }
}

@media(max-width:480px) {
    .tabs-circle {
        margin: 0px auto;
    }
}

@media(max-width:380px) {
    .tabs-rounded li a {
        padding: 0 20px;
    }
}


/*akshara css*/

.btn-red {
    background: #FA4431;
    border: 2px solid #fff;
    display: inline-block;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    padding: 6px 30px;
    border-radius: 50px;
}

.btn-red:hover {
    color: #fff;
}

.user-authentication-section {
    padding: 100px 0;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.user-authentication-section h2 {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
}

.custom-form input,
.custom-form select {
    border: 1px solid #D8DBEC;
    padding: 15px;
    height: 50px;
    border-radius: 6px;
}

.custom-form select {
    font-size: 12px;
    color: #A0A0A1;
    font-weight: 500;
}

.custom-form textarea {
    border: 1px solid #D8DBEC;
    padding: 15px;
    border-radius: 6px;
}

.custom-form input::placeholder,
.custom-form textarea::placeholder,
.custom-form select::placeholder {
    font-size: 12px;
    color: #A0A0A1;
    font-weight: 500;
}

.custom-form .input-icon {
    position: relative;
}

.custom-form .input-icon img {
    position: absolute;
    right: 10px;
    top: 19px;
}

.custom-form .input-file-cst .hide_file {
    position: absolute;
    z-index: 1000;
    opacity: 0;
    cursor: pointer;
    right: 0;
    top: 0;
    height: 100%;
    font-size: 24px;
    width: 100%;
}

.custom-form .input-file-cst {
    position: relative;
}

.custom-form .input-file-cst .edit-icon {
    position: absolute;
    right: 0;
    left: 63px;
    text-align: center;
    margin: 0 auto;
}

.custom-form .form-check label {
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 700;
}

.user-authentication-section .authenticate-links,
.user-authentication-section p {
    font-size: 12px;
    color: #FFFFFF;
    font-weight: 600;
}

.user-register-sec {
    height: 100%;
}


/*dashboard*/

.main-headline-title {
    font-size: 18px;
    color: #1A202E;
    font-weight: 600;
}

.breadcrumps p>a,
.breadcrumps p>span {
    color: #474747;
    font-size: 10px;
    font-weight: 500;
}

.profile-details-sec {
    background: #fff;
    padding: 40px 55px;
}

.profile-details-sec h2 {
    font-size: 20px;
    color: #1A202E;
    font-weight: 700;
}

.rating a {
    color: #FFBB00;
}

.recent-rating-and-review {
    background: #fff;
    padding: 30px;
}

.sub-headline-title {
    font-size: 18px;
    color: #1A202E;
    font-weight: 600;
}

.view-all-link {
    font-size: 12px;
    color: #0077FF;
    font-weight: 600;
}

.recent-rating-and-review h3 {
    color: #1A202E;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 5px;
}

.recent-rating-and-review span {
    font-size: 8px;
    color: #474747;
}

.recent-rating-and-review .recent-rating-and-review-content {
    width: 90%;
}

.recent-rating-and-review p {
    font-size: 10px;
    color: #474747;
    font-weight: 500;
}

.recent-rating-and-review a.post-cmt {
    font-size: 12px;
    color: #FA4431;
    font-weight: 500;
}

.profile-details-sec .upload-remove-photo a {
    font-size: 10px;
    font-weight: 600;
}

.connect-to-social-media {
    padding: 15px 55px;
    background: #fff;
}

.connect-to-social-media a {
    font-size: 10px;
    color: #000000;
    font-weight: 600;
}

.widget {
    background: #fff;
    padding: 30px;
}

.btn-orange {
    background: #FA4431;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 50px;
    border-radius: 50px;
    display: inline-block;
}

.btn-gray {
    background: #A0A0A1;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 50px;
    border-radius: 50px;
    display: inline-block;
}

.update-business-hours .days p {
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 500;
}

.update-business-hours .days {
    background-color: #323947;
    padding: 10px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.update-business-hours .start-end-time {
    background: #F6F7FC;
    padding: 15px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.update-business-hours {
    border: 1px solid #D8DBED;
    border-radius: 10px;
}

.update-business-hours form label {
    font-size: 12px;
    color: #1A202E;
    font-weight: 500;
    margin-bottom: 3px;
}

.update-business-hours form input {
    background: transparent;
    border: 1px solid #A0A0A1;
    border-right: none;
    padding: 10px;
    border-radius: 4px;
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
}

.update-business-hours form .input-group-prepend .input-group-text {
    background-color: transparent;
    border: 1px solid #A0A0A1;
    border-radius: 4px;
    border-left: none;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
}

.update-business-hours form .input-group-prepend {
    position: relative;
}

.update-business-hours form .input-group-prepend::after {
    content: '';
    display: block;
    height: 25px;
    width: 1px;
    background: #A0A0A1;
    position: absolute;
    left: 0;
    top: 7px;
}

.customcheck {
    display: block;
    position: relative;
    padding-left: 23px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    top: 1px;
}

.customcheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: unset;
}

.checkmark {
    position: absolute;
    top: 0px;
    left: 0;
    height: 17px;
    width: 17px;
    border-radius: 0 !important;
    border: 1px solid #ebebeb;
}

.customcheck input:checked~.checkmark {
    background-color: #FA4431;
    border-radius: 5px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.customcheck input:checked~.checkmark:after {
    display: block;
}

.customcheck .checkmark:after {
    left: 1px;
    top: 2px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    width: 6px;
    height: 10px;
}

.manage-menu-breadcrumps .btn-orange {
    padding: 10px 20px;
}

.reviews-admin .user-reviews-picks {
    position: relative;
    width: auto;
    display: inline-block;
    margin-left: 15px;
    line-height: 30px;
}

.reviews-admin .user-reviews-picks span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.reviews-admin .user-reviews-picks span.second {
    z-index: 2;
    margin-left: -11px;
}

.reviews-admin .user-reviews-picks aside {
    display: inline-block;
    position: relative;
    margin-left: 10px;
    color: #FA215C;
}

.reviews-admin .user-reviews-picks span strong {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 33, 92, 0.7);
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-size: 11px;
}

.reviews-admin {
    width: 210px;
}

.table-custom .table thead th {
    vertical-align: middle;
    border-bottom: none;
    background: #FA215C;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
}

.table-custom .table th,
.table-custom .table td {
    padding: 15px;
    vertical-align: middle;
    border-top: none;
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}

.table-custom .table tr:last-child td {
    border-bottom: none;
}

.table-custom .table td {
    border-bottom: 1px solid #A0A0A1;
}

.Dropdown-toggle-list {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border: 1px solid #A0A0A1;
    top: 120px;
    right: 0;
    border-radius: 15px;
}

.Dropdown-toggle-list:before {
    content: "";
    position: absolute;
    top: -28px;
    right: 50px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid transparent;
    border-bottom: 14px solid #A0A0A1;
}

.Dropdown-toggle-list li {
    list-style: none;
}

.Dropdown-toggle-list li a {
    color: #000000;
    font-size: 12px;
    font-weight: 500;
}

.Dropdown-toggle-list li a:hover {
    color: #fa4431;
}

.custom-pagination ul>li {
    margin: 0 5px;
}

.custom-pagination ul>li>a {
    border: 1px solid #D8DBEC;
    border-radius: 5px;
    padding: 13px 18px;
    font-size: 12px;
    color: #1A202E;
    font-weight: 500;
}

.custom-pagination ul>li.active>a {
    background-color: #FA4431 !important;
    color: #fff !important;
    border-color: #D8DBEC !important;
    z-index: -1 !important;
}

.custom-pagination ul>li>a:hover {
    background: #FA4431;
    color: #fff;
    z-index: -1 !important;
}

.custom-pagination ul {
    justify-content: flex-end;
}


/*8-12-2020*/

.bills-cst ul.nav li a.nav-link.active {
    background-color: #A30044;
}

.bills-cst ul.nav li:last-child a.nav-link {
    border-radius: 0;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.bills-cst ul.nav li a.nav-link {
    background: #D8DBEC;
    color: #323947;
    font-size: 10px;
    padding: 9px 30px;
    border-radius: unset;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.bills-cst ul.nav li a.nav-link.active {
    background-color: #FA4431;
    color: #fff;
}

.bills-cst ul.nav li:last-child a.nav-link.active {
    border-radius: 0;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.recent-rating-and-review form.custom-form .form-group {
    position: relative;
}

.recent-rating-and-review form.custom-form .form-group img {
    position: absolute;
    right: 0;
    top: 1px;
}


/*9-12-2020*/

.custom-form .custom-file-label::after {
    position: absolute;
    top: 7px;
    right: 6px;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 35px;
    padding: 8px 15px 8px 15px;
    line-height: 1.5;
    color: #fff;
    content: "Browse";
    background-color: #FA215C;
    border-left: inherit;
    border-radius: 0 0.25rem 0.25rem 0;
    font-size: 12px;
    border-radius: 6px;
}

.custom-form label.custom-file-label {
    border: 1px solid #D8DBEC;
    padding: 15px;
    height: 50px;
    border-radius: 6px;
    font-size: 12px;
    color: #A0A0A1;
    font-weight: 500;
}


/*10-12-2020*/

.manage-photo-gallery .gallery-img {
    position: relative;
    margin-bottom: 30px;
}

.manage-photo-gallery .gallery-img .onhover {
    display: none;
}

.manage-photo-gallery .gallery-img a.list-menu {
    position: relative;
    top: 7px;
}

.manage-photo-gallery .gallery-img:hover .onhover {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
}

.manage-photo-gallery .gallery-img .onhover p {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 35px;
}

.manage-photo-gallery .gallery-img .onhover span {
    font-size: 10px;
    color: #fff;
    font-weight: 400;
}

.manage-photo-gallery .gallery-img .onhover .show-list {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border: 1px solid #A0A0A1;
    top: 59px;
    right: 0;
    border-radius: 15px;
}

.manage-photo-gallery .gallery-img .onhover .show-list:before {
    content: "";
    position: absolute;
    top: -28px;
    right: 13px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid transparent;
    border-bottom: 14px solid #A0A0A1;
}

.manage-photo-gallery .gallery-img .onhover .show-list ul>li {
    list-style: none;
}

.manage-photo-gallery .gallery-img .onhover .show-list ul>li a {
    color: #000000;
    font-size: 12px;
    font-weight: 500;
}

.uplaod-img-sec {
    background: #fff;
    padding: 5px;
}

.upload-img {
    border: 1px dashed #A0A0A1;
    padding: 15px;
}

.uplaod-img-sec p {
    margin-bottom: 5px;
    margin-top: 8px;
    color: #A0A0A1;
    font-size: 12px;
    font-weight: 500;
}

.uplaod-img-sec a {
    font-size: 12px;
    font-weight: 600;
    color: #004DFF;
}

.uplaod-img-sec a>span {
    color: #000;
    font-weight: 500;
}


/*21-1-2021*/

.main-header {
    padding: 20px 0;
}

.main-header p {
    color: #fff;
    font-size: 17px;
}

.main-header a {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
}

.main-header a:hover {
    color: #fcc119;
}

.main-header.scrolled {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.main-header.scrolled a,
.main-header.scrolled p {
    color: #000;
}

@media(max-width: 768px) {
    .user-register-sec {
        height: 100%;
    }
    .profile-details-sec {
        margin-bottom: 20px;
    }
    .restaurent-information-sec-dashboard .btn-orange {
        margin-bottom: 10px;
    }
    .manage-menu-breadcrumps .btn-orange {
        margin-bottom: 5px;
    }
}

@media(min-width: 414px) and (max-width: 896px) and (orientation: landscape) {
    .user-authentication-section {
        height: 100%;
    }
    .user-register-sec {
        height: 100%;
    }
    .profile-details-sec {
        padding: 25px;
    }
    .manage-menu-breadcrumps .btn-orange {
        margin-bottom: 5px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
    .profile-details-sec {
        padding: 25px;
    }
}