/********** Template CSS **********/
:root {
    --primary: #F8B537;
    --light: #FFFFFF;
    --dark: #B6132E;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.required{color: red;}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, 0), rgba(15, 23, 43, 0)), url(../img/chicknlick-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}*/
.hero-header img {
    animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*************************** Custom ***********************/
.hidden { display: none;}
.error{color: red;}
.cartmenu{
    position: relative;
    margin-left: 10px;
    padding: 8px 25px 0px 0px ;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}
.cart-num {
    display: inline-block;
    font-style: normal;
    line-height: 16px;
    /*position: absolute;*/
    border-radius: 50%;
    top: 32%;
    right: -10px;
    font-size: 12px;
    font-weight: normal;
    width: 15px;
    text-align: center;
    height: 15px;
    background-color: #FFEB3B;
    color: black;
}
/*div.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0; 
  padding: 50px;
  font-size: 20px;
}*/
.order-summary {
  padding: 20px;
  position: sticky;
  top: 100px;
}

#cat_stick{
    position: -webkit-sticky;
    position: sticky;
    background: white;
    padding: 10px 0px 10px 0px;
    top:65px;
    font-size: 20px;
    z-index: 1000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /*border: 1px solid var(--primary);*/

    /*box-shadow: 2px 2px 2px 1px rgb(114, 161, 64);*/
    /*box-shadow: var(--primary);*/
}



.cartbtn{font-size: 12px;}

.item-price-label {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}

.item-price-label>span {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    margin-top: -18px;
}

.add-cart-item .number {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 150px;
    margin: auto;
}
.add-cart-item .number span {
    width: 25px;
    height: 25px;
    background-color: #F5F5F5;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
    font-size: 10px;
    line-height: 25px;
}
.add-cart-item .number input[type="text"] {
    height: 25px;
    border: 0;
    text-align: center;
    font-size: 18px;
    color: #121212;
    font-weight: 500;
    width: 40px;
}
/*
.popup-radio-btn-main .customizable-title h5 {
    font-size: 22px;
    font-weight: 500;
    color: #161212;
    margin-bottom: 15px;
}

.popup-radio-btn-main .radio-btn-list>span {
    margin: 0 0 0 auto;
    font-size: 18px;
}

.radio-btn-list {
    margin-bottom: 7px;
}

.radio-btn-list label {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0px;
    font-size: 13px;
}

.radio-btn-list label span {
    font-size: 16px;
    color: #161212;
    position: relative;
    padding-left: 27px;
    cursor: pointer;
}

.popup-total-main {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    margin-bottom: 17px;
}

.popup-total-main .total-price {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
}*/

/* ====== Checkout start ======== ============================== */

.checkout-account {
    padding: 20px;
    /*background: #fff;*/
    /*margin-bottom: 25px;*/
}

.checkout-account .account-title {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkout-account .account-title img {
    margin-right: 21px;
}

.checkout-account .account-title h3 {
    font-size: 22px;
    color: #121212;
    font-weight: 500;
    margin: 0px;
}

.account-tag-line>p {
    color: #121212;
    font-size: 18px;
    font-weight: 500;
}

.account-btn {
    margin-top: 20px;
}

.account-btn .btn {
    margin-right: 18px;
    padding: 0.55rem 2.6rem;
    min-width: 155px;
}

.account-accordion .card-header {
    border: 0px;
    background: #fff;
}

.account-accordion .card {
    border: 0px!important;
    background: #fff;
    margin-bottom: 20px;
}

.account-accordion .accordion .card .card-header {
    margin: 0px;
    padding: 0;
}

.account-accordion .accordion .card .card-header .card-header-title {
    width: 100%;
    padding: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.disable-accordion .accordion .card .card-header .card-header-title {
    pointer-events: none;
}

.disable-accordion .accordion .card .card-header .card-header-title img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.account-accordion .accordion .card .card-header .card-header-title::after {
    content: "\e918";
    font-family: 'eatance'!important;
    position: absolute;
    right: 19px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.account-accordion .card-body {
    padding: 0 20px;
}

.account-accordion .accordion .card .card-header .card-header-title[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

.account-accordion .accordion .card .card-header .card-header-title img {
    width: 30px;
    margin-right: 12px;
}

.account-accordion .accordion .card .card-header .card-header-title h3 {
    color: #121212;
    font-size: 20px;
    font-weight: 500;
    margin: 0px;
}

.disable-accordion .accordion .card .card-header .card-header-title h3,
.disable-accordion .accordion .card .card-header .card-header-title::after {
    color: #919191;
}

.login-details {
    margin-top: 31px;
}

.login-details>h6 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 31px;
}

.checkout-account .float-form {
    max-width: 530px;
}

.cart-section .float-form .form-control {
    height: 45px;
    border-radius: 5px;
    font-size: 16px;
}

.cart-section .float-form .form-control option {
    font-size: 14px;
}

.cart-section .float-form .form-group label {
    font-size: 16px;
    top: 8px;
}

.cart-section .float-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    background: url(../images/select-arrow.svg) no-repeat right 15px center / 15px auto;
}

.cart-section .float-form .form-control:not(:placeholder-shown)~label,
.cart-section .float-form .form-control:focus~label {
    font-size: 16px;
    top: -13px;
}

.float-form .login-details .form-group:last-child {
    margin-bottom: 31px;
}

.plus-minus-front{
    color: #C5262F; font-size: 22px; cursor: pointer;
}
.quantity-front{
    height: 25px;
    border: 0;
    text-align: center;
    font-size: 18px;
    color: #121212;
    font-weight: 500;
    width: 40px;
}

.login-complete {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.login-img-main .user-img {
    width: 90px;
    height: 90px;
    position: relative;
    margin-right: 25px;
}

.login-img-main .user-img::before {
    content: "\e91d";
    font-family: 'eatance';
    width: 34px;
    height: 34px;
    position: absolute;
    right: -10px;
    top: -8px;
    background: #ffb300;
    background: var(--primary);
    border-radius: 50%;
    border: 5px solid #fff;
    text-align: center;
    color: #fff;
    line-height: 25px;
    font-size: 13px;
}

.login-img-main .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}

.login-complete .logged-in strong {
    color: #ffb300;
    color: var(--primary);
    font-size: 22px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 3px;
}

.login-complete .logged-in p {
    margin-bottom: 5px;
    font-size: 18px;
}

.account-accordion .cart-content-table {
    border-top: 1px solid #E4E4E4;
    padding: 20px 0;
}

.accordion-button{
    font-size: 25px; font-weight: bold; color: black;background-color: #ececec;;
}
/* ====== Checkout end ======== ============================ */

.choose-order-mode,
.payment-mode {
    border-top: 1px solid #E4E4E4;
    padding-top: 20px;
    margin-bottom: 20px;
}

.choose-order-title>h6 {
    font-size: 18px;
    color: #121212;
    margin-bottom: 8px;
}

.delivery-form {
    border: 1px solid #E8E8E8;
    padding: 24px;
    margin: 20px 0;
    width: 100%;
    max-width: 745px;
}

.current-location p {
    font-size: 18px;
    color: #161212;
    margin-bottom: 20px;
}

.current-location p img {
    margin-right: 11px;
}

.delivery-form .float-form h4 {
    color: #121212;
    font-size: 18px;
    margin-bottom: 27px;
}

.delivery-form .float-form .login-details .form-group:last-child {
    margin-bottom: 0px;
}

.proceed-btn {
    margin: 15px 0;
}

.proceed-btn .btn {
    padding: 7px 22px;
}

.delivery-form .form-control {
    background-color: #ffffff;
    /*opacity: 1;*/
}

.nav-pills .nav-link {    
    background-color: #eeeeee;
    border-bottom: 1px solid #acacac;
    color: green;
    text-align: left;
    width: 280px;
    font-weight: bold;
}


.profile-page-title {
    /*background: #fff;*/
    border: 1px solid #E2E2E2;
    padding: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    min-height: 64px;
}

.profile-page-title h5 {
    font-size: 20px;
    color: #161212;
    margin: 0px;
}

.profile-page-title .nav-tabs {
    border: 0px;
}

.profile-page-title .nav-tabs .nav-item {
    margin: 0px;
}

.profile-page-title .nav-tabs .nav-link {
    border: 1px solid #E2E2E2;
    font-size: 15px;
    color: #161212;
    font-weight: 500;
    padding: 5px 10px 6px 10px;
    min-width: 132px;
    text-align: center;
}

.profile-page-title .nav-tabs .nav-link.active {
    /*background: #ffb300;*/
    border: 1px solid #E2E2E2;
    padding: 5px 10px 6px 10px;
    background: #ccc;
    /*color: #fff;*/
    border: 1px solid #ffb300;
    /*border: 1px solid var(--primary);*/
}

.profile-page-title .nav-tabs .nav-item:first-child .nav-link {
    border-radius: 5px 0 0 5px;
}

.profile-page-title .nav-tabs .nav-item:last-child .nav-link {
    border-radius: 0 5px 5px 0;
}

.orders-box-row {
    margin-left: -20px;
    margin-right: -20px;
}

.orders-box-row .col-xl-6 {
    padding-left: 20px;
    padding-right: 20px;
}

.orders-box-row .col-xl-6 {
    margin-bottom: 40px;
}

.ordering-box-main {
    background: #fff;
    padding: 15px;
    min-height: 100%;
    box-shadow: 0 10px 10px -7px rgba(0, 0, 0, 0.3);
    border: 1px solid #ccc;
}

.ordering-box-top {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #DBDBDB;
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.ordering-box-img .ordering-img {
    width: 100px;
    height: 100px;
    position: relative;
}

.ordering-box-img .ordering-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    overflow: hidden;
}

.ordering-box-text {
    width: calc(100% - 100px);
    padding-left: 20px;
}

.ordering-box-text h6 {
    font-size: 20px;
    color: #161212;
}

.ordering-box-text p {
    color: #919191;
    font-size: 17px;
    margin-bottom: 6px;
    line-height: normal;
}

.ordering-box-text p.addresse-icon {
    padding-left: 35px;
    position: relative;
}

.ordering-box-text p.addresse-icon::before {
    content: "\e913";
    font-family: 'eatance'!important;
    position: absolute;
    left: 0;
}

.ordering-box-text>strong {
    font-size: 18px;
    color: #161212;
    font-weight: 500;
    margin-right: 10px;
}

.ordering-box-text>strong>span {
    color: #ffb300;
    color: var(--primary);
}

.ordering-box-img strong {
    color: #fff;
    font-weight: 500;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: normal;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
}

.ordering-box-img strong::before {
    content: "\e904";
    font-family: 'eatance'!important;
    color: #ffb300;
    color: var(--primary);
    margin-right: 5px;
}

.ordering-box-img strong.newres {
    color: #ffb300;
    color: var(--primary);
}

.ordering-box-img strong.newres::before {
    content: none;
}

.ordering-box-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ordering-box-bottom ul {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: 0 px;
    padding-left: 0;
    /*width: calc(100% - 125px);*/
}

.ordering-box-bottom ul li {
    font-size: 14px;
    color: #919191;
    font-weight: 500;
    border: 1px solid #E5E5E5;
    margin: 4px 8px 4px 0;
    border-radius: 3px;
    padding: 3px 10px;
    list-style-type: none;
}

.ordering-box-bottom ul li i {
    color: #ffb300;
    color: var(--main-color);
    margin-right: 6px;
}

.ordering-btn .btn {
    font-size: 14px;
    font-weight: 500;
    padding: 4px;
    border-radius: 3px;
}

.ordering-box-bottom>span {
    font-size: 16px;
    color: #919191;
    position: relative;
}

.ordering-box-bottom>span.date-icon {
    padding-left: 32px;
}

.ordering-box-bottom>span.relivered-icon,
.ordering-box-bottom>span.process-icon {
    padding-left: 22px;
}

.ordering-box-bottom>span::before {
    content: "";
    font-family: 'eatance'!important;
    position: absolute;
    left: 0;
}

.ordering-box-bottom>span.date-icon::before {
    content: "\e919";
    color: #ffb300;
    color: var(--main-color);
    font-size: 20px;
    top: -3px;
}

.ordering-box-bottom>span.relivered-icon::before {
    content: "\e91d";
    font-size: 14px;
    color: var(--main-color);
    top: 3px;
}

.ordering-box-bottom>span.process-icon::before {
    content: "\e911";
    font-size: 16px;
    color: #ffb300;
    color: var(--main-color);
    top: 2px;
}

.order-detail-head {
    border: 1px solid #DBDBDB;
    padding: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.content-middel-title h5 {
    color: #161212;
    font-size: 22px;
    margin-bottom: 25px;
}


.radio-btn-list label input {
    /*position: absolute;*/
    /*visibility: hidden;*/
}

.radio-btn-list label input:checked+span::after {
    opacity: 1;
}

.item-price-label {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.item-price-label>span {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    margin-top: -18px;
}

.popup-radio-btn-main .radio-btn-list {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.popup-radio-btn-main .radio-btn-list>span {
    margin: 0 0 0 auto;
    font-size: 18px;
}

.popup-total-main {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    border-radius: 5px;
    margin-bottom: 17px;
}

.popup-total-main .popup-total h2 {
    font-size: 20px;
    font-weight: 700;
    color: #161212;
    margin: 0px;
}

.popup-total-main .total-price {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
}

.popup-total-main .total-price strong {
    color: #ffb300;
    color: var(--primary);
    font-size: 25px;
    font-weight: 700;
    margin-right: 20px;
}

.total-price .btn {
    font-weight: 700;
}

.availability-popup {
    text-align: center;
}

.availability-popup h2 {
    color: #161212;
    font-size: 50px;

}

.availability-images {
    margin: 0rem auto 1rem;
}

.availability-popup p {
    font-size: 20px;
    color: #161212;
    max-width: 470px;
    margin: 0 auto 20px;
}

.availability-popup .btn {
    font-weight: 700;
    margin: 0 7px;
}

.modal-main.edit-profile .modal-dialog {
    max-width: 703px;
}

.edit-profile .float-form .form-group label,
#add-address .float-form .form-group label {
    font-size: 17px;
    top: 12px;
}

.edit-profile .float-form .form-control:not(:placeholder-shown)~label,
.edit-profile .float-form .form-control:focus~label,
#add-address .float-form .form-control:not(:placeholder-shown)~label,
#add-address .float-form .form-control:focus~label {
    font-size: 18px;
    top: -13px;
}

.edit-profile-img .edit-img {
    width: 122px;
    height: 122px;
    margin: 0 auto 60px;
    position: relative;
}

.edit-profile-img .edit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}

.edit-profile-img .edit-img>label {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #4c4846;
    width: 25px;
    height: 25px;
    cursor: pointer;
    color: #fff;
    border-radius: 2px;
}

.edit-profile-img .edit-img>label>input[type="file"] {
    visibility: hidden;
    width: 0;
    height: 0;
}

.edit-profile .save-btn {
    text-align: center;
    margin-bottom: 15px;
}

.modal-main.add-address .modal-dialog {
    max-width: 773px;
}

.modal-main.add-address .modal-body {
    padding: 1.3rem 40px;
}

.add-address .float-form input.form-control {
    height: 50px;
    font-size: 17px;
    color: #BBBBBB;
}

.add-address .float-form .form-group label {
    font-size: 17px;
    top: 10px;
}

.add-address .float-form .form-control:not(:placeholder-shown)~label,
.add-address .float-form .form-control:focus~label {
    font-size: 16px;
    top: -13px;
    color: #161212;
}

.addresse-map {
    margin-bottom: 40px;
    text-align: center;
}

.address-add-btn {
    text-align: center;
    margin-bottom: 15px;
}

.address-add-btn .btn {
    margin: 0 5px;
    padding: 4px 28px;
}

.action-btn .btn {
    padding: 4px 28px;
}

.modal-main.order-detail-popup .modal-dialog {
    max-width: 942px;
}

.modal-main.order-detail-popup .modal-body {
    padding: 1rem 40px;
}

.detail-content {
    padding-left: 20px;
}

.detail-content h6 {
    color: #161212;
    font-size: 22px;
    position: relative;
    padding-right: 70px;
}

.detail-content span {
    color: #919191;
    font-size: 18px;
    margin-bottom: 6px;
    line-height: normal;
    display: inline-block;
    width: 100%;
    font-weight: 500;
}

.detail-content span.pkg {
    color: #161212;
    font-weight: 500;
}

.detail-content h6>strong {
    color: #161212;
    font-weight: 500;
    display: inline-block;
    font-size: 20px;
    line-height: normal;
    position: absolute;
    right: 0;
}

.detail-content h6>strong::before {
    content: "\e904";
    font-family: 'eatance'!important;
    color: #ffb300;
    color: var(--primary);
    margin-right: 5px;
}

.detail-content h6>strong.newres {
    color: #ffb300;
    color: var(--primary);
}

.detail-content h6>strong.newres::before {
    content: none;
}

.detail-content p {
    color: #919191;
    font-size: 16px;
    margin-bottom: 0;
    line-height: normal;
    padding-left: 25px;
    position: relative;
    display: inline-block;
}

.detail-content p::before {
    content: "\e913";
    font-family: 'eatance'!important;
    position: absolute;
    left: 0;
    color: #ffb300;
    color: var(--primary);
}

.detail-content-middel .detail-list-content .detail-list-text h4 {
    font-size: 18px;
}

.right-price strong {
    color: #ffb300;
    color: var(--primary);
    font-size: 20px;
}

.order-detail-head .order-detail-img {
    width: 93px;
    height: 93px;
}

.order-detail-head .order-detail-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    overflow: hidden;
}

.order-detail-popup .order-summary-content {
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.detail-content-middel .booking-option-main {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.detail-content-middel .detail-list-box .detail-list .detail-list-img .list-img {
    width: 82px;
    height: 82px;
}

.detail-content-middel .booking-option-cont {
    width: auto;
}


.detail-list-box .detail-list .detail-list-content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.detail-list-content .detail-list-text h4 {
    color: #121212;
    font-size: 18px;
    margin-bottom: 5px;
}

.detail-list-content .detail-list-text {
    padding-right: 15px;
}

.detail-list-content .detail-list-text p {
    color: #919191;
    font-size: 16px;
    margin-bottom: 1px;
}

.detail-list-content .detail-list-text>strong {
    color: #ffb300;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.detail-list-content .add-btn {
    text-align: center;
}

.detail-list-content .add-btn>span.cust {
    color: var(--primary);
    font-size: 12px;
    text-align: left;
    display: block;
}


.order-summary {
    background: #fff;
    padding: 20px;
    position: sticky;
    top: 100px;
}

.order-summary-title h3 {
    font-size: 22px;
    color: #161212;
    font-weight: 700;
    border-bottom: 1px solid #E2E2E2;
    padding-left: 0;
    padding-bottom: 15px;
    position: relative;
}

.order-summary-title h3 i {
    vertical-align: top;
    margin-right: 11px;
    font-size: 21px;
    line-height: 26px;
    display: inline-block;
}

.order-summary-content table {
    width: 100%;
}

.order-summary-content table>tbody>tr>td {
    font-size: 18px;
    padding-bottom: 15px;
}

.order-summary-content table>tbody>tr:last-child>td {
    padding-bottom: 25px;
}

.order-summary-content table>tbody>tr>td:last-child,
.order-summary-content table>tfoot>tr>td:last-child {
    text-align: right;
}

.order-summary-content table>tfoot>tr>td {
    font-size: 20px;
    font-weight: 700;
}

.order-summary-content table>tfoot>tr:first-child>td {
    border-top: 1px solid #E2E2E2;
    padding-top: 12px;
}

.order-summary-content table>tfoot>tr>td:last-child strong {
    color: #ffb300;
    color: var(--primary);
}

.order-summary-content .continue-btn {
    margin-top: 30px;
}

.cart-content-table table>tbody>tr>td>ul {
    margin-bottom: 0px;
    padding-left: 15px;
}

.cart-content-table table>tbody>tr>td>ul li {
    font-size: 16px;
    font-weight: normal;
}


.my-address-main {
    background: #fff;
    padding: 15px;
    min-height: 100%;
    border: 1px solid #ccc;
    box-shadow: 0 10px 10px -7px rgba(0, 0, 0, 0.3);
}

.my-address-main.primary-address {
    background: #ffdbc6;
    position: relative;
    overflow: hidden;
}

.my-address-main.primary-address:after {
    content: "";
    font-size: 18px;
    position: absolute;
    top: 0px;
    left: 5px;
    color: #fff;
}

.my-address-main.primary-address:before {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background-color: #ffb300;
    background-color: var(--main-color);
    transform: rotate(44deg);
}

.my-address-box {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #DBDBDB;
    padding-bottom: 10px;
}

.address-images-main .address-icon {
    width: 52px;
}

.my-address-list {
    padding-left: 23px;
}

.my-address-list>h6 {
    font-size: 22px;
    margin-top: -2px;
    margin-bottom: 4px;
}

.my-address-list>p {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 10px;
}

.address-btn {
    text-align: right;
    margin-top: 10px;
}

.address-btn .btn {
    font-size: 14px;
    font-weight: 500;
    padding: 4px;
    margin-left: 4px;
    border-radius: 3px;
    margin-bottom: 5px;
}

#main-address .modal-body p,
.delete-address_ .modal-body p {
    text-align: center;
    font-size: 18px;
    color: #919191;
    margin-bottom: 25px;
}

#main-address.modal-main .modal-dialog {
    max-width: 500px;
}

#main-address.modal-main .modal-body {
    padding-top: 0px;
}

/* ====== Track order start ======== ================================= */

.track-order-main {
    /*background: #fff;*/
    /*padding: 30px;*/
    /*margin-top: 39px;*/
}

.track-order-content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    /*margin-top: 63px;*/
}

.order-status-main {
    /*width: 42%;*/
    padding-left: 8px;
}

.track-order-text .track-order-head>h2 {
    font-size: 30px;
    color: #ffb300;
    color: var(--primary);
    font-weight: 500;
    margin: 1px 0 13px;
}

.track-order-text .track-order-head>p {
    font-size: 20px;
    font-weight: 500;
}

.order-id-details {
    /*margin-top: 43px;*/
}

.details-id-content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.details-id-text {
    /*width: calc(100% - 150px);*/
}

.details-id-img {
    width: 85px;
}

.details-id-img img {
    width: 100%;
}

.track-order-text {
    /*width: 48%;*/
    /*padding-right: 10px;*/
}

.order-id-details .order-id>strong {
    font-size: 20px;
    color: #161212;
    font-weight: 500;
    background: #F3F3F3;
    border-radius: 5px 5px 0 0;
    width: 100%;
    display: inline-block;
    padding: 12px 27px;
    margin-bottom: -2px;
}

.order-id-details .details-id {
    border: 1px solid #EBEBEB;
    padding: 30px 43px;
}

.details-id-text p {
    color: #161212;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 18px;
}

.details-id-text .detail-list {
    position: relative;
    padding-left: 34px;
    margin-bottom: 23px;
}

.details-id-text .detail-list i {
    position: absolute;
    left: 0;
    top: 6px;
    color: #ffb300;
    color: var(--primary);
    font-size: 22px;
}

.details-id-text .detail-list>label {
    font-size: 18px;
    color: #161212;
    font-weight: 500;
    margin: 0;
}

.details-id-text .detail-list>p {
    color: #919191;
    font-size: 18px;
    line-height: normal;
}

.details-id .call-btn {
    text-align: right;
    margin-top: 4px;
}

.call-btn .btn {
    font-weight: 700;
    padding: 0.7rem 1.6rem;
}

.call-btn .btn i {
    margin-right: 15px;
}
.track-order-content .call-btn .btn {
    text-align: center;
}
.track-order-content .call-btn .btn br {
    display: none;
}

.order-status-box {
    border: 1px solid #DCDCDC;
    padding: 20px 15px;
}

.order-status-title>h4 {
    font-size: 25px;
    background: #F3F3F3;
    border-radius: 10px 10px 0 0;
    padding: 23px 42px;
    margin-bottom: -2px;
    display: inline-block;
    width: 100%;
}

.status-step-box {
    padding-left: 50px;
    position: relative;
}

.status-step-box .status-step {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-bottom: 40px;
    position: relative;
}

.status-step-box .status-step:last-child {
    padding-bottom: 0px;
}

.status-step-box .status-step::before {
    content: "";
    width: 28px;
    height: 28px;
    background: #ffb300;
    background: var(--primary);
    border: 5px solid #ffe8b2;
    border-radius: 50%;
    position: absolute;
    left: -50px;
}

.status-step-box .status-step.active::before {
    content: "➤";
    font-family: 'eatance'!important;
    border: 4px solid #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    width: 26px;
    height: 26px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    line-height: 20px;
}

.status-step-box .status-step::after {
    content: "";
    top: 55px;
    bottom: -10px;
    width: 1px;
    border-left: 1px dashed #C5C5C5;
    position: absolute;
    left: -35px;
}

.status-step-box .status-step.active::after {
    border: 2px solid #EBEBEB;
    left: -37px;
    border-radius: 2px;
}

.status-step-box .status-step:last-child::after {
    content: none;
}

.status-step-img {
    margin-right: 23px;
}

.status-step-name label {
    font-size: 18px;
    color: #161212;
    font-weight: 500;
    margin: 0px;
}

.status-step-name p {
    color: #919191;
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
    line-height: normal;
}
/* ====== Track order end ======== =============================== */

/*.pac-container {
    background-color: #FFF;
    z-index: 20;
    position: fixed;
    display: inline-block;
    float: left;
}*/
.modal{
    top: 50px;
    z-index: 20;   
}
.modal-backdrop{
    z-index: 10;        
}







@media (max-width: 480px) {
    #cat_stick{        
        top:77px;
        z-index: 1;
    }
    .mobile-margin{
        margin-top: 80px;
    }

    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        /*background: transparent !important;*/
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }





    .profile-page-title, .orders-box-row .col-xl-6 {
        margin-bottom: 20px;
    }
    .profile-page-title, .ordering-box-main {
        padding: 10px;
    }

    .ordering-box-top {
        flex-wrap: wrap;
    }
    .ordering-box-top .ordering-box-text {
        padding-left: 0;
        width: 100%;
    }
    .ordering-box-img .ordering-img {
        width: 100%;
        height: 100px;
        margin-bottom: 10px;
    }
    .ordering-box-bottom {
        flex-wrap: wrap;
    }
    .ordering-box-bottom > i .fas{
        font-size: 14px;
    }
    .ordering-btn .btn {
        padding: 3px 4px;
    }

    .ordering-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }


    .track-order-main {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .track-order-content {
        margin-top: 25px;
    }
    .track-order-text {
        width: 100%;
        padding: 0px;
      }
      .order-id-details {
    margin-top: 25px;
  }
   .order-id-details .details-id {
    padding: 15px;
  }
  .details-id-content {
    flex-wrap: wrap;
  }
  .details-id-text {
    width: 100%;
    order: 2;
  }
  .details-id-img {
    order: 1;
    margin-bottom: 20px;
    text-align: center;
    margin: 0 auto;
  }

  .order-status-main {
    width: 100%;
    padding: 0px;
    margin-top: 20px;
  }
  .order-status-title > h4 {
    padding: 10px 15px;
    font-size: 20px;
  }
  .order-status-box {
    padding: 15px;
  }
   .status-step-name label {
    font-size: 14px;
  }
   .details-id-content {
    flex-wrap: wrap;
  }
  .details-id-text {
    width: 100%;
    order: 2;
  }

  .ordering-box-main {
    padding: 10px;
  }
  .ordering-box-top {
      flex-wrap: wrap;
    }
  .ordering-box-bottom {
    flex-wrap: wrap;
  }

  /*.checout-map{
    height:50px; width: 100px;
    }*/

  /*.ordering-box-bottom ul {
    width: 100%;
    justify-content: center;
  }
  .ordering-box-bottom ul li {
      font-size: 12px;
      padding: 3px 4px;
    }*/
}

@media (min-width: 1025px) {
    .h-custom {
        height: 100vh !important;
    }
}

.card-registration .select-input.form-control[readonly]:not([disabled]) {
    font-size: 1rem;
    line-height: 2.15;
    padding-left: .75em;
    padding-right: .75em;
    border: 1px solid rgba(0,0,0,0.225);
}

.card-registration .select-arrow {
    top: 13px;
}

.bg-grey {
    background-color: #eae8e8;
}

@media (min-width: 992px) {
    .card-registration-2 .bg-grey {
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
    }
}

@media (max-width: 991px) {
    .card-registration-2 .bg-grey {
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
}



/************************ Google Maps **********************/
/*#map {height: 100%;}
#description {
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
}

#infowindow-content .title {
  font-weight: bold;
}

#infowindow-content {
  display: none;
}

#map #infowindow-content {
  display: inline;
}

.pac-card {
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
  font-family: Roboto;
  padding: 0;
}

#pac-container {
  padding-bottom: 12px;
  margin-right: 12px;
}

.pac-controls {
  display: inline-block;
  padding: 5px 11px;
}

.pac-controls label {
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300;
}*/

/*#pac-input {
  background-color: #fff;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
  margin-left: 12px;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
  width: 400px;
}*/

/*#pac-input:focus {
  border-color: #4d90fe;
}

#title {
  color: #fff;
  background-color: #4d90fe;
  font-size: 25px;
  font-weight: 500;
  padding: 6px 12px;
}

.checout-map{
    height:300px; width: 612px;
}*/


/* [1] The container */
/*https://w3bits.com/css-image-hover-zoom/*/
.img-hover-zoom {
  /*height: 300px;  [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.5);
}


/*https://www.w3schools.com/howto/howto_css_zoom_hover.asp*/
.zoom {
  background-color: green;
  transition: transform .2s;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(2.5); /* IE 9 */
  -webkit-transform: scale(2.5); /* Safari 3-8 */
  -moz-transform: scale(2.5); /* Firefox */
  -o-transform: scale(2.5); /* Opera */
  transform: scale(2.5);
}

@media only screen and (max-width: 430px) {
  .zoom:hover {
    margin-left: 60px;
  }
}




.notification-ui a:after {
    display: none;
}

.notification-ui_icon {
    position: relative;
}

.notification-ui_icon .unread-notification {
    display: inline-block;
    height: 7px;
    width: 7px;
    border-radius: 7px;
    background-color: #66BB6A;
    position: absolute;
    top: 7px;
    left: 12px;
}

@media (min-width: 900px) {
    .notification-ui_icon .unread-notification {
        left: 20px;
    }
}

.notification-ui_dd {
    padding: 0;
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 20px -3px rgba(0, 0, 0, 0.16);
    border: 0;
    max-width: 400px;
}

@media (min-width: 900px) {
    .notification-ui_dd {
        min-width: 400px;
        position: absolute;
        left: -192px;
        top: 70px;
    }
}

.notification-ui_dd:after {
    content: "";
    position: absolute;
    top: -30px;
    left: calc(50% - 7px);
    border-top: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    border-left: 15px solid transparent;
}

.notification-ui_dd .notification-ui_dd-header {
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.notification-ui_dd .notification-ui_dd-header h5 {
    margin-bottom: 0;
}

.notification-ui_dd .notification-ui_dd-content {
    max-height: 500px;
    overflow: auto;
}

.notification-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    margin: 0 25px;
    border-bottom: 1px solid #ddd;
}

.notification-list--unread {
    position: relative;
}

.notification-list--unread:before {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    height: calc(100% + 1px);
    border-left: 2px solid #29B6F6;
}

.notification-list .notification-list_img img {
    height: 48px;
    width: 48px;
    border-radius: 50px;
    margin-right: 20px;
}

.notification-list .notification-list_detail p {
    margin-bottom: 5px;
    line-height: 1.2;
}

.notification-list .notification-list_feature-img img {
    height: 48px;
    width: 48px;
    border-radius: 5px;
    margin-left: 20px;
}

.bg-danger{
    display: inline-block;
    font-style: normal;
    /*line-height: 16px;*/
    /* position: absolute; */
    border-radius: 50%;
    /*top: 32%;*/
    /*right: -10px;*/
    /*font-size: 12px;*/
    /*font-weight: normal;*/
    width: 15px;
    text-align: center;
    height: 15px;
    /*background-color: #FFEB3B;*/
    color: white;
    padding: 3px;
}




.noti-list .noti-list-box {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: #F9F9F9;
    padding: 11px 13px 11px 20px;
}

.noti-list .noti-list-box:nth-child(2n+0) {
    background: #fff;
}

.noti-list-img .noti-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
}

.noti-list-img .noti-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.noti-list-text {
    padding-left: 10px;
    position: relative;
    width: 100%;
    padding-top: 1px;
    overflow: hidden;
}

.noti-list-text>h6 {
    font-size: 16px;
    font-weight: 500;
    margin: 0px;
    padding-right: 60px;
}

.noti-list-text>p {
    color: #919191;
    font-size: 14px;
    margin: 0px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.noti-list-text>span.min {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    color: #161212;
}

.noti-popup .viewall-btn {
    padding: 15px;
}

.noti-popup .viewall-btn .btn {
    width: 100%;
    border-radius: 0px;
    font-size: 14px;
    padding: 0.5rem 1rem;
}