/* ** font  */





body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: 'Almarose';
    font-weight: 400;
    color: #000;
    /*background-color: #000;*/
    
    /*background: linear-gradient(to bottom, #00416a, #e4e5e6);*/
    
}

::selection {
    background-color: #e80100;
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #141e30;
        font-weight: 900;
}


h3,
.h3
 {
    color: var(--secondary-color) !important;
        font-weight: 900;
}


a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: #fff;
    text-decoration: none;
}

a:hover {
    outline: none;
    color: #1d1d1d;
    text-decoration: none;
}

.wow {
    visibility: hidden;
}

.clear {
    clear: both;
}

img:not(table img) {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

p {
    font-size: 16px;
    color: #202020;
}

figure {
    margin: 0 auto;
    display: block;
    text-align: center;
}

body.scroll-off {
    overflow: hidden;
}

.section-padding {
    padding-top: 0px;
    /*padding-bottom: 5px;*/
     /*background-color: #f8f8f8; */
     /*background-color: #000;*/
       /*background: linear-gradient(to bottom, #00416a, #e4e5e6);*/

    /*background: linear-gradient(to right, #141e30, #243b55);*/
}

.battle_button
{
    float: right;
}
.section-heading {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.section {
    margin-top: 50px;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

::-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

:-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}


/*==================== User Dropdown Start ===================*/

.user_dropdown {
    display: inline-block;
}

.user_dropdown>a {
    color: #494949;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 25px;
}

.user_dropdown img {
    height: 35px;
    width: auto;
    border-radius: 50%;
}

.user_dropdown .dropdown-menu.show {
    display: block;
    left: auto;
    right: 0;
    width: 160px;
    overflow-x: hidden;
    padding-bottom: 0;
    box-shadow: 1px 1px 8px 0px rgba(60, 64, 67, 0.3);
    border: none;
    border-radius: 2px;
    margin-top: 10px;
}

.user_name>div {
    white-space: nowrap;
    max-width: calc(160px - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    color: #494949;
    text-transform: capitalize;
    font-size: 15px;
}

.user_name {
    padding: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.user_name small {
    color: #a2a2a2;
    text-transform: lowercase;
}

.user_name .user_email {
    margin-top: -18px;
}

.user_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user_dropdown ul li {
    display: block;
}

.user_dropdown ul li a {
    color: #494949;
    text-transform: capitalize;
    font-size: 13px;
    padding: 7px 5px 7px 35px;
    display: block;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    font-weight: 500;
}

.user_dropdown ul li a i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.wallet-image {
    position: relative;
    width: 80px;
    height: 70px;
   
}


.user_dropdown ul li a:hover {
    background-color: #e9ecef;
}


/*==================== User Dropdown End ===================*/


/* *** loader css start ****  */

.loader-wrapper {
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}



.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--background-color-body);
    /*background-color: #141e30;*/
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* *** loader css end  ****  */


/*==================== Header Start ===================*/

#header {
     height: 85px; 
    display: flex;
    align-items: center;
    z-index: 10;
    position: absolute;
     box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    /*background: #00416a !important;*/
    /*background-color: #000 !important; */
        /*background: linear-gradient(to bottom, #00416a, #e4e5e6);*/
    left: 0;
    right: 0;
    width: 100%;
    padding: 5px 0;
}

#header.innerHeader {
    position: relative;
    /*background-color: #fff;*/
}


#header.is-sticky {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    /*background: #141e30;*/
    background: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 0;
}

#header.is-sticky .navbar-brand img {
    margin-bottom: 0;
    /*height: 50px;*/
}

#header.is-sticky .navbar-brand {
    padding: 0;
}

#header.is-sticky.awake {
    transform: translateY(0%);
    -webkit-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
    height: 65px;
}

#header>.container-fluid>.navbar {
    padding-left: 0;
    padding-right: 0;
}

#header .navbar-brand img {
    height: 70px;
    width: 100%;
    /* max-width: 190px; */
    /*margin-bottom: -35px;*/
}

#header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 45px;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 25px;
    font-weight: 500;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .navbar-expand-lg .navbar-nav .nav-link {
    color: #202020;
    padding: 0;
    font-size: 16px;
    position: relative;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: var(--secondary-color);
    background-color:#141e30;
    
    
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover:before,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:before {
    color: #e80100;
    transform: scaleX(1);
}

#header .navbar-expand-lg .navbar-nav .nav-link:before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #e80100;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
}

#header .dropdown-toggle::after {
    border: none;
    /* height: 8px;
  width: 11px; */
    /* background-image: url(../img/drop_arrow.png); */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: 3px;
}

#header .extra_nav {
    margin-left: 35px;
}

/* #header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 10px;
} */

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .extra_nav .nav-item:list-child {
    margin-right: 0px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.extra_btn {
    height: 39px;
    width: 94px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
}

#header .extra_btn:hover {
    background-color: rgba(255, 255, 255, 0.24);
}

#header .sign_up_btn .extra_btn {
    background-color: #e80100;
    color: #fff !important;
    border: 1px solid #e80100;
}

#header .sign_up_btn .extra_btn:hover {
    background-color: #fff;
    color: #e80100 !important;
}

#header .login_btn .extra_btn {
    background-color: #fff;
    color: #e80100 !important;
    border: 1px solid #e80100;
}

#header .login_btn .extra_btn:hover {
    background-color: #e80100;
    color: #fff !important;
}

#header .extra_btn:before {
    display: none;
}

#header .flag_ico {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding-left: 32px;
    padding-right: 5px;
    width: auto;
    font-weight: 400;
    color: #000;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop:hover {
    background-color: #ebebeb;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop img {
    width: 21px;
    height: auto;
    vertical-align: text-bottom;
}

#header .for_mobile {
    display: none;
}

#header .for_desktop {
    display: block;
}

#header .dropdown-item {
    font-weight: 300;
}


/*#header .dropdown-item:hover {
    background-color: #30383d;
    color: rgba(255,255,255,0.60);
}*/

.langugae_filter {
    position: relative;
}

.lang_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    min-width: 80px;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 0;
    box-shadow: 1px 1px 8px 0px rgba(60, 64, 67, 0.3);
    font-size: 14px;
}

.lang_country {
    position: relative;
    cursor: pointer;
}

.lang_country {
    position: relative;
    padding: 5px 0px 5px 34px;
    color: #494949;
    border-bottom: 1px solid #e9e9e9;
}

.lang_country .flag_ico img {
    max-width: 19px;
}

.lang_country:last-child {
    border-bottom: 0;
}

.lang_country:hover {
    color: #e80100;
    background-color: #ececec;
}

.langugae_filter:hover .lang_dropdown {
    display: block;
}

.navbar-brand {
    font-size: 0;
}

.back_top {
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ec2027;
    border-radius: 4px;
    color: #fff;
    font-size: 30px;
    border: 2px solid transparent;
    z-index: 10;
    transform: translateY(200%);
}

.back_top.active {
    transform: translateY(0%);
}

.back_top:hover {
    border-color: #ec2027;
    color: #ec2027;
    background-color: #fff;
}


/*==================== Header End ===================*/


/* ** default btn  */

.btn-style-1 {
    display: inline-block;
    border: 0;
    box-shadow: none;
    outline: 0;
    font-size: 17px;
    font-weight: 700;
    
    color: #000;
    padding: 10px 25px;
    background: #fff;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.btn-style-1:hover {
    color: #e80100;
}


.btn-style-2 {
    display: inline-block;
    border: 0;
    box-shadow: none;
    text-transform: uppercase;
    outline: 0;
    font-size: 17px;
    font-weight: 600;
    
    padding: 10px 25px;
    /*background: #db0302;*/
    /*color: #fff;*/
    
    color: var(--secondary-color);
    background: var(--background-color-body);
    
    border-radius: 10px;
    transition: all .3s ease-in-out;
}



.btn-style-2:hover{
    background: var(--back-ground-cards) !important;
    color: var(--primary-color);
    border:var(--border-2px-dark);
}
.text-warning
{
    color: #141e30 !important;
}
.actions button:hover {
    color: #141e30 !important;
    background: var(--background-box-1) !important;

}

.btn-green {
    color: #fff;
    background-color: #198754 !important;
    border-color: #198754;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}


.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}


.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}



/* ** checkbox style  */

.checkbox-style-1 input[type="checkbox"],
.checkbox-style-1 input[type="radio"] {
    appearance: none;
    position: relative;
    height: 21px;
    width: 21px;
    min-width: 21px;
    border: 2px solid #fff;
    border-radius: 3px;
    z-index: 1;
    cursor: pointer;
    margin-top: 5px;
}

.checkbox-style-1 input[type="checkbox"]::before,
.checkbox-style-1 input[type="radio"]::before {
    content: '\f00c';
    position: absolute;
    font-family: "Font-awesome-5-pro";
    color: #fff;
    left: 3px;
    top: -4px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
    z-index: -1;
    opacity: 0;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.checkbox-style-1 input[type="checkbox"]::after,
.checkbox-style-1 input[type="radio"]::after {
    content: '';
    position: absolute;
    background: #e80100;
    width: 8px;
    height: 15px;
    z-index: -2;
    transform: rotate(45deg);
    top: -2px;
    left: 13px;
    opacity: 0;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.checkbox-style-1 label {
    margin-bottom: 0;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    line-height: 25px;
}

.checkbox-style-1 {
    display: flex;
}

.checkbox-style-1 input[type="checkbox"]:checked::before,
.checkbox-style-1 input[type="radio"]:checked::before,
.checkbox-style-1 input[type="checkbox"]:checked::after,
.checkbox-style-1 input[type="radio"]:checked::after {
    opacity: 1;
}



/* ======================= checkbox-style-2 ======================= */






.checkbox-style-2 input[type="checkbox"],
.checkbox-style-2 input[type="radio"] {
    appearance: none;
    position: relative;
    height: 22px;
    width: 22px;
    min-width: 22px;
    overflow: hidden;
    border: 1px solid rgb(51 51 51 / 20%);

    z-index: 1;
    cursor: pointer;
    margin-top: 5px;
}

.checkbox-style-2 input[type="checkbox"]::before,
.checkbox-style-2 input[type="radio"]::before {
    content: '\f00c';
    position: absolute;
    font-family: "Font-awesome-5-pro";
    color: #fff;
    left: 4px;
    top: 50%;
    font-size: 13px;
    font-weight: 600;
    transform: translateY(-50%);
    line-height: 1;
    z-index: -1;
    opacity: 0;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.checkbox-style-2 input[type="checkbox"]::after,
.checkbox-style-2 input[type="radio"]::after {
    content: '';
    position: absolute;
    background: #e80100;
    width: 21px;
    height: 21px;
    z-index: -2;
    /* transform: rotate(45deg); */
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.checkbox-style-2 label {
    margin-bottom: 0;
    margin-left: 20px;
    font-size: 15px;
    color: #797979;
    font-weight: 500;
    line-height: 23px !important;
    cursor: pointer;
    text-transform: inherit;
    text-align: unset;
    line-height: 17px;
}

.checkbox-style-2 {
    display: flex;
}

.checkbox-style-2 input[type="checkbox"]:checked::before,
.checkbox-style-2 input[type="radio"]:checked::before,
.checkbox-style-2 input[type="checkbox"]:checked::after,
.checkbox-style-2 input[type="radio"]:checked::after {
    opacity: 1;
}
















/* *** login section   */


.login_flex_wrap {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    height: 100%;
}

.login_flex_wrap .login_img_col {
    flex: 0 0 55%;
    /*max-width: 55%;*/
    width: 100%;
    /*background: #000;*/
    padding: 60px 20px 60px 60px;
    /* height: 100%; */
    /*min-height: 100vh;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    justify-content: center;
        text-align: center;
}


.login_flex_wrap .login_form_col {
    flex: 0 0 45%;
        max-width: 80%;
    margin: 0 10% 0 10%;
    align-content: center;
    border-radius: 20px;
    width: 100%;
    /*background: linear-gradient(rgb(234, 205, 163), rgb(214, 174, 123));*/
    /*background: linear-gradient(270deg, rgba(231, 1, 0, 1) 0%, rgba(231, 0, 65, 1) 100%);*/
    background: var(--background-box-1);
    /* height: 100%; */
    padding: 90px 60px 60px 20px;
    /*min-height: 100vh;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    justify-content: center;

}

.login_left_imgBlock {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: auto;
    margin-bottom: auto;
    padding-right: 40px;
}

.login_left_imgBlock .imgLogin_col {
    padding: 0 10px;
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    width: 100%;
}

.login_left_imgBlock .imgLogin_col img {
    height: 100%;
    width: 100%;
}

.login_heading {
    font-weight: 700;
    font-size: 30px;
    color: #000;
}


.login_sub_heading {
    font-size: 17px;
    font-weight: 700;
    color: #000;
}

.loginInner_form .form-group {
    margin-bottom: 25px;
}

.loginInner_form .form-control {
    height: 50px;
    border-radius: 10px;
    padding: 5px 25px;
    color: #000;
    font-size: 16px;
    border: 0;
    outline: 0;
    box-shadow: none;
}

.loginInner_form .form-control::placeholder {
    font-size: 15px;
    color: #8189b1;
}

.forgotLink {
    font-size: 15px;
    color: #fff;
    margin-top: -15px;
    display: block;
}

.forgotLink:hover {
    text-decoration: underline;
    color: #fff;
}


.login_form {
    max-width: 500px;
    margin: auto;
    width: 100%
}


.have_account {
    font-size: 15px;
    color: #fff;
}

.have_account a {
    font-weight: 600;
    color: #fff;
}

.have_account a:hover {
    text-decoration: underline;
}

.login_logo {
    margin-bottom: 40px;
}


.signupGrid_tem_img .imgLogin_col:nth-child(1) {
    grid-area: sigupOne;
    height: 100%;
}

.signupGrid_tem_img .imgLogin_col:nth-child(1) img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.signupGrid_tem_img .imgLogin_col:nth-child(2) {
    grid-area: sigupTwo;
    height: 60%;
}

.signupGrid_tem_img .imgLogin_col:nth-child(3) {
    grid-area: sigupThree;
    height: 40%;
}

.signupGrid_tem_img {
    display: grid;
    gap: 30px;
    margin-top: auto;
    margin-bottom: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
        'sigupOne  sigupTwo'
        'sigupOne  sigupThree';
}




/* *** header home page start  */

button.searchBtn_header {
    position: absolute;
    border: 0;
    background: transparent;
    right: 0;
    top: 0;
    height: 100%;
    padding: 10px 15px 10px 10px;
    border-radius: 0 10px 10px 0;
    box-shadow: none;
    outline: 0;
}

.searchBtn_header i {
    color: #525252;
    font-weight: 400;
}

.headerSearch {
    position: relative;
}

.headerSearch input {
    border: 0;
    background: #fff;
    border-radius: 10px;
    padding: 10px 25px;
    padding-right: 45px;
    outline: 0;
    box-shadow: none;
}

#header.innerHeader .headerSearch input {
    box-shadow: 0 0 18px -4px rgba(0, 0, 0, .1);
}

.headerSearch input:focus {
    outline: 0;
    box-shadow: none;
    border-color: rgba(32, 32, 32, .86);
}

.headerSearch input.form-control::placeholder {
    color: rgba(32, 32, 32, .86);
}

header .navbar-nav {
    align-items: center;
    
}

.headerCart_btn {
    /*display: inline-block;*/
    /*background: #f0ffe3;*/
    /*background:#bcc3f7;*/
    /*border-radius: 10px;*/
    /*padding:7px 9px;*/
    /*margin-left: 10px;*/
    /*transition: all .2s linear;*/
    /*position: relative;*/
    
        display: inline-block;
    /* background: #f0ffe3; */
    /* background: #bcc3f7; */
    border-radius: 6px;
    padding: 7px 9px;
    margin-left: 10px;
    transition: all .2s linear;
    position: relative;
    color: #fff;
    /*border: 2px solid #80e4ff;*/
        border: 2px solid #eacda3;
    font-weight:900;
}

.cart_counter {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    background: #e80100;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    top: -8px;
    right: -8px;
}

.headerCart_btn img {
    max-height: 25px;
}

.headerCart_btn:hover {
    background: #fff;
}

/* **** hero sectin   */

.hero_section {
    background-color: #ededed;
    background-image: url(../../img/frontend/hero-banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    min-height: 950px;
    padding: 100px 0;
    display: flex;
    align-items: center;

}


.hero_heading {
    font-size: 70px;
    font-weight: 500;
    color: #202020;
    max-width: 720px;
}

.hero_heading span {
    color: #e80100;
    font-weight: 700;
}

.hero_locationGroup {
    max-width: 500px;
    position: relative;
    margin-top: 40px;
}

.hero_locationGroup input.form-control {
    background-color: #fff;
    border-radius: 10px;
    color: #202020;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    min-height: 55px;
    padding-right: 45px;
    box-shadow: 0 0 21px -13px rgba(0, 0, 0, .07);
    border: 0;
}

.hero_locationGroup input.form-control::placeholder {
    color: rgba(32, 32, 32, .50);
}

.loaction_hero_icon {
    font-size: 23px;
    color: rgba(32, 32, 32, .5);
    position: absolute;
    top: 11px;
    right: 20px;
    display: inline-block;
}

.hero_section .btn-style-2 {
    margin-top: 40px;
}


/* ** hero tag */

.tot_nat_tag {
    background: rgb(10, 186, 97);
    background: linear-gradient(332deg, rgba(10, 186, 97, 1) 0%, rgba(106, 255, 208, 1) 100%);
    /* background-size: 150%; */
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    padding-left: 95px;
    position: absolute;
    top: 2%;
    right: 10%;
    -webkit-animation: upDown 1s infinite alternate;
    animation: upDown 1s infinite alternate;
}

.tot_nat_tag img {
    position: absolute;
    width: 50px;
    left: 30px;
    top: -15px;
}

.door_ste_tag {
    background: rgb(255, 13, 127);
    background: linear-gradient(332deg, rgba(255, 13, 127, 1) 0%, rgba(255, 216, 160, 1) 100%);
    /* background-size: 150%; */
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    padding-left: 150px;
    position: absolute;
    top: 76%;
    right: -6%;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.door_ste_tag img {
    position: absolute;
    width: 105px;
    left: 30px;
    top: -28px;
}



/*    up down animation  */

@-webkit-keyframes upDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes mover {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-10px);
    }
}




/* *** feature section  */


.feature_section {
    background: rgb(231, 1, 0);
    background: linear-gradient(332deg, rgba(231, 1, 0, 1) 0%, rgba(231, 0, 65, 1) 100%);
    border-radius: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0 120px;
    margin-top: -85px;
    margin-bottom: 50px;
}


.feature_section .feature_card {
    padding: 15px;
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    width: 100%;
    display: flex;
    align-items: center;
}


.feature_card .feat_icon_circle {
    width: 135px;
    height: 135px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    min-width: 135px;
    padding: 25px;
}

.feat-card_head {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
}

.feat-card_des {
    font-size: 16px;
    color: #fff;
}


/* *** help section  */

.helpCard {
    min-height: 300px;
    width: 100%;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.helpCard .help_title {
    font-size: 50px;
    color: #202020;
    font-weight: 500;
    line-height: 1.2;
}

.helpCard .help_title span {
    font-weight: 700;
    display: block;
}

.text-warn-new {
    color: #fb9f00
}

.text-green-new {
    color: #23ab70;
}


.helpCard_2 {
    background-color: #9ccdfa;
    background-size: contain;
    background-position: bottom center;
    padding: 30px 20px;
    text-align: center;
    align-items: flex-start;
    padding-top: 60px;
    justify-content: center;
}

.helpCard_2 .help_title {
    font-size: 35px;
    color: #fff;
    text-align: center;
}



/* *******    product section   */

.product_section {
    padding: 40px 0;
}

.section_heading_new {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section_heading_new h4 {
    font-size: 40px;
    font-weight: 500;
    color: #202020;
    margin-bottom: 0;
    line-height: 43px;
}

.section_heading_new h2 {
    font-size: 100px;
    font-weight: 700;
    color: rgba(166, 166, 166, .1);
    margin-bottom: 0;
    line-height: 75px;
}


/* *** daily need card */

.dailyNeed_card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0 84px -15px rgb(0 0 0 / 10%);
    overflow: hidden;
    min-height: 400px;
    margin-top: 30px;
}

.dailyNeed_card_col_1 {
    flex: 0 0 55%;
    width: 100%;
    max-width: 55%;
}

.dailyNeed_card_col_2 {
    flex: 0 0 45%;
    width: 100%;
    max-width: 45%;
    padding: 0 15px;
}


.dailyNeedBck {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.dailyNeedBck img {
    opacity: 0;
    display: none;
}



.dailyCard_categroy_list {
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
}

.dailyCard_categroy_list .dailyNeed_list_head {
    font-size: 23px;
    color: #e70109;
    margin-bottom: 20px;
    font-weight: 500;
}



.dailyCard_categroy_list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.dailyCard_categroy_list ul li {
    font-size: 18px;
    font-weight: 500;
    color: #202020;
    margin-bottom: 15px;
}


.dailyCard_categroy_list a {
    font-size: 18px;
    font-weight: 500;
    color: #00ad95;
    text-decoration: underline;
    width: fit-content;
    margin-top: 15px;
}

.dailyCard_categroy_list a:hover {
    color: #e70109
}


/* ** fruid card */

.fruit_card {
    margin-top: 30px;
    display: flex;
    position: relative;
    flex-direction: column;
    height: calc(100% - 30px);
}

.fruid_img_block {
    width: 100%;
    height: 250px;
    background: #fff;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0 84px -15px rgb(0 0 0 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    /* overflow: hidden; */
}

.fruid_card_content {
    padding: 0 15px;
}

.fruit_card_subheading {
    font-weight: 500;
    color: #00ad66;
    font-size: 17px;
    margin-bottom: 5px;
}

.fruit_card_heading {
    font-size: 18px;
    color: #202020;
    font-weight: 600;
    margin-bottom: 15px;
    flex: 1;
}

.fruid_card_content select {
    margin-bottom: 8px;
}

.fruit_price_group {
    /* display: flex; */
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 0px;
}

.fruit_unit {
    color: #afaeae;
    font-size: 17px;
    font-weight: 500;
}

.fruit_unit span {
    color: #202020;
}

.fruit_price {
    color: #e70100;
    font-weight: 800;
    flex: 1;
    /* text-align: right; */
}

.fruit_price del {
    color: #999;
    margin-right: 5px;
}


.homeproduct .fruit_unit,
.homeproduct .fruit_price {
    font-size: 16px;
}


.homeproduct .prodD_counterBlock {
    margin: 22px 0;
}


/* ** bev sectionn  */

section.bevCategory_section {
    padding: 40px 0;
}

.bevrage_card {
    margin-top: 30px;
}

.beverage_card_img {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: auto;
    background: #f0eeef;
}



.beverage_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bev_card_heading {
    font-size: 20px;
    text-align: center;
    color: #202020;
    margin-top: 30px;
    font-weight: 500;
}

.bevCard-style-2.bevrage_card .beverage_card_img {
    overflow: unset;
}

.bevCard-style-2.bevrage_card .beverage_card_img img {
    object-fit: contain;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    max-width: calc(100% + 30px);
}


.bg-veg {
    background-color: #f1eed1;
}

.bg-lemon {
    background-color: #ffe6b4;
}

.bevCard-style-2.bevrage_card .beverage_card_img.bg-lemon img {
    max-width: 150px;
    object-position: bottom;
}



/* *** shop banner  */

.shopBaner_card {
    background-image: url(../../img/frontend/shopBanner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 25px;
    padding: 65px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shopBanner_heading {
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}


.shopBanner {
    padding: 40px 0;
}


/* *** veg seection  */


.vegBaner_shop {
    background-image: url(../../img/frontend/veg-banner-shop.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 25px;
    padding: 65px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vegBanner_section {
    padding: 40px 0;
}


.vegBanner_heading {
    font-size: 45px;
    font-weight: 700;
    color: #a4ba60;
    margin-bottom: 30px;
}

.everyBaner_shop {
    background-image: url(../../img/frontend/everyday_banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 25px;
    padding: 65px 20px 65px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.everyBanner_heading {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}


/* ** review section  */


.reviewSection {
    padding: 40px 0;
}

.reviewBack {
    background-image: url(../../img/frontend/review-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 25px;
    padding: 45px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}





.reviewClint_heading {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}

.clientOwl {
    max-width: 580px;
    margin: auto;
    padding: 0 15px
}

.clientCard {
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    margin-top: 30px;
}

.clientCard_img {
    max-width: 80px;
    margin-top: -30px;
    margin-bottom: 25px;
}

.client_review_content {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    color: #595959;
    margin-bottom: 25px;
    line-height: 28px;
}

.clientName_card {
    color: #202020;
    font-weight: 600;
    font-size: 18px;
}


.reviewRank {
    color: #ffc107;
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 20px;
}

.reviewRank i:not(:last-child) {
    margin-right: 5px;
}



/* *** delivery section  */

.deliverySection {
    padding: 40px 0;
}

.deliveryImg img {
    width: 100%;
}

.deliveryContent {
    font-size: 70px;
    font-weight: 500;
    color: #202020;
    max-width: 720px;
    line-height: 1.2;
}

.deliveryContent span {
    color: #e80100;
    font-weight: 700;
}

.storeImages {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.storeImages img {
    max-height: 55px;
}

.storeImages img:not(:last-child) {
    margin-right: 15px;
}


.subscribeSection {
    padding: 29px 180px;
    border-radius: 25px;
    background: rgb(37, 159, 111);
    background: linear-gradient(332deg, rgba(37, 159, 111, 1) 0%, rgba(152, 224, 95, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -90px;
    margin-top: 30px;
}


.subscribeTxt {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    max-width: 250px;
    line-height: 1.2;
}

.subscribeInput_group {
    display: flex;
    position: relative;
    flex: 1;
    max-width: 575px;
}

.subscribeInput_group input.form-control {
    background: rgba(0, 162, 103, .46);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 10px 35px;
    min-height: 45px;
    border: 0;
    padding-right: 215px;
    outline: 0;
    box-shadow: none;
}

.subscribeInput_group input.form-control::placeholder {
    color: #fff;
    font-weight: 400;
}

.subscribeInput_group button {
    font-size: 18px;
    font-weight: 600;
    background: #fff;
    border: 0;
    padding: 5px 25px;
    border-radius: 10px;
    position: absolute;
    height: 100%;
    right: 0;
    transition: all .2s linear;
}

.subscribeInput_group button:hover {
    color: #e80100;
}



/* *** footer wrapper */

.footer-wrapper {
    background: rgb(92, 3, 3);
    background: linear-gradient(332deg, rgba(92, 3, 3, 1) 0%, rgba(231, 0, 65, 1) 100%);
    padding: 5px 0 5px;
}


.footer-logo img {
    max-height: 70px;
}

.foot_about_cont {
    font-size: 16px;
    color: #ffc6cb;
    line-height: 33px;
}

.foot_about_cont {
    font-size: 16px;
    color: #ffc6cb;
    line-height: 30px;
    max-width: 313px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.footer_listHead {
    color: #ffc6cb;
    font-weight: 500;
    font-size: 25px;
    margin-bottom: 25px;
    margin-top: 15px;
}

ul.footerLinkList {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #ffc6cb;
    margin-top: 25px;
}

ul.footerLinkList li a {
    color: #ffc6cb;
    font-size: 16px;
    transition: all .3s linear;
}

ul.footerLinkList li:not(:last-child) {
    margin-bottom: 15px;
}

ul.footerLinkList li a:hover {
    color: #fff;
}


ul.footerLinkList.socialList {
    display: flex;
    align-items: center;
}

ul.footerLinkList.socialList li:not(:last-child) {
    margin-right: 30px;
    margin-bottom: 0;
}

ul.footerLinkList.socialList li a {
    font-size: 30px;
}

.copyRightTxt {
    color: #ff789b;
    text-align: center;
    /*margin-top: 80px;*/
    /*font-size: 13px;*/
}



/*    faq pages  */


.subPageBanner {
    /*background-image: url(../../img/frontend/shopBanner.jpg);*/
    background: var(--background-box-1);
   color: var(--text-color);
    background-size: cover;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 0;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.subPageBanner .pageTitle {
    text-align: center;
    font-size: 50px;
    color: #141e30;
    font-weight: 700;
    margin-bottom: 0;
}

.subPageBanner p {
    font-size: 18px;
    color: #141e30;
    text-align: center;
    margin-bottom: 0;
    font-weight: 500;
    margin-top: 20px;
    max-width: 500px;
}


/* ** fq pages*/

/* ***  faq page  */



.sectionPadding {
    padding: 60px 0;
}

.faqHeader.collapsed {
    padding: 15px 50px 15px 20px;
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    position: relative;

}

.faqHeader {
    padding: 15px 50px 15px 20px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--secondary-color);
}

.faqContent {
    padding: 15px 20px;
    font-size: 16px;
    color: #393939;
    background: #eacda3;
    line-height: 30px;

}

.faqCard {
    border: 1px solid #DCD9D9;
    border-radius: 5px;
    overflow: hidden;
}

.faqCard:not(:last-child) {
    margin-bottom: 10px;
}

.faqHeader.collapsed::before {
    content: '\f107';
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    right: 25px;
    top: 19px;
    font-family: 'Font-awesome-5-pro';
    line-height: 1;
}

.faqHeader:not(.collapsed)::before {
    content: '\f106';
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    right: 25px;
    top: 19px;
    font-family: 'Font-awesome-5-pro';
    line-height: 1;
}

.headingtext
{
 font-weight:600;    
}

/* *** contact page */

h2.contact_heading {
    color: #202020;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.subhead-contact {
    font-size: 14px;
    font-weight: 500;
    color: #e80100;
}

.contactForm {
    margin-top: 60px;
    max-width: 520px;
}


label {
    color: #797979;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 15px;
}

.form-control {
    background-color: #f5f5f5;
    border: 0;
    border-radius: 10px;
    min-height: 50px;
    outline: 0;
    box-shadow: none;
    padding: 10px 25px;
    color: #333333;
    resize: none;
}

.form-control:focus {
    background-color: #f5f5f5;
    outline: 0;
    border: 0;
    box-shadow: none;
    color: #333333;
}

.form-group {
    margin-bottom: 30px;
}


.addresback {
    background-image: url(../../img/frontend/contact-ad-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.customAdd_book {
    font-size: 20px;
    color: #202020;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    padding: 25px 0;
    position: relative;
}

.customAdd_book:not(:last-child):before {
    position: absolute;
    content: '';
    width: 120px;
    height: 1px;
    background-color: rgba(0, 0, 0, .1);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.addBook {
    background: #fff;
    padding: 25px;
    max-width: 500px;
    margin: auto;
}

.customAdd_book span {
    display: block;
    font-size: 30px;
    font-weight: 600;
}

.customAdd_book a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #e60100;
}



.cmsSection p {
    font-weight: 400;
    font-size: 15px;
    color: var(--secondary-color) !important;
}


.cmsSection a {
    color: var(--secondary-color);
     font-weight: 600;
    text-decoration: underline;
}

.cmsSection ul,
.cmsSection ol {
    padding-left: 20px;
    font-size: 15px;
    color: var(--secondary-color);
    line-height: 25px;
}

::marker {
    /*color: #e80100;*/
}

/*========================  Profile Page START ========================*/
.profile_block.section-padding {
    padding-top: 50px;
    padding-bottom: 45px;
    background-color: #f8f8f8;
}


.profile_left_inner,
.profile_right_inner {
    background-color: #fff;
    box-shadow: 0 0 41px  rgb(0 0 0 / 5%);
    -webkit-box-shadow: 0 0 41px  rgb(0 0 0 / 5%);
    -moz-box-shadow: 0 0 41px  rgb(0 0 0 / 5%);
}
}

.profile_right_inner {
    height: 100%;
}


.profile_right {
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;

}

.profile_left_inner>ul {
    margin: 0;
}

.profile_left .profile_left_inner:not(:last-child) {
    margin: 0 0 10px;
}

.profile_wall img {
    width: 60px;
    height: 60px;
    margin: auto;
    display: table;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(110, 140, 182, 0.19);
}

.profile_wall {
    position: relative;
    margin: 0 auto;
    display: table;
}

.pro_uploadbtn input {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    cursor: pointer;
    height: 100%;
    opacity: 0;
}

.pro_uploadbtn {
    position: absolute;
    left: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background-color: #db0302;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 25px;
    margin: 0 auto;
    bottom: -7px;
}

.profile_wall_block {
    text-align: center;
}

.profile_wall_block .prouser_name {
    font-size: 18px;
    color: #141e30;
    margin: 12px 0 3px;
    font-weight: 800;
}


.other_page_small_headings
{
    color: var(--secondary-color) !important;
}
.profile_left .profile_left_inner:not(:last-child) ul {
    padding: 0 0 7px;
}

.profile_left_inner>ul>li:not(:last-child) {
    border-bottom: 1px solid rgba(233, 233, 233, 0.80);
}

.pro_contact_row a {
    font-size: 15px;
    color: #202020;
}

.pro_contact_row a:hover {
    color: #e80100;
}

.pro_contact_row {
    position: relative;
}

.pro_contact_row svg {
    width: 18px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #6f8cb6;
}


.mypoint_box {
    position: relative;
    padding-right: 65px;
}

.myoint_icon {
    width: 57px;
    height: 57px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    line-height: 57px;
    border-radius: 50%;
    background-color: #f8f8f8;
}

.myoint_icon img {
    max-width: 35px;
}

.mypoint_box label {
    margin: 0;
    color: rgba(76, 90, 110, 0.7);
}

.mypoint {
    font-size: 27px;

    color: #1b1c1c;
}

.mypro_links {
    position: relative;
}

.mypro_links a {
    margin-left: 50px;
}

.dash_menuList.profile_left_inner>ul>li a {
    padding: 6px 17px 6px 37px;
    display: block;
    color: #202020;
    font-weight: 400;
    font-size: 15px;
}


.profile_left_inner>ul>li a i.fa-phone {
    transform: rotate(90deg);
    margin-top: -8px;
}

.profile_left_inner>ul>li a i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    font-size: 16px;
}

.profile_left_inner>ul>li a:hover {
    color: #e80100;
}

.profile_left_inner>ul>li a:hover svg {
    fill: #e80100;
    transition: none
}

.pro_counter {
    width: 20px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    border-radius: 50%;
    font-size: 11px;
    text-align: center;
    background-color: #e80100;
    color: #fff;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 500;
}

.accountinfo_wrap {
    margin: 5px 0;
    font-weight: 600;
       
}

.accountinfo_head {
    font-size: 19px;
    color: #202020;
    padding: 0;
    margin: 10px 0 20px 0;
    font-weight: 600;
}

.accountinfo_para {
    margin: 0 0 22px;

}

.accountinfo_wrap p {
    font-size: 14px;
    /*color: #747474;*/
}

.accountinfo_wrap .form-group label {
    /*font-size: 13px;*/
    /*color: #7E7E7E;*/
    /*margin: 0 0 5px;*/
        font-size: 13px;
    color: #000;
    margin: 0 0 5px;
    font-weight: 900;
}

.accountinfo_wrap .form-group {
    margin-bottom: 5px;
}

.accountinfo_wrap .form-group .form-control {
    border-color: rgba(0, 0, 0, 0.20);
}

.accountinfo_wrap .iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
    outline: 0;
}

.accountinfo_wrap .form-group .custom-select {
    min-height: 45px;
    outline: 0;
    box-shadow: none;
    font-size: 17px;
    border-color: rgba(0, 0, 0, 0.20);
}

.cartHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartHeader h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.cartHeader .btn-style-2 {
    font-size: 15px;
    font-weight: 600;
    padding: 8px 20px;
}

.profile_wrapper {
    /*margin-bottom: 10px;*/
    /*padding-bottom: 10px;*/
}

/*========================  Profile Page END ========================*/


/* ===========================Productlist-Page ========================================*/
.Productlist-banner {
    border-radius: 0;
    padding: 100px 0;
}


.product-row {
    min-height: 100vh;
    gap: 40px;
    position: relative;
    margin: 40px 0;
    width: 100%;
    display: flex;
}

.list-Categories {
    flex: 0 0 270px;
    /* position: absolute; */
    left: 0;
    top: 0;
    max-width: 270px;
    height: 100%;
}

.list-Product {
    width: 100%;
    position: relative;
    flex: 1;

    width: 100%;
    max-width: calc(100% - 270px);
}

.sortby-heading {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    color: #797979;
    align-items: center;
    font-weight: 500;
}

.sortby-heading select {
    background-color: #f0f0f0;
    border-radius: 10px;
    font-size: 17px;
    padding: 7px 33px 7px 15px;
    color: #797979;
    min-width: 130px;
    font-weight: 500;
    border: 0;
}

.sortby-heading .select-bx {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    white-space: nowrap;
    font-weight: 500;
}

select.form-select:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}


.heading-category h4 {
    color: #e70109;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 22px;
}

.heading-category.item-first {
    margin-top: 10px;
}

.product-listing .fruit_card .btn-style-2 {
    text-transform: uppercase;
}

.label-tagLabel {
    color: #fff;
    background: #00ad95;
    white-space: nowrap;
    padding: 5px 16px;
    font-size: 14px;
    position: absolute;
    border-radius: 70px;
    font-weight: 500;
    position: absolute;
    z-index: 2;
    left: -13px;
    top: 15px;
}


/* .product-listing .fruit_card:hover {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0 84px -15px rgb(0 0 0 / 10%);
} */

/* .product-listing .fruit_card {
    padding-bottom: 20px;
} */

/* .product-listing .fruit_card:hover .fruid_img_block {
    box-shadow: none
} */
/* 
.product-listing .fruit_card .btn-block {
    display: none
} */

.product-listing .fruit_card:hover .btn-block {
    display: block;
    transition: all .3s ease-in-out;
}

.product-help .help_title {
    font-size: 29px;
    max-width: 237px;
}

.product-help .help_title span {
    font-size: 12px;
    font-weight: 600;
    margin: 10px 0;
    color: #a9a9a9;
}

/* .product-listing .fruit_card:hover .fruid_card_content {
    transform: translateY(-50px);
    position: relative;
display: block;
    z-index: 1;
} */

.btn-style-3 {
    display: inline-block;
    border: 0;
    box-shadow: none;
    outline: 0;
    font-size: 17px;
    font-weight: 700;
    border: #ccc8c8 solid 2px;
    color: #333;
    padding: 10px 25px;
    background: transparent;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.offer-label {
    font-size: 16px;
    color: #fff;

    max-width: 120px;
    text-align: center;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 70px;
}

.offer-label.blue {
    background: rgb(125, 134, 207);
    background: linear-gradient(90deg, rgba(125, 134, 207, 1) 0%, rgba(239, 238, 235, 1) 100%);
}

.offer-label.brown {
    background: rgb(220, 148, 103);
    background: linear-gradient(90deg, rgba(220, 148, 103, 1) 0%, rgba(176, 150, 126, 1) 100%);
}

/*==================== pagination========== */

.pagination-block a.page-link {
    color: #8f8f8f;
    background: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 11px 12px;
    border: 0;
}

.pagination-block .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    padding: 0 35px;
    display: inline-flex;
    box-shadow: 0 0 35px -11px rgb(0 0 0 / 20%);
    border-radius: 12px;
}

.pagination-block nav {
    text-align: center;
}

.pagination-block li.page-item {
    margin-right: 15px;
}

.pagination-block .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #da0239;
    transform: scale(1.2);
    font-weight: 900;
    border-color: #da0239;
    border-radius: 9px;
}

.product-listing {
    margin-bottom: 30px;
}

.pagination-block {
    margin: 40px 0 0;
}



.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox+label {
    position: relative;
    text-transform: capitalize;
    cursor: pointer;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 17px;
}

.styled-checkbox+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    border: rgb(51 51 51 / 30%) solid 1px;
    width: 20px;
    border-radius: 3px;
    height: 20px;
    background: transparent;
}

/* .styled-checkbox:hover + label:before {
                            background: #f35429;
                          }
                          .styled-checkbox:focus + label:before {
                            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
                          } */
.styled-checkbox:checked+label:before {
    background: #00ad95;
}

.styled-checkbox:disabled+label {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled+label:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked+label:after {
    content: "\f00c";
    position: absolute;
    font-family: Font-Awesome-5-Pro;
    left: 5px;
    font-weight: 400;
    top: 50%;
    font-size: 12px;
    transform: translateY(-50%);
    color: #fff;
}



.custom-checkbox {
    margin-bottom: 15px;
}

/* 
                        .ui-slider .ui-btn-inner {
                            padding: 4px 0 0 0 !important;
                        }
                         
                        .ui-slider-popup {
                            position: absolute !important;
                            width: 64px;
                            height: 64px;
                            text-align: center;
                            font-size: 36px;
                            padding-top: 14px;
                            z-index: 100;
                            opacity: 0.8;
                        } */

.irs--flat .irs-handle>i:first-child {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 19px;
    border-radius: 50%;
    height: 100%;
    margin-left: -1px;
    background-color: #202020;
}

.irs--flat .irs-bar {
    top: 29px;
    height: 5px;
    background-color: #ed5565;
}

.irs--flat .irs-line {
    top: 29px;
    height: 5px;
}

.irs--flat .irs-bar {
    top: 29px;
    height: 5px;
    background-color: #202020;
}

.heading-category {
    margin-top: 40px;
}

.irs--flat .irs-handle.state_hover>i:first-child,
.irs--flat .irs-handle:hover>i:first-child,
.irs--flat .irs-handle.state_hover>i:first-child,
.irs--flat .irs-handle:hover>i:first-child {
    background-color: #202020;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
    background-color: #333;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
    border-top-color: #202020;
}


.filter-add .helpCard {
    min-height: 480px;
    width: 100%;
    border-radius: 15px;
    align-items: unset;
    padding: 30px;
    margin-bottom: 40px;
}

.filter-add .helpCard .help_title {
    text-align: center;
    font-size: 29px;
}

.filter-add .helpCard .help_title h5 {
    color: #ff1800;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.filter-checkblock .accordion-item:last-child {
    margin-bottom: 0;
}

.filter-checkblock .accordion-item {
    margin-bottom: 18px;
}

.filter-checkblock .accordion-item .custom-checkbox {
    margin-bottom: 15px;
    line-height: 20px;
}

.filter-add .offer-label {
    margin: 15px auto;
}

.offer-label.yellow {
    background: rgb(0, 177, 120);
    background: linear-gradient(90deg, rgba(0, 177, 120, 1) 0%, rgba(255, 219, 167, 1) 100%);
}

.list-Categories .custom-checkbox.accordion-button {
    background: transparent;
    border: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
}

.list-Categories .accordion-item {
    border: 0
}

.list-Categories .accordion-body {
    padding-bottom: 0;
    padding-top: 0;
}

.list-Categories .accordion-body .custom-checkbox:last-child {
    margin-bottom: 0;
}

.list-Categories .accordion-header {
    position: relative;
    cursor: pointer;
}

/* 
.list-Categories .accordion-header.collapsed::before {
    position: absolute;
    content: '\f054';
    font-family: 'Font-awesome-5-pro';
    font-size: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #333;
    right: 0;
    top: 50%;
    transform: translateY(-30%);
}


.list-Categories .accordion-header::before {
    position: absolute;
    content: '\f077';
    font-family: 'Font-awesome-5-pro';
    font-size: 18px;
    width: 30px;
    height: 30px;
    pointer-events: all;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;


    right: 0;
    top: 50%;
    transform: translateY(-30%);
} */

/* .list-Categories .accordion-button::after {
    transform: rotate(275deg);
    font-size: 12px;
    filter: brightness(0);
}

.list-Categories .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
} */


.filterMobtoggle svg {
    margin-left: auto;
    width: 30px;
    height: 34px;
    fill: #fff;
}

.filter-mobile {
    background-color: #db0302;
    padding: 2px 13px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.filter-mobile {
    display: none;
}

/* .product-listing .fruit_card .btn-block {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 15px;
    padding: 0px 20px;
} */

.product-help {
    margin-top: 40px;
}

.product-help .helpCard {
    margin-bottom: 30px;
}


.product-listing .fruid_card_content {
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.product-listing .fruid_img_block img {
    height: 100%;
    object-fit: contain;
}



.product-silder {
    position: relative;
}

.product-silder .product-item {
    position: relative;
    bottom: 30px;
}

.product-silder .product-view {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 0 84px -15px rgb(0 0 0 / 10%);

    padding: 40px;
}

.product-silder .product-item .owl-stage {
    margin: 0 auto;
    padding: 15px 0px;
    background: #fff;
}


.sync2Width {
    max-width: 280px;
    margin: 0 auto;
}

.product-item .owl-stage-outer {
    box-shadow: 0 0 84px -15px rgb(0 0 0 / 10%);
    border-radius: 18px;
}

.product-silder .product-item .owl-stage {
    margin: 0 auto;
    padding: 15px 0px;
    background: #fff;
    background: #fff;
    cursor: pointer;
    bottom: -20px;
    margin: 0 auto;
    padding: 10px 0;
    left: 0;
    top: 00;
    border-radius: 25px;
    right: 0;
}

.product-silder .label-tagLabel {
    left: 20px;
    top: 20px;
}



.counter {
    display: inline-flex;
    align-items: center;
}

.counter button {
    background-color: #ececec;
    color: #333;
    font-size: 25px;
    font-weight: 400;
    width: 36px;
    height: 36px;
    border: 0;
    text-align: center;
    border-radius: 10px;
    line-height: 36px;
    display: inline-block;
}

.counter .count-text {
    line-height: 36px;
    border: 0;
    width: 36px;
    color: #fff;
    border-radius: 10px;
    transform: scale(1.2);
    text-align: center;
    background-color: #dd0339;
    font-weight: 600;
    font-size: 17px;
}

.counter input::-webkit-inner-spin-button {
    display: none;
}

.filter-checkblock label {
    cursor: pointer;
}

.counter .count-text input:focus-visible {
    outline: 0
}

.counter button.count-left {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.counter button.count-right {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


.custom-alert {
    padding: 12px 40px;
    font-size: 16px;
    display: flex;
    border: 0;
    font-weight: 500;
    border-radius: 70px;
    align-items: center;
    gap: 10px;
    color: #202020;
}

.custom-alert img {
    max-width: 42px;
}

.prodD_counterBlock {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    margin: 30px 0;
    gap: 35px;
}

.prodD_head p {
    color: #757575;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

.prodD_price h3 {
    display: inline-block;
    font-weight: 600;
    margin-right: 15px;
    color: #e70100;
    font-size: 24px;
}

.unitP label {
    color: #afaeae;
    font-size: 18px;
    text-transform: capitalize;
}

.unitP {
    color: #202020;
    font-size: 18px;
    font-weight: 500;
}

.prodD_rating i {
    color: #ffc107;
    font-size: 17px;
}

.prodD_rating {
    font-size: 14px;
    color: #757575;
    margin: 13px 0;
    font-weight: 500;
}

.heading_D h2 {
    color: #333;
    font-size: 27px;
    font-weight: 500;
    margin: 0;
}

.heading_D h5 {
    color: #a6a6a6;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 17px;
}

.prodD_price {
    margin-bottom: 10px;
}

.alert-warning.custom-aler {
    background-color: #fffae3;
    border-color: #fffae3;
}

.prod_Col {
    display: flex;
    align-items: center;
    gap: 25px;
}

.prod_Col .socialBlock {
    text-align: right;
    gap: 15px;
    flex: 0 0 38px;
    display: flex;
    flex-direction: column;
}


.prodD_tabs .nav-tabs .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #707070;

    text-transform: capitalize;
    border: 0;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 3px solid transparent;
}

.prodD_tabs .nav-tabs {
    border-bottom: 0;
}

.prodD_tabs .nav-tabs .nav-link.active,
.prodD_tabs .nav-tabs .nav-item.show .nav-link {
    border-bottom: 3px solid #e80100;
    color: #707070;
}

.prodD_tabs .tab-content {
    border-top: 1px solid rgb(136 136 136 / 24%);
    padding: 25px 15px;
}

.prodD_desc p {
    color: #757575;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.prodD_tabs {
    margin-top: 45px;
    border-bottom: rgb(51 51 51 / 20%) solid 1px;
}

.pro-details-review p {
    color: #595959;
    font-size: 16px;
    margin: 10px 0 20px;
    font-weight: 500;
}

.pro-details-review p:last-child {
    margin-bottom: 0;
}

.pro-details-review .single-pro-details-review .review-img {
    flex: 0 0 70px;
    margin-right: 22px;
}

.pro-details-review .single-pro-details-review {
    display: flex;
    margin: 0 0 30px;
    padding: 0 0 26px;
}

.pro-details-review .single-pro-details-review {
    padding: 15px;
    margin: 0;
    cursor: default;
}

.review-name-rating i {
    color: #ffc107;
    font-size: 17px;
}

.pro-details-review .review-name {
    margin-bottom: 7px;
}

i.fa.fa-star {
    transform: rotate(45deg);
}

.fruid_img_block img {
    height: 100%;
    object-fit: cover;
}

.single-pro-details-review .review-name h6 {
    color: #202020;
    font-size: 19px;
    margin: 0;
    font-weight: 500;
}

.Related-Pheading {
    font-size: 21px;
    color: #707070;
    margin: 25px 0 0;
    font-weight: 500;
}

.breadcrumb-Block {
    padding: 35px 0 20px;
}

.breadcrumb-Block .breadcrumb-item+.breadcrumb-item::before {
    display: none
}

.breadcrumb-Block .breadcrumb-item a {
    color: #a6a6a6;
    text-transform: uppercase;
}

.breadcrumb-Block .breadcrumb-item.active {
    color: #202020;
}

.breadcrumb-item+.breadcrumb-item {
    text-transform: uppercase;
}


.breadcrumb-Block .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-Block li.breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #a6a6a6;
}

.page-link:focus {
    box-shadow: none;
}


/* ===================================CartPage=================================== */
.orderList_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.orderttbox {
    flex: 0 0 480px;
    -ms-flex: 0 0 383px;
    max-width: 480px;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.orderList {
    flex: 1;
    -ms-flex: 1;
    max-width: 100%;
    position: relative;
    /* width: 100%; */
    width: calc(100% - 480px);
    min-height: 1px;
    padding-right: 25px;
    padding-left: 15px;
}

.cart-table .table th {
    border-top: 1px solid rgb(232 234 236 / 70%);
}

.orderList .cart-table {
    margin-bottom: 50px;
}

.cart-table .table td {
    border-top: 0;
    border-bottom: 1px solid rgb(232 234 236 / 70%);
    vertical-align: middle;
}

.cart-table .table thead th {
    border-bottom: 2px solid rgb(232 234 236 / 70%);
    font-weight: 400;
    font-size: 14px;
    color: #828282;
}

.cart-table .table thead th {
    padding: 15px 10px;
    color: #797979;
    font-weight: 700;
    border: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.cart-table .table tbody td {
    padding: 18px 10px;
    border: 0;
}

.orderWall>a {
    width: 90px;
    height: 90px;
    display: block;
    box-shadow: 0 0 11px rgb(0 0 0 / 7%);
    background: #fff;
    padding: 4px;
    border-radius: 11px;
}

.orderWall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opName h4 {
    font-size: 16px;
    margin: 0 0 3px;
}

.opName h4 a {
    color: #202020;
    /* white-space: nowrap; */
    font-size: 16px;
}

.opName h4 a:hover {
    color: #c09679;
}

.opName span {
    font-size: 14px;
    color: #737373;
}

.opcost {
    font-size: 16px;
    color: #363636;
    font-weight: 700;
}

.opqty {
    display: flex;
    max-width: 96px;
}


.opqty input {
    width: 38px;
    height: 30px;
    border: 0;
    outline: 0;
    text-align: center;
    padding: 0 4px;
    font-size: 16px;
}

.opqty button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0;
    background-color: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    line-height: normal;
}

.opqty button:hover {
    background-color: #dcd9d9;
}

.op_subtl {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.op-remove {
    outline: 0;
    background-color: transparent;
    border: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin-left: 10px;
    outline: 0;
}

.op-remove i {
    color: #a8a8a8;
    font-size: 18px;
}

.cart-table .table tbody tr td:nth-child(1) {
    width: 100px;
}

.cart-table .table tbody tr td:nth-child(5) {
    width: 120px;
}

.cntshop {
    color: #3c3c3c;
    font-size: 17px;
    position: relative;
    font-weight: 600;
    padding-left: 20px;
    display: table;
    margin-top: 32px;
}

.cntshop:hover {
    color: #c09679;
}

.cntshop i {
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 16px;
}

.orderttbox_inner {
    /* background-color: #f7f7f7; */
    border: 1px solid rgb(51 51 51 / 20%);
    padding: 30px 30px;
    border-radius: 25px;
}

.orderttbox_head {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin: 0 0 15px;
    padding: 0 0 12px;
    position: relative;
}


.orderttblock {
    padding: 0px 8px;
}

.orderttblock h6 {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
}

.orderttblock .form-group:nth-child(1) {
    margin: 0 0 27px;
}

.orderttblock strong.totalP {
    font-size: 15px;
    font-weight: 700;
    color: #202020;
}

.orderbtn.theme-btn {
    font-size: 23px;
    text-align: center;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    margin-top: 40px;
    padding: 15px 10px;
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.button-div-css-end
{
    display: flex !important;
    /* height: 130px; */
    justify-content: end !important;
    align-items: end !important;
}

.button-div-css-center
{
    display: flex !important;
    /* height: 130px; */
    justify-content: end !important;
    align-items: center !important;
}

.orderttblock .btn-style-2 {
    width: 100%;
    text-align: center;
    
}

.orderttblock .totalamount_row {
    margin: 20px 0;
}

.orderttbox .Slabel {
    font-size: 15px;

    font-weight: 600;
    color: #797979;

}

.border_Scart {
    position: relative;
    max-width: 200px;
    word-break: break-word;
}

.border_Scart::after {
    position: absolute;
    content: '';
    display: block;
}


.text-green {
    color: #71ca64;
}


.col-auto.colCustom-auto {
    flex: 0 0 70px;
    text-align: left;
    width: auto;
}

.cart_headerS {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: rgb(51 51 51 / 18%) solid 1px;
}

.alert-red {
    background-color: #fff8f9;
}

.cart_block {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    gap: 35px;
}

.cart_blockH {
    font-size: 25px;
    white-space: nowrap;
    font-weight: 600;
}

.coupon_Wrap {
    display: inline-flex;
    align-items: center;
    border: rgb(51 51 51 / 15%) solid 1px;
    border-radius: 25px;
    padding: 30px 25px 0 0;
}

.coupon_Wrap img {
    max-width: 200px;
}

.newletter-input-wrap {
    display: flex;
    margin-bottom: 30px;
    gap: 10px;
}

.coupon_Wrap .img-wall {
    flex: 0 0 200px
}


.btn-styleG-3 {
    display: inline-block;
    border: 0;
    box-shadow: none;
    text-transform: uppercase;
    outline: 0;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    padding: 10px 35px;
    background: #71ca64;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.gap-row {
    gap: 15px;
}

.newletter-input input {
    background: #f5f5f5;
    border: 0;
    height: 50px;
    padding: 10px;
    border-radius: 8px;
    width: 335px;
}

.newletter_block h3 {
    color: #202020;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

.orderttblock .form-row {
    align-items: baseline;
    gap: 15px;
    margin-bottom: 7px;
}

.orderttblock .border-line {
    border-top: #efefef solid 2px;
    flex: 1;
}


.tableProduct-block {
    display: flex;
    align-items: center;
    gap: 15px;
}


.coupon_Wrap .btn-styleG-3 {
    white-space: nowrap;
}

.cart_blockalert {
    display: flex;
    gap: 15px;
}

/*================================= CHECKOUT-page ============================*/


.checkoutWrap {
    width: 100%;
}


.termsabdconditions a {
    color: #e80100;
}

.checkoutWrap .card-img {
    width: 100%;
    text-align: center;
    margin: 30px 0 0;
}


.orderttblock .totalamount_row .totalP {
    font-size: 18px;
    font-weight: 900;
}

.checkout-form {
    margin: 40px 0;
}




.selectStatus_btns {
    display: inline-flex;
    border: rgb(51 51 51 / 20%) solid 1px;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 12px;
    justify-content: center;
    align-items: center;
}

.payment-method {
    margin: 25px 0;
}

.selectStatus_btns .selectStatus_box:not(:last-child) {
    margin-right: 10px;
}

.selectStatus_box {.n
    position: relative;
    display: inline-block;
}

/*       
      .selectStatus_box label {
        margin: 0;
    border-radius: 12px;
    padding: 10px 20px 10px 20px;
    min-width: 110px;
    text-align: center;
    position: relative;
    cursor: pointer;
      }
       */
.selectStatus_box label {
    margin: 0;
    border-radius: 12px;
    /* padding: 10px 20px 10px 20px; */
    min-width: 130px;
    text-align: center;
    height: 55px;
    display: flex;
    line-height: 55px;
    justify-content: center;
    position: relative;
    cursor: pointer;
    align-items: center;
}

.selectStatus_box input {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* .selectStatus_box label:before {
        content: "\f058";
        font-family: Font-Awesome-5-Pro;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
        color: #d1d1d1;
      } */

/* .selectStatus_box input:checked+label:before {
        color: #ffffff;
      } */

.selectStatus_box input:checked+label {
    background-color: #000;
    color: #ffffff;
    border-color: #000;
}

.selectStatus_box label img {
    max-height: 60px;
}

.whiteimg {
    display: none;
    margin: 0 auto;
}

.selectStatus_box input:checked+label .whiteimg {
    display: block;
}

.selectStatus_box input:checked+label .color {
    display: none;
}


.checkout_cont {
    margin: 40px 0;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #f5f5f5;
    opacity: 1;
    color: #8189b1;
}

.checkout-form textarea {
    background: #f8fbff;
    padding: 15px;
}

.checkout-form textarea,
.checkout-form input {
    font-size: 15px;
}












/* orders Listing*/

.profile_left {
    flex: 0 0 280px;
    max-width: 280px;
    /* padding-right: 5px;
    padding-left: 15px; */
}

.profile_block {
    display: flex;
    flex-wrap: wrap;
    /*gap: 30px;*/
    column-gap: 30px;

}

.profile_left .profile_left_inner:not(:last-child) {
    /*border-bottom: 10px solid #f8f8f8;*/
}

.profile_left_block {
    height: 100%;
    background-color: #fff;
}

.profile_left_inner>ul>li a svg {
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    fill: #202020;
    transition: all .5s ease;
}


.pro_contact_row a {
    font-size: 15px;
    color: #202020;
    white-space: normal;
    word-break: break-all;
}

.pro_contact_row {
    position: relative;
    padding-left: 50px;
}

.profile_left_inner>ul>li {
    padding: 11px 17px;
    position: relative;
    font-size: 15px;
}

.pro_contact_info .pro_contact_row:not(:last-child) {
    margin: 0 0 14px;
}

.profile_wall_block .editPro {
    color: #666;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
}

.products_head h3 {
    font-size: 23px;
    white-space: nowrap;
    font-weight: 600;
}

.bread-custom .breadcrumb>.breadcrumb-item.active,
.bread-custom .breadcrumb>li>a:hover {
     color: var(--secondary-color);
    font-weight: 900;
}

.bread-custom .breadcrumb>li,
.bread-custom .breadcrumb>li>a {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
}

.bread-custom ol.breadcrumb {
    background-color: transparent;
    padding: 7px 0;
    margin: 0;
}

.products_head {
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    margin: 0 0 25px;
    padding: 0 0 10px;
    display: flex;
    align-items: center;
}


/*========================= fAQORDERLISTING ===============*/

.faq-accord {
    margin-bottom: 5px;
    border-radius: 5px;
    box-shadow: 0 0 28px rgb(0 0 0 / 7%);
    -webkit-box-shadow: 0 0 28px rgb(0 0 0 / 7%);
    -moz-box-shadow: 0 0 28px rgb(0 0 0 / 7%);
    background: var(--back-ground-cards);
    /*background: linear-gradient(rgb(234, 205, 163), rgb(214, 174, 123));*/
}

.faq-accord .faqh5 {
    position: relative;
    font-size: 16px;
    /*padding-right: 0px !important;*/
    padding: 5px;
}

.arrow-chcek_list,
.arrow-collapse {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.faq-accord .arrow-collapse:after {
    content: "\f107";
    font-family: Font-Awesome-5-Pro;
    font-style: normal;
    font-weight: 400;
    border-radius: 70px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(251, 77, 25, .1);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    color: #db0302;
}

.faq-accord .arrow-collapse.collapsed:after {
    transform: translateY(-50%) rotate(180deg);
}

.arrow-chcek_list:after {
    content: "\f106";
    font-family: Font-Awesome-5-Pro;
    font-style: normal;
    font-weight: 400;
    font-size: 27px;
    text-align: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);

}

.arrow-chcek_list.collapsed:after {
    content: "\f054";
    font-size: 20px;
}

.oh-card {
    padding: 0 16px;


}



/* .faq-accord table th {
    color: #202020;
    font-weight: 600;
} */
.faq-accord table th {
    color: #878787;
    font-weight: 500;
}

.faq-accord .arrow-collapse {
    border-bottom: rgb(51 51 51 / 20%) solid 1px;

}

.faq-accord .collapse.show {
    border-top: rgb(51 51 51 / 8%) solid 1px;
}


.faq-accord table {
    margin-bottom: 0;
}

.faq-accord .arrow-collapse.collapsed {
    padding-bottom: 16px;
    border-bottom: rgb(51 51 51 / 0%) solid 1px;
}

.faq-accord {
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: #3c3a3a;
    position: relative;
    /* padding: 20px 20px 20px 15px; */
}

.oh-wall {
    background-size: contain;
    background-position: 50%;

    background-repeat: no-repeat;
    width: 90px;
    box-shadow: 0 0 11px rgb(0 0 0 / 7%);
    height: 90px;
    margin: 0 auto;

}

.proD_btn {
    text-decoration: underline;
    color: #db0302;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .3px;
}

.oh-details-text h3 {
    font-size: 16px;
    font-weight: 500;
    color: #202020;
}

.oh-details-text span {
    color: #878787;
    font-size: 14px;
}

.oh-item-delivery h4 {
    position: relative;
    color: #202020;
    font-size: 16px;
}

.oh-item-delivery p {
    margin-bottom: 0;
}

.oh-wall img {
    opacity: 0;
}

.orderMultiplelist {
    margin-bottom: 40px;
}

.faq-accord .collapsed h5 {
    border-bottom: 0;
    padding: 20px;
}

.faq-accord .collapsed .table {
    margin-bottom: 0;
}

.oh-card-wrap {
    padding: 25px 0;
}


.faq-accord .form-row>.col,
.faq-accord .form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}

.dash-menu-toggle {
    display: none;
}

.order-detailWrap .order-detaillist:last-child {
    border-bottom: 0px
}

.order-history-inner.order-detailWrap {
    box-shadow: 0 0 40px 0 rgb(69 65 78 / 8%);
    background: #fff;
}

.order-detaillist {
    border-radius: 0;
    border-bottom: rgb(51 51 51 / 5%) solid 1px;
}

.alert.custom-alert-bgW {
    color: #141619;
    background-color: #fff;
    border-color: rgb(51 51 51 / 15%);
    box-shadow: 0 0 40px 0 rgb(32 2 100 / 3%);
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 14px;
    border: rgb(51 51 51 / 8%) solid 1px;
}

.order-tracking-block {
    box-shadow: 0 0 40px 0 rgb(69 65 78 / 8%);
    background: #fff;
    margin: 30px 0;
    padding: 30px;
}

.order-tracking-block .map-block iframe {
    width: 100%;
    height: 320px;
}

.order-tracking-fields ul>li {
    color: #202020;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 27px 15px 15px;
    position: relative;
    border-bottom: rgb(51 51 51 / 10%) solid 1px;
}

.order-tracking-fields ul>li:last-child {
    border-bottom: 0;
}

.order-tracking-fields ul>li span {
    position: absolute;
    right: 0;
    text-align: right;
    font-size: 13px;
    opacity: .7;
}


.detailsh-card {
    box-shadow: 0 0 40px 0 rgb(69 65 78 / 8%);
    background: #fff;
    padding: 20px;
    margin-bottom: 10px;
}

.shopper-detail h5 {
    margin-bottom: 15px;
    font-weight: 500;
}

.shopper-detail {
    font-size: 15px;
}


/*======================= MYADDRESSPAGE =================*/
.aly-address {
    border-width: 1px;
    border-color: #dee2e6;
    box-shadow: 0 2px 1px 0 rgba(0, 0, 0, .16);
    border-style: solid;
    background-color: #fff;
    border-radius: 4px;
    width: 100%;
    height: calc(100% - 30px);
    margin: 0 0 30px;
    min-height: 170px;
}

.default_address {
    font-size: 13px;
    font-weight: 400;
    color: #565959;
    padding: 12px 20px;
    border-bottom: 1px solid #dee2e6;
    margin: 0;
}

.aly-address-content {
    padding: 25px 10px 25px 20px;
}

.default-aly-address .aly-address-content {
    padding: 15px 10px 25px 20px;
}

.aly-address-content h4 {
    font-size: 15px;
    line-height: 19px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px;
}

.aly-address-content span {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #333;
    display: block;
}

.aly-address-action {
    padding: 0 0 20px 20px;
}

.aly-address-action a {
    font-size: 14px;
    color: #e80100;
}

.aly-address-action a:hover {
    color: #2da46e;
}

.add-address-card {
    color: #727272;
    font-size: 18px;
    font-weight: 600;
    background-color: #fff;
    border-style: dashed;
    border-width: 2px;
    border-color: #dee2e6;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    height: calc(100% - 30px);
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 170px;
}

.add-address-card i {
    display: block;
    font-size: 30px;
    margin: 0 0 10px;
    color: #999;
}



.address_modal .checkout_form .form-group label {
    font-size: 14px;
    margin: 0 0 4px;
    color: #727272;
}

.address_modal .map-block iframe {
    width: 100%;
    height: 300px;
}

.address_modal .map-block {
    margin-bottom: 30px;
}

.address_modal .checkout_form .custom-select {
    background-color: #f5f5f5;
    border: 0;
    border-radius: 10px;
    min-height: 50px;
    outline: 0;
    box-shadow: none;
    padding: 10px 25px;
    width: 100%;
    color: #333333;
}


.close-btn_modal i {
    color: #fff;
}

.close-btn_modal {
    border: 0;
    color: #db0302;
    background: #db0302;
    width: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-size: 19px;
    height: 30px;
}
































.progress-track #progressbar {
    overflow: hidden;
    color: rgb(252, 103, 49);
    padding-left: 0px;
    margin-bottom: 0;
}

.progress-track #progressbar li {
    list-style-type: none;
    font-size: x-small;
    width: 20%;
    font-size: 13px;
    float: left;
    position: relative;
    text-align: center;
    font-weight: 400;
    color: rgb(160, 159, 159)
}

.progress-track #progressbar li:first-child {
    text-align: left;
}

.progress-track #progressbar li:last-child {
    text-align: right;
}

.progress-track #progressbar #step1:before {
    content: "";
    color: rgb(252, 103, 49);
    width: 9px;
    height: 9px;
    margin-left: 0px !important
}

.progress-track #progressbar #step2:before {
    content: "";
    color: #fff;
    width: 9px;
    height: 9px;

}

.progress-track #progressbar #step3:before {
    content: "";
    color: #fff;
    width: 9px;
    height: 9px;

}

/* #progressbar #step5:before {
    content: "";
    color: #fff;
    width: 5px;
    height: 5px;
    margin-left: 32%
} */

.progress-track #progressbar #step5:before {
    content: "";
    color: #fff;
    width: 9px;
    height: 9px;
    margin-right: 0
}

.progress-track #progressbar #step4:before {
    content: "";
    color: #fff;
    width: 9px;
    height: 9px;
}

.progress-track #progressbar li:before {
    line-height: 29px;
    display: block;
    font-size: 13px;
    background: #ddd;
    border-radius: 50%;
    margin: auto;
    z-index: -1;
    margin-bottom: 1vh
}

.progress-track #progressbar li:after {
    content: '';
    height: 3px;
    background: #ddd;
    position: absolute;
    left: 0%;
    right: 0%;
    margin-bottom: 2vh;
    top: 2px;
    z-index: 1
}

.progress-track {
    padding: 0 40px;
    padding-bottom: 20px;
}

.progress-track #progressbar li:nth-child(3):after {
    margin-right: auto
}

.progress-track #progressbar li:nth-child(2):after {
    margin-right: auto
}

.progress-track #progressbar li:nth-child(1):after {
    margin: auto
}

.progress-track #progressbar li:nth-child(4):after {
    float: left;
    width: 68%
}

.progress-track #progressbar li:nth-child(5):after {
    margin-left: auto;
    width: 132%
}

.progress-track #progressbar li.active {
    color: black
}

.progress-track #progressbar li.active:before,
.progress-track #progressbar li.active:after {
    background: #e80100;
}

.item-status-box i {
    font-size: 11px;
}



.product-itemBlock {
    height: 100%;
    display: block;
}

.product-itemBlock .fruit_card {
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

.product-itemBlock .fruid_card_content {
    padding-bottom: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-itemBlock .fruit_price_group {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 15px;
    margin-top: auto;
}

.oh-item-cost {
    font-size: 14px;
}

.cartHeader.Usercartheader {
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.cartHeader.Usercartheader .products_head {
    border-bottom: 0;
}


.selectbox:after {
    content: "\f35f";
    font-family: "Ionicons";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 30px;
    text-align: center;
    color: #333;
    border-radius: 50%;
    font-size: 20px;
    pointer-events: none;
}

.selectbox select {
    height: 46px;
    border: 1px solid #f5f5f5;
    border-radius: 12px;
    width: 100%;
    color: #333;
    padding: 10px 50px 10px 15px;
    background: #f5f5f5;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.selectbox {
    position: relative;
}

.selectbox select:focus-visible {
    outline: 0px
}

.vendor_accountWrap textarea {
    width: 100%;
    border: 0;
    background: #f5f5f5;
    border: 0px;
    border-radius: 12px;
}




.accountinfoBlock {
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
     /* background: linear-gradient(rgb(234, 205, 163), rgb(214, 174, 123)); */
     background: var(--back-ground-cards);
    box-shadow: 0 0 40px 0 rgb(69 65 78 / 8%);
    /*background: #80e4ff;*/
    color:#141e30;
        /*border: 2px solid #80e4ff;*/
        font-weight:900;

}


.accountinfoBlockgames {
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
        color: #80e4ff;
    font-weight: 900;

}


.product-listing form {
    height: 100%;
}



.selectbox .SumoSelect {
    display: block;
    width: 100%;

}

.selectbox .SumoSelect>.CaptionCont {
    background-color: #f5f5f5;
    border: 0;
    border-radius: 10px;
    min-height: 50px;
    outline: 0;
    line-height: 30px;
    box-shadow: none;
    padding: 10px 25px;
    color: #333333;
    resize: none;
}

.selectbox .SumoSelect>.CaptionCont>label {
    margin-bottom: 0;
}

.selectbox .SumoSelect.open .search-txt {
    background-color: #f5f5f5;
    border: 0;
    border-radius: 10px;
    min-height: 50px;
    outline: 0;
    line-height: 30px;
    box-shadow: none;
    padding: 10px 25px;
    color: #333333;
    resize: none;
}

.selectbox .SumoSelect.open>.optWrapper {
    top: 50px;

}



.selectbox .SumoSelect>.CaptionCont>label>i {
    display: none;
}



/*============================= Terms-condition ==============================*/
.tcModal .condition_block {
    width: 100%;
    padding: 0 20px;
}

.tcModal .rule-point ul {
    padding-left: 25px !important;
}

.tcModal .rule-point li {
    margin-bottom: 13px;
    line-height: 26px;
    color: #333;
    font-size: 16px;
}

.tcModal .rule-point ul {
    padding: 0;
    margin: 0;
}

.condition_block p {
    font-size: 15px;
    color: #202020;
    line-height: 27px;
}



.modalscroll .modal-body {
    overflow-y: auto;
    height: 600px;
}

/*==================== LOCATIOM-MODAL ====================*/

.location-body {
    display: flex;
    flex-wrap: wrap;
}

.location-aside {
    flex: 0 1 300px;
    padding: 40px 12px 30px;
    background: rgb(231, 1, 0);
    background: linear-gradient(332deg, rgba(231, 1, 0, 1) 0%, rgba(231, 0, 65, 1) 100%);
    background-image: url(../../img/frontend/location-img.jpg);
    background-repeat: no-repeat;
    border-radius: 0px;
    height: 100%;
    background-position: left;
    background-size: cover;
}

.location-content {
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.location-logo {
    max-width: 120px;
    margin: 0 auto 30px;
    text-align: center;
}

.location-aside-text {
    margin: 0 0 130px;
    text-align: center;
}

.location-wall {
    max-width: 256px;
    margin: 0 auto;
}

.location-content-inner {
    margin: 0 0 30px;
}

.location-input {
    margin: 0 0 0px;
    position: relative;
}

.location_modal .modal-content {
    border-radius: 10px;
    overflow: hidden;
    border: 0;
}

.location-content-inner h3 {
    font-size: 21px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
}

.location-content-inner h4 {
    font-size: 16px;
    font-weight: 500;
    color: #e80100;
    margin: 0 0 20px;
}

.pac-container {
    z-index: 100001;
}


.location_modal.modal-dialog {
    max-width: 750px;
}

.location-input input {
    padding-right: 50px;
}

.notfound {
    text-align: center;
    color: #e70109;
    font-weight: 500;
    margin: 30px 0;
    font-size: 21px;
}


.checkout_cont .aly-address-content label {
    background: #eeeff4;
    padding: 3px 12px;
    border-radius: 70px;
    font-weight: 500;
    font-size: 11px;
    margin: 0px 0 0 4px;
    text-transform: capitalize;
    color: #333;
}

.addressNum {
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: #333;
    padding-top: 8px;
    display: block;
}

.checkout_cont .aly-address-content h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout_cont .default-aly-address .aly-address-content {
    padding: 15px 15px 5px 40px;
    position: relative;
}


.defaultAdd {
    font-weight: 600;
    color: #42bf74;
    font-size: 13px;
}

.setlectcheckoutinput {
    position: absolute;
    top: 15px;
    left: 20px;
}




.checkout_cont .aly-address-action {
    padding: 10px 10px 10px 40px;
}



/* =============================== custom-radio ======================*/
.custom-radio label {
    cursor: pointer;
    position: relative;
    font-size: 14px;
}

.custom-radio input {
    content: "";
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 0;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    appearance: none;
    border: 1px solid #c5c9d6;
    left: -10px;
    transition: border-color 400ms ease;
}


.custom-radio input[type="radio"]::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #c5c9d6;
    transform: translateY(-50%);
    border: 2px solid #c5c9d6;
    border-radius: 50%;
    top: 50%;
    right: 0;
    margin: auto;
    left: 0px;
    transition: transform 400ms ease;
}

.custom-radio input:checked {
    border: 1px solid #e80100;
}

.custom-radio input[type="radio"]:checked::after {
    background-color: #e80100;

    border: 2px solid #e80100;
}

.custom-radio input[type="radio"]:checked {
    background-color: #fff;
}


.SumoSelect>.optWrapper>.options li label {
    margin-bottom: 0;
    text-transform: capitalize;
}



.vendor_accountWrap .checkbox-style-2 input {
    margin: 0;
}

.vendor_accountWrap .checkbox-style-2 {
    display: flex;
    align-items: center;
    gap: 10px;
}


.counter .count-text:focus-visible {
    outline: 0
}


.list-Product .pro_detailitem select {
    margin-bottom: 10px;
}


.pro_detailitem {
    justify-content: space-between;
}


.address_nav {
    max-width: 250px;
    margin-left: 20px;
}

.address_nav .loaction_hero_icon {
    font-size: 21px;
    color: rgba(32, 32, 32, .5);
    position: absolute;
    cursor: pointer;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: inline-block;

}

.address_nav a {
    color: #202020;
}

.address_nav a:hover {
    color: #202020
}

.address_nav input {
    box-shadow: 0 0 18px -4px rgb(0 0 0 / 10%) !important;
}




/* ===========================notifaction============================= */
.cartCount {
    position: absolute;
    right: -9px;
    top: -8px;
    min-width: 21px;
    min-height: 21px;
    padding: 0 2px;
    background-color: #e80100;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}


.noti_dropdown>a svg {
    width: 21px;
    height: 21px;
    color: #818285;
}

.noti_dropdown>a.dropdown-toggle::after {
    display: none;
}


.noti_dropdown .dropdown-menu {
    width: 300px !important;
}

.notification-item-list {
    max-height: 230px;
    overflow-y: auto;
}

.notification-item-list .notify-item {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #ecedef;
}

.notification-item-list .notify-item.active,
.notification-item-list .notify-item:hover {
    background-color: #f5f6f7;
    color: #2a3142;
}

.notification-item-list .notify-item p {
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;

    color: #212529;
}

.notification-item-list .notify-item span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 13px;
    font-weight: 400;

}

.dropdown-item-text {
    display: block;
    padding: 0.25rem 1.5rem;
    color: #212529;
    font-weight: 700;

}


.noti_dropdown .dropdown-menu {
    width: 300px;
}

.vl_noti {
    display: block;
    width: 100%;
    padding: 13px;
    text-align: center;
    color: #172248;
    font-weight: 500;
}


/*========================= notification====================== */
.notification_box {
    border-radius: 10px;
    padding: 0;
    background-color: #fff;
    border: 1px solid #e0e9e3;
}


.notificationBox_list>li:not(:last-child) {
    border-bottom: 1px solid #e0e9e3;
}

.notiwall {
    background-color: #e1ffc59c;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    -ms-flex: 0 0 45px;
    border-radius: 6px;
    text-align: center;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center
}

.notiwall svg {
    fill: #88d761;
    color: #88d761;
    width: 21px;
    height: 21px;
}

.notificationBox_list>li>a {
    display: flex;
    /* align-items: center; */
    flex-wrap: wrap;
    padding: 15px;
}

.notificationBox_list>li>a:hover {
    background-color: #f7f7f7;
}

.notidesc span {
    display: block;
    color: #afafaf;
    font-weight: 500;
}

.notidesc {
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #3c3c3c;
    margin: 0;
    flex: 1;
    -ms-flex: 1;
    padding-left: 25px;
    line-height: 21px;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.notificationWrap {
    margin: 40px 0;
}


.wishlist_icon svg {
    width: 24px;
    height: 24px;
}


.wishlist_icon {
    position: relative;
}

.wishlist-drop .wishlist-items {

    position: relative;
}

.wishlist-drop .wishlist-items .orderWall {
    position: absolute;
    max-width: 50px;
    top: 50%;
    transform: translateY(-50%);
}


.wishlist-drop .wishlist-items p {
    padding-left: 70px;
}


.wishlist_qty span {
    display: inline-block;
}

.wishlist-drop .wishlist-items .text {
    padding-left: 70px;
    font-weight: 600;
    font-size: 15px;
    font-weight: 500;
    color: #212529;
}

.wishlist_dblock span {
    display: inline-block !important;
    padding-right: 2px;
}

.wishlist_icon {
    right: 20px;
    font-size: 22px;
    color: #e80100;
    z-index: 9;
    top: 10px;
    position: absolute;
}

.wishlist_icon.wishlist_selected i {
    font-weight: 700;
}

.orderlist_faq .faq-accord table th {
    width: calc(100% / 5);
}



.wishlistP_table .opName p {
    font-size: 14px;
    margin: 0;
    color: #737373;
    font-weight: 500;
}

.wishlistP_table .table .qty {
    display: inline-block;
    border: rgb(51 51 51 / 40%) solid 1px;
    padding: 4px 11px;
}


.cart-icon i {
    color: #a8a8a8;
    font-size: 18px;
}






/*=================================== transactionsPage =================================*/


.transactions_table table th {
    text-align: left;
    border-bottom: 0;
    font-weight: 600;
    font-size: 17px;
}

.transactions_table table th,
table td {
    padding: 20px 20px;
    white-space: nowrap;
}

table.fold-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.transactions_table table.fold-table>tbody>tr.view td,
table.fold-table>tbody>tr.view th {
    cursor: pointer;
}


table.fold-table>tbody>tr.fold.open {
    display: table-row;
}

.fold-content {
    padding: 0.5em;
}

.fold-content h3 {
    margin-top: 0;
}

.fold-content>table {
    border: 2px solid #ccc;
}

.fold-content>table>tbody tr:nth-child(even) {
    background: #eee;
}

.transactions_table table tr {
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
}

.transactions_table table thead tr {
    box-shadow: none
}

.header-table {
    font-weight: 500;
}

.status_label {
    color: #fff;
    display: inline;
    border-radius: 70px;
    padding: 9px 20px;
}


.transactions_table table tr:nth-child(odd) {
    box-shadow: 0 6px 24px 0 rgb(69 65 78 / 8%);
    position: relative;
}

.transactions_table table tr:nth-child(odd):after {
    content: "\f107";
    font-family: Font-Awesome-5-Pro;
    font-style: normal;
    font-weight: 400;
    border-radius: 70px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(251, 77, 25, .1);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    color: #db0302;
}

.transactions_table table tr.collapsed:nth-child(odd):after {
    transform: translateY(-50%) rotate(180deg);
}

.transactions_table table tr:nth-child(even) {
    box-shadow: 0 18px 24px 0 rgb(69 65 78 / 8%);
    position: relative;
    top: -15px;
}

.transactions_table table thead tr {
    box-shadow: none !important;
}

.transactions_table table thead tr:after {
    display: none;
}

.bg-light-success {
    background-color: #87c367;
    color: #fff;
}

.heading-transaction {
    font-weight: 600;
    font-size: 16px;
    color: #db0302;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.transaction_option label {
    margin-bottom: 0;
    text-transform: capitalize;
}

.transaction_option .value-block {
    display: inline-block;
    margin-right: 30px;
}

.transaction_option .value-block .value {
    font-size: 17px;
    font-weight: 500;
    color: #222;
}

.transactions_table table tr:nth-child(even) td {
    padding-top: 0;
    padding-bottom: 0;
}

.transaction_block:last-child {
    border-bottom: 0;
}

.transaction_block {
    padding: 18px 0;
    border-bottom: rgb(51 51 51 / 10%) solid 1px;
}

.bg-light-danger {
    background-color: #ec2027;
}

.transaction_block:first-child {
    padding-top: 0;
}

/* Rating CSS */
#full-stars-example .rating-group {
    display: inline-flex;
}

#full-stars-example .rating__icon {
    pointer-events: none;
}

#full-stars-example .rating__input {
    position: absolute !important;
    left: -9999px !important;
}

#full-stars-example .rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 2rem;
}

#full-stars-example .rating__icon--star {
    color: #ffc107;
}

#full-stars-example .rating__icon--none {
    color: #eee;
}

#full-stars-example .rating__input--none:checked+.rating__label .rating__icon--none {
    color: red;
}

#full-stars-example .rating__input:checked~.rating__label .rating__icon--star {
    color: #ddd;
}

#full-stars-example .rating-group:hover .rating__label .rating__icon--star {
    color: #ffc107;
}

#full-stars-example .rating__input:hover~.rating__label .rating__icon--star {
    color: #ddd;
}
.faq-accord table tr td .btn-style-2 {
    font-size: 14px;
    padding: 10px 20px;
}

.faqh5 .table-responsive {
    padding: 0 0 11px;
}

.open-battles1 {
    padding: 5px;
     margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 0 40px 0 rgb(69 65 78 / 8%);
    background: #f0ffe3;
    
    font-size: 12px;
    font-style: normal;
    font-family: none;
    
}

hr { margin:0px 0px 0px 0px; }


.play-btn-style-2 {
    display: inline-block;
    border: 0;
    box-shadow: none;
    border-color: red;
    border-style: solid;
    text-transform: uppercase;
    outline: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 5px 15px;
    background: #db0302;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}


.play-btn-style-3 {
    /* display: inline-block; */
    border: 0;
    box-shadow: none;
    text-transform: uppercase;
    outline: 0;
    width:100%;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 10px;
    color: var(--secondary-color);
    background: var(--background-color-body);
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.play-btn-style-3:hover {
    background: var(--back-ground-cards) !important;
    color: var(--primary-color);
    border:var(--border-2px-dark);
}




/*.open-battles-games {*/
/*    padding: 5px;*/
/*    border-color: #fff;*/
/*    border-style: solid;*/
/*    margin-bottom: 15px;*/
/*    margin-top: 10px;*/
/*    border-radius: 6px;*/
/*    box-shadow: 0 0 40px 0 rgb(69 65 78 / 8%);*/
/*    background: #80e4ff;*/
/*        color: #000;*/
/*    font-weight: 900;*/
/*    font-size: 14px;*/
/*    font-style: normal;*/
    
/*        margin-left: 0px;*/
/*        margin-right:0px;*/
    
/*}*/

.open-battles-games {
padding: 15px;
    border-color: #F3F9A7;
    /*border-style: solid;*/
    margin-bottom: 15px;
    margin-top: 10px;
    border-radius: 6px;
    box-shadow: 0 0 40px 0 rgb(69 65 78 / 8%);
    
        /*background: linear-gradient(to bottom, #eacda3, #d6ae7b); */
        
    background: var(--back-ground-cards);
    color: var(--primary-color);
    font-weight: 900;
    font-size: 18px;
    font-style: normal;
    margin-left: 0px;
    margin-right: 0px;


}


.homeinfobox {
    padding: 5px;
    border-color: red;
    border-style: solid;
    margin-bottom: 5px;
    border-radius: 5px;
    box-shadow: 0 0 40px 0 rgb(69 65 78 / 8%);
   
    font-size: 14px;
    font-style: normal;
    font-family: none;
    
}


.square-box{
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #4679BD;
}
.square-box:before{
    content: "";
    display: block;
    padding-top: 100%;
}
.square-content{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}
.square-content div {
   display: table;
   width: 100%;
   height: 100%;
}
.square-content span {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: white;
        vertical-align: middle;
}

.header-main-sec .navbar-nav{display:none;}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.imgblinking {
    -webkit-animation: blink 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation: blink 1s;
    -moz-animation-iteration-count: infinite;
    -o-animation: blink 1s;
    -o-animation-iteration-count: infinite;
}

.fixed-icon-whatsapp{
    position: fixed;
    left: 15px;
    bottom: 10px;
    height: 60px;
    /*background-color:white;*/
    width: 60px;
    z-index: 5000000;
    border-radius: 5px 0px 1px 5px;
    /*box-shadow: 1px 1px 11px 1px #a59a9a;*/
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
   /* background: linear-gradient(rgb(234, 205, 163), rgb(214, 174, 123)); */
    background: var( --back-ground-cards);
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}
.bg-warning
{
    background-color: yellow !important;
    font-weight: 900 !important;
}


        .swal2-container.swal2-top-end>.swal2-popup, .swal2-container.swal2-top-right>.swal2-popup ,.swal2-container.swal2-center>.swal2-popup
        
            {
    width: 90% !important;
    border: var(--border-2px-solid);
    color: var(--secondary-color);
    /* background: var(--bac); */
    background: var(--primary-color);
}
         
        i {
          margin-right: 0px;
        }
        @keyframes marquee {
  0% {
    margin-left: 100%;
    transform: translateX(0%);
  }
  100% {
    margin-left: 0;
    transform: translateX(-100%);
  }
}

.section_notification {
  overflow: hidden;

  .marquee123 {
    animation: marquee 25s linear infinite;
    display: inline-block;
    white-space: nowrap;

    &:hover {
      animation-play-state: paused;
    }
  }
}

.text-styling-notification {
  
}

.empty-state {
      text-align: center;
     
      padding: 25px;
      border-radius: 20px;
      /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);*/
      max-width: 100%;
      width:100%;
    }
    .empty-state img {
      width: 150px;
      margin-bottom: 20px;
    }
    .empty-state h2 {
      font-size: 22px;
      color: #333;
    }


/* Force mobile styles to apply on larger screens */
