/*default*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F7F7F7;
}

html {
    height: 100%;
}

.selector-for-some-widget {
    box-sizing: content-box;
}

.card {
    border-radius: 15px;
}

.card-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.text-orange {
    color: #F05326 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.text-black {
    color: #000000;
}

.btn.btn-orange {
    box-shadow: 0px 5px 10px #F28E2B4d;
    background-image: linear-gradient(to right, #FCAF46, #F47531);
    color: #fff;
    font-size: 14px;
}

.login-box {
    width: 500px;
    margin: 0 auto;
    max-width: 100%;
}

.font-24 {
    font-size: 24px;
}

.font-14 {
    font-size: 14px !important;
}

.text-underline {
    text-decoration: underline;
}

a {
    color: #004EC2;
}

.login-box .social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    border: 1px solid #E8E8E8;
    justify-content: center;
    align-items: center;
    display: flex;
}

.login-box-inner {
    margin: 0 15px;
}

.global-container {
    min-height: 100vh;
    background: #F7F7F7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-body-inner {
    padding: 30px;
}


/*Form control css*/
.form-control.search-icon {
    background: url(../images/search.svg) no-repeat 10px center;
    background-size: 16px;
    padding-left: 35px;
}

.form-control.code-icon {
    background: url(../images/code.svg) no-repeat 10px center;
    background-size: 16px;
    padding-left: 35px;
}

.form-control.phone-icon {
    background: url(../images/smartphone.svg) no-repeat 10px center;
    background-size: 12px;
    padding-left: 35px;
}

.form-control.user-icon {
    background: url(../images/user.svg) no-repeat 10px center;
    background-size: 14px;
    padding-left: 35px;
}

.form-control.email-icon {
    background: url(../images/mail.svg) no-repeat 10px center;
    background-size: 16px;
    padding-left: 35px;
}

.form-control.lock-icon {
    background: url('../images/lock.svg') no-repeat 10px center;
    background-size: 14px;
    padding-left: 35px;
}

.form-control {
    border: 1px solid #E8E8E8;
    height: 39px;
    border-radius: 4px;
    font-size: 14px;
}

/*placeholder css*/
.form-control::-webkit-input-placeholder {
    /* Edge */
    color: #969696;
    font-size: 14px;
}

.form-control:-ms-input-placeholder {
    /* Internet Explorer */
    color: #969696;
    font-size: 14px;
}

.form-control::placeholder {
    color: #969696;
    font-size: 14px;
}

.form-group {
    position: relative;
    width: 100%;
}

.toggle {
    background: none;
    border: none;
    color: #F57833;
    font-weight: 600;
    position: absolute;
    right: 0.8rem;
    top: 0.5rem;
    z-index: 9;
}

.form-group {
    position: relative;
    width: 100%;
}

input[type="password"]::-ms-reveal {
    display: none;
}

.fa {
    font-size: 2rem;
}

/* devider type css*/
.login-or {
    position: relative;
    font-size: 18px;
    color: #aaa;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.hr-or {
    background-color: #E9E9E9;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.span-or {
    display: block;
    position: absolute;
    left: 50%;
    top: 6px;
    margin-left: -25px;
    background-color: #fff;
    width: 50px;
    text-align: center;
    letter-spacing: 0.24px;
    color: #000000;
}

.btn {
    height: 39px;
}

.text-light-orange {
    color: #F28E2B !important;
}

/*custom checkbox*/
.new .form-group {
    display: block;
    margin-bottom: 15px;
}

.new .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.new .form-group label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    color: #969696;
}

.new .form-group label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #F28E2B;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 4px;
}

.new .form-group input:checked+label:after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.new .form-group input:checked+label:before {
    background: #F28E2B;
}

.text-p {
    color: #969696;
    font-size: 14px;
}

/*otp box css*/
.login .otp input {
    width: 76px;
    padding: 5px;
    margin: 0 6px;
    text-align: center;
    font-size: 26px;
    border-radius: 5px;
    background: transparent;
    outline: none;
    border-bottom: 2px solid #f6f6f6;
    border: 1px solid #E8E8E8;
    margin-bottom: 25px;
}

.login .otp fieldset,
.otp input {
    border: none;
    text-align: center;
}

.login input.important {
    border-bottom: 2px solid #f47a33;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.expire-code p {
    text-align: center;
    color: #969696;
    font-size: 14px;
}


/*custom checkbox with image css*/
.image-checkbox {
    margin-top: 25px;
}

.image-checkbox ul {
    list-style-type: none;
}

.image-checkbox li {
    display: inline-block;
}

.image-checkbox input[type="checkbox"][id^="myCheckbox"] {
    display: none;
}

.image-checkbox label {
    border: 1px solid #EAE9E9;
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
    box-shadow: 0px 10px 15px #0000000d;
    border-radius: 4px;
    margin: 0 10px 0 0;
}

.image-checkbox .third-li label {
    margin-right: 0;
}

.image-checkbox .last-li label {
    margin-right: 0;
}

.image-checkbox li {
    width: 133px;
    display: inline-block;
    height: 122px;
    object-fit: cover;
    margin-bottom: 20px;
}

.image-checkbox label:before {
    background-color: white;
    color: #fff;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid #f47732;
    position: absolute;
    top: 6px;
    left: auto;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 19px;
    transition-duration: 0.4s;
    transform: scale(0);
    right: 10px;
}

.image-checkbox label img {
    height: 100px;
    width: 100px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    margin: 0 auto;
    text-align: center;
    display: block;
}

:checked+label {
    border-color: #F28E2B;
}

:checked+label:before {
    content: "✓";
    background-color: #f47631;
    transform: scale(1);
}

:checked+label img {
    transform: scale(0.9);
    /* box-shadow: 0 0 5px #333; */
    z-index: -1;
}

.btn-orange-outline:hover {
    color: #f47832;
}

.btn-orange-outline {
    border: 1px solid #F28E2B;
    color: #F28E2B;
    font-weight: 600;
}

.button-div {
    display: flex;
    align-items: center;
}

.w-190 {
    width: 190px;
}



/*banner css*/
.main {
    padding: 30px 0;
}

.banner {
    position: relative;
    /* border: 1px solid #e5e5e5; */
    /* box-shadow: 0px 10px 15px #0000000d; */
}


.banner-content {
    position: absolute;
    top: 45px;
    left: 50px;
    width: 60%;
}

.banner-content h1 {
    font-size: 37px;
    line-height: 41px;
    color: #2D2D2D;
    font-weight: 600;
    margin-bottom: 15px;
}

.banner-content h1 span {
    display: block;
}

.banner-content p {
    font-size: 14px;
    line-height: 20px;
    color: #2D2D2D;
    font-weight: 400;
    margin-bottom: 25px;
}

.banner-content .btn.btn-block {
    width: 100px;
}

@media(max-width: 1279px) {
    .banner-content h1 {
        font-size: 65px;
        line-height: 95px;
    }
}

@media(max-width: 1200px) {
    .banner-content {
        top: 25px;
        left: 40px;
        width: 64%;
    }

    .banner-content h1 {
        font-size: 60px;
        line-height: 80px;
    }

    .banner-content p {
        margin-bottom: 25px;
    }
}

@media(max-width: 991px) {
    .banner-content {
        top: 20px;
        left: 25px;
        width: 60%;
    }

    .banner-content h1 {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 15px;
    }
}

@media(max-width: 767px) {
    .banner img {
        display: none;
    }

    .banner {
        background: url(../images/banner01.png) no-repeat;
        background-position: center;
        border-radius: 5px;
    }

    .banner-content {
        width: 100%;
        position: static;
        padding: 20px 15px 25px;
    }

    .banner-content h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .banner-content p {
        padding-right: 30px;
    }
}

@media(max-width: 480px) {
    .banner-content p {
        padding-right: 0;
    }
}

/*Footer css*/
ul {
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
}

footer {
    background-color: #ffffff;

}

footer h6 {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 0;
}

.footer-links li {
    padding-bottom: 12px;
}

.footer-links li:last-child {
    padding-bottom: 0;
}

.footer-links li a {
    font-size: 14px;
    line-height: 18px;
    color: #fff !important;
    font-weight: 400;
    padding-left: 0;
}

.footer-links li a:hover,

.footer-links li a:hover,
.footer-links li a:focus {
    color: #f28e2b !important;
}

section#footer img {
    margin-bottom: 20px;
}

section#footer {
    padding-bottom: 0 !important;
}

p.footer-copyright {
    font-size: 12px;
    line-height: 16px;
    color: #fff !important;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid #363636;
    margin: 35px 0 0;
    padding: 20px 0;
}

.app-btn a {
    margin-bottom: 15px;
    display: block;
}

.app-btn a:last-child {
    margin-bottom: 0;
}

@media(max-width: 991px) {
    footer {
        padding-top: 30px;
    }

    p.footer-copyright {
        margin: 25px 0 0;
    }

    footer h6 {
        font-size: 18px;
        line-height: 22px;
    }

    .footer-links li {
        padding-bottom: 10px;
    }

    .footer-links li a {
        font-size: 13px;
        line-height: 17px;
    }
}

@media(max-width: 767px) {
    footer {
        padding-top: 25px;
    }

    footer h6 {
        margin-bottom: 10px;
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .footer-links li {
        padding-bottom: 5px;
    }

    .app-btn a {
        margin-bottom: 10px;
    }
}

/*responsive css till ipad devices*/
@media screen and (max-width: 767px) {
    .login .otp input {
        width: 55px;
    }
}

@media screen and (max-width: 640px) {
    .image-checkbox li {
        width: 159px !important;
    }

    .w-190 {
        width: 145px;
    }
}


/*inner page title css*/
.slider-height2 {
    min-height: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.main-inner {
    padding: 0;
}

.hero-cap h2 {
    color: #fff;
}

.font-16 {
    font-size: 16px !important;
}

.font-20 {
    font-size: 20px;
}


.common-title-1 {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.trending-offers-outer {
    position: relative;
    padding: 15px 0px;
    background-color: #fff;
    margin-bottom: 30px;
}

.trending-offers-product-img {
    width: 80%;
    margin: 0 auto;
}

.trending-offers-product-img img {
    width: 200px;
    height: 150px !important;

    margin: 0 auto;
    text-align: center;
    display: block;
    object-fit: contain;
}

.bookmark-products-icon {
    position: absolute;
    top: 15px;
    left: 15px;
}

.bookmark-products-icon a {
    display: inline-block;
}

.bookmark-products-icon a img {
    max-width: 20px;
}

.share-products-icon {
    position: absolute;
    top: 15px;
    right: 15px;
}

.share-products-icon a {
    display: inline-block;
}

.share-products-icon a img {
    max-width: 20px;
}

.trending-offers-tag-body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: 22px;
}

.trending-offers-tag {
    width: 50%;
    position: relative;
    background-image: url('../images/tag-bg.svg');
    background-repeat: no-repeat;
    background-size: 80px 24px;
}

.trending-offers-tag h3 {
    color: #fff;
    font-size: 10px;
    margin-bottom: 0px;
    padding: 5px 15px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
}

.trending-offers-days {
    padding: 0 !important;
    width: 50%;
}

.trending-offers-days p {
    margin-bottom: 0px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
    text-align: right;
}

.trending-offers-body {
    padding: 11px 15px 0px;
}


.filter_data .trending-offers-body h4 {
    font-weight: 500;
    color: #000000;
    font-size: 14px;
    width: 240px;
    text-overflow: ellipsis;
    margin-bottom: 5px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 20px;
    height: 40px;
}

.trending-offers-price {
    width: 70%;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

.trending-offers-price p span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.5;
}

.trending-offers-price img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

/* --Home page Trending Offers section end--- */
/*---Today Section start ---*/
.home-today-inner {

    margin-bottom: 30px;
}

.home-today-inner a img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    border-radius: 4px;
}

/*---Today Section end ---*/
/*---Main Trending Offers page start--- */
.trending-offers-main-page {
    padding: 30px 0px 0px;
}

.trending-checkbox-style {
    height: 32px;
    width: 32px;
    background-color: #fff;
    border-radius: 4px;
    border: 2px solid #F6F6F6;
    background-image: url('../images/asos-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.trending-checkbox input[type="checkbox"]:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

.trending-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
}

.trending-checkbox-style:checked {
    border-color: #F28E2B;
}

.trending-checkbox-style:before {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    background-image: url('../images/check-icon.svg');
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    right: -5px;
    top: -5px;
    display: none;
}

.trending-checkbox-style:checked:before {
    display: block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/*---Main Trending Offers page end--- */
/* ---Store page start--- */
.main-store-page {
    padding: 30px 0px 15px;
}

.store-brand-inner {
    background-color: #fff;
    position: relative;
}

.store-brand-logo {
    display: block;
    width: 100%;
}

.store-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heart-btn {
    position: absolute;
    top: 11px;
    right: 11px;
}

.heart-btn:hover {
    cursor: pointer;
}

.heart-fill-color #heart_1_2 {
    fill: #F28E2B;
    opacity: 1;
    stroke: #F28E2B;
}

/* ---Store page end---- */
/* ----Trending Offers inner page start---- */
.trending-inner-detail-main {
    padding: 30px 0px;
}

.trending-inner-detail-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.trending-breadcrumb .breadcrumb {
    background-color: transparent;
    padding: 0px;
    margin-bottom: 20px;
    border-radius: 0px;
    align-items: center;
}

.trending-breadcrumb .breadcrumb .breadcrumb-item a {
    color: #2D2D2D;
    font-size: 12px;
    font-weight: 500;
}

.trending-breadcrumb .breadcrumb .breadcrumb-item.active {
    color: rgba(45, 45, 45, 0.5);
    font-size: 12px;
    font-weight: 500;
}

.trending-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #2D2D2D;
    font-size: 12px;
    font-weight: 500;
}

.trending-inner-detail {
    border-radius: 10px;
    background-color: #fff;
    padding: 30px 30px 15px;
}

.trending-inner-detail-img {
    width: 100%;
    height: 100%;
}

.trending-inner-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trending-inner-product-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.trending-inner-product-detail-1 {
    width: 75%;
}

.trending-inner-product-detail-1 h3 {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
}

.trending-inner-product-detail-2 {
    width: 25%;
    text-align: right;
}

.trending-days {
    display: inline-block;
    border: 1px solid #FBBE96;
    border-radius: 14px;
    background-color: #FFE9DB;
    padding: 3px 12px;
    color: #000000;
    font-size: 12px;
    font-weight: 400;
}

.trending-inner-product-body {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
}

.trending-inner-product-body p {
    opacity: 0.5;
    margin-bottom: 10px;
}

.trending-off span {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    padding: 4px 7px;
    background-color: #004EC2;
    border-radius: 3px;
    margin-bottom: 20px;
}

.trending-inner-product-body h4 {
    color: #2D2D2D;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.trending-inner-product-body h4 del {
    opacity: 0.5;
    font-weight: 400;
}

.btn-long-orange {
    width: 250px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0px 5px 10px #F28E2B4d;
    background-image: linear-gradient(to right, #FCAF46, #F47531);
    color: #fff;
}

.btn-long-orange:hover {
    color: #fff;
}

.trending-inner-product-footer a {
    margin-right: 20px;
    margin-top: 8px;
}

.orange-border-btn {
    border: 1px solid #F28E2B;
    border-radius: 4px;
}

.btn-long-orange i {
    margin-right: 8px;
}

.similar-offers-main {
    padding: 0px 0px 30px;
}

.similar-offers-inner {
    position: relative;
    border-radius: 10px;
    height: 100%;
}

.similar-offers-inner-img {
    width: 100%;
    height: 100%;
}

.similar-offers-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.similar-offers-inner-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent linear-gradient(180deg, #000000 0%, #0000004D 37%, #00000000 100%);
    border-radius: 10px;
    padding: 15px 12px
}

.similar-offers-inner-overlay h3 {
    color: #E29F01;
    font-size: 58px;
    font-weight: 600;
}

.similar-offers-inner-overlay h4 {
    font-weight: 600;
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px;
}

.similar-offers-inner-overlay p {
    font-size: 19px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0px;
}

.similar-offers-inner-style-2 {
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 10px 15px #0000000D;
    border: 1px solid rgba(58, 53, 53, 0.1);
    height: 100%;
}

.similar-offers-inner-style-2-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.similar-offers-inner-style-2-inner-width {
    width: 50%;
}

.similar-offers-inner-style-2-img {
    padding: 10px 15px;
    width: 100%
}

.similar-offers-inner-style-2-img {
    width: 100%;
}

.similar-offers-inner-style-2-body {
    padding: 10px 15px 10px 0px;
    text-align: right;
}

.similar-offers-inner-style-2-body h3 {
    color: #000000;
    font-weight: 600;
    font-size: 75px;
}

.similar-offers-inner-style-2-body h3 span {
    display: block;
    font-size: 25px;
}

.similar-offers-inner-style-2-body p {
    color: #000000;
    font-size: 19px;
    font-weight: 400;
}

.similar-offers-inner-style-2-body p a {
    color: #2858BE;
    font-weight: 500;
    font-size: 26px;
    display: block;
}

.red-offer-label {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background-image: url('../images/red-label-bg.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 23px;
    left: 0;
    width: 133px;
}

.red-offer-label span {
    vertical-align: middle;
    display: inline-block;
    padding: 4px 10px;
}

@media screen and (max-width: 1024px) {
    .trending-inner-detail {
        padding: 30px;
    }

    .similar-offers-inner-overlay h3 {
        font-size: 48px;
    }

    .similar-offers-inner-overlay h4 {
        font-size: 20px;
    }

    .similar-offers-inner-style-2-body h3 {
        font-size: 50px;
    }

    .similar-offers-inner-style-2-img img {
        width: 100%;
    }

    .similar-offers-inner-style-2-body h3 span {
        font-size: 20px;
    }

    .similar-offers-inner-style-2-body p a {
        font-size: 20px;
    }

    .red-offer-label {
        width: 116px;
    }

    .red-offer-label span {
        padding: 0px 10px;
    }
}

@media screen and (max-width: 991px) {
    .similar-offers-main .row .col-lg-6 {
        margin-bottom: 30px;
    }

    .red-offer-label {
        width: 133px;
    }

    .red-offer-label span {
        padding: 4px 10px;
    }

    .similar-offers-inner-style-2-body {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .similar-offers-inner {
        height: auto;
        margin-bottom: 30px;
    }

    .similar-offers-inner-style-2-img img {
        width: auto;
        height: 100%;
        object-fit: cover;
    }
}

@media only screen and (max-width: 576px) {
    .trending-inner-product-detail {
        flex-direction: column-reverse;
    }

    .trending-inner-product-detail-2 {
        width: 100%;
    }

    .trending-inner-product-footer a {
        margin-right: 8px;
    }

    .btn-long-orange {
        width: 200px;
    }

    .trending-inner-product-detail-1 h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .btn-long-orange {
        width: auto;
    }

    .trending-product-discount:first-child {
        padding-right: 10px;
    }
}

/* --Trending Offers inner page end------- */


/*category page css start*/
p.img-title {
    font-size: 14px;
    color: #000000;
    font-weight: 500;

}

.category-block {
    text-align: center;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 15px #0000000d;
    border-radius: 4px;
}

.category-block img {
    height: 150px;
    width: 150px;
    object-fit: scale-down;
}

.contact-us {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 5px;
    opacity: 1;
    padding: 20px;
    margin-bottom: 25px;
}

.form-group label {
    color: #2D2D2D;
    font-weight: 500;
}

.top-nav .nav-item.active a.nav-link {
    background: transparent !important;
    color: #fdb247 !important;
}

.my-profile-main {
    padding: 30px 0px;
}

.my-profile-main .tabs_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.my-profile-tab-list {
    width: 25%;
    padding: 0px 15px;
}

.my-profile-tab-container {
    width: 75%;
    padding: 0px 15px;
}

.my-profile-tab-list ul.tabs {
    background: #fff;
    border-radius: 5px;
    list-style: none;
    margin: 0;
    padding: 0
}

.my-profile-tab-list ul.tabs li a {
    color: #2D2D2D;
}

.my-profile-tab-list ul.tabs li.active a {
    color: #fff !important;
}

.my-profile-tab-list ul.tabs li {
    color: #2D2D2D;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.my-profile-tab-list ul.tabs li:last-child {
    border-bottom: 0px;
    border-radius: 0px 0px 5px 5px;
}

.my-profile-tab-list ul.tabs li:first-child {
    border-radius: 5px 5px 0px 0px;
}

.my-profile-tab-list ul.tabs li.active {
    color: #fff !important;
    background: rgb(253, 178, 71);
    background: linear-gradient(277deg, rgba(253, 178, 71, 1) 0%, rgba(240, 83, 38, 1) 100%);
}

.my-profile-tab-list ul.tabs li:hover {
    cursor: pointer;
}

.my-profile-tab-list ul.tabs li img {
    display: inline-block;
    margin-right: 16px;
}

.my-profile-tab-list ul.tabs li.active img {
    -webkit-filter: brightness(0) contrast(1) invert(1);
    -moz-filter: brightness(0) contrast(1) invert(1);
    -ms-filter: brightness(0) contrast(1) invert(1);
    -o-filter: brightness(0) contrast(1) invert(1);
    filter: brightness(0) contrast(1) invert(1);
    background: transparent;
}

.my-profile-tab-container .tab_container {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}

.my-profile-tab-container .tab_content {
    display: none;
}

.my-profile-tab-container .tab_drawer_heading {
    display: none;
}

.slash-form .form-group {
    margin-bottom: 15px;
}

.slash-form .form-group label {
    color: #2D2D2D;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.slash-form .form-group label span {
    color: #F28E2B;
}

.slash-form .form-group .form-control {
    /* border: 1px solid rgba(45, 45, 45, 0.1); */
    border-radius: 4px;
    color: #2D2D2D;
    font-size: 14px;
    font-weight: 400;
}

.slash-form .form-group .form-control::placeholder {
    color: rgba(45, 45, 45, 0.5);
    font-size: 14px;
}

.slash-form .form-group .select2 {
    /* border: 1px solid rgba(45, 45, 45, 0.1); */
    border-radius: 4px;
    color: #2D2D2D;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    display: block;
}

.slash-form .select2-container--default .select2-selection--single {
    height: 39px;
    padding: .375rem .75rem;
    background-color: #fff;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    /* border: 1px solid rgba(45, 45, 45, 0.1); */
    border-radius: 4px;
    color: #2D2D2D;
    font-size: 14px;
}

.slash-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    /* color: rgba(45, 45, 45, 0.5); */
    font-size: 14px;
    padding-left: 0px;
}

.slash-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px;
    width: 32px;
}

.slash-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url('../images/chevron-down.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    border: 0px;
    width: 10px;
    height: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    box-shadow: none;
    outline: none;
}

.slash-form .custom-control-input:checked~.custom-control-label::before {
    border-color: #f47631;
    background-color: #f47631;
}

.slash-form .custom-control-input:focus~.custom-control-label::before,
.slash-form .form-group .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(244, 118, 49, 0.2);
}

.slash-form :checked+label::before {
    content: '';
}

.slash-form .select2-container {
    width: 100% !important;
}

.user-profile-img {
    margin-bottom: 5%;

}

.profile-pic-uploading {
    position: relative;
    width: 116px;
    height: 116px;
}

.profile-pic {
    width: 116px;
    height: 116px;
    display: block;
}

.file-upload {
    display: none;
}

.circle-p-img {
    overflow: hidden;
    width: 116px;
    height: 116px;
}

.circle-p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.p-image {
    position: absolute;
    bottom: -13px;
    right: -7px;
    cursor: pointer;
}

.upload-button {
    font-size: 1.2em;
}

.profile-location {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.profile-location-form {
    display: none;
}

.profile-location-form.profile-location-form-show {
    display: block;
}

.profile-location.profile-location-hide {
    display: none;
}

.profile-location-chanage button {
    color: #F28E2B;
    border: 0px;
    background-color: transparent;
    padding: 0px;
    font-size: 14px;
    font-weight: 500;
}

.profile-location-name p {
    color: #2D2D2D;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px
}

.profile-location-name p span {
    display: block;
}

.slash-form-border-bottom {
    border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.slash-form-custom-switch-1 p {
    color: rgba(45, 45, 45, 0.5);
    font-size: 14px;
    font-weight: 400;
}

.slash-form .slash-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.slash-form .slash-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slash-form .slash-switch-slider {
    position: absolute;
    cursor: pointer;
    top: -2px;
    left: 2px;
    right: -4px;
    bottom: 2px;
    background-color: #CBCBCB;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slash-form .slash-switch-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.slash-form .slash-switch input:checked+.slash-switch-slider {
    background-color: #F28E2B;
}

.slash-form .slash-switch input:focus+.slash-switch-slider {
    box-shadow: 0 0 1px #2196F3;
}

.slash-form .slash-switch input:checked+.slash-switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slash-form .col-md-12:last-child .slash-form-border-bottom {
    border-bottom: 0px;
}

@media screen and (max-width: 991px) {
    .my-profile-tab-container .tab_content .common-title-1 {
        display: none;
    }

    .my-profile-tab-list ul.tabs {
        display: none;
    }

    .my-profile-tab-container .tab_drawer_heading {
        background-color: #fff;
        color: #2D2D2D;
        padding: 15px 20px;
        display: block;
        cursor: pointer;
        font-size: 20px;
        font-weight: 500;
        border-bottom: 1px solid rgba(45, 45, 45, 0.1);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin-bottom: 0px;
    }

    .my-profile-tab-container .tab_drawer_heading img {
        margin-right: 16px;
    }

    .my-profile-tab-container .d_active img {
        -webkit-filter: brightness(0) contrast(1) invert(1);
        -moz-filter: brightness(0) contrast(1) invert(1);
        -ms-filter: brightness(0) contrast(1) invert(1);
        -o-filter: brightness(0) contrast(1) invert(1);
        filter: brightness(0) contrast(1) invert(1);
        background: transparent;
    }

    .my-profile-tab-container .d_active {
        color: #fff;
        background: rgb(253, 178, 71);
        background: linear-gradient(277deg, rgba(253, 178, 71, 1) 0%, rgba(240, 83, 38, 1) 100%);
    }

    .my-profile-tab-list {
        display: none;
    }

    .my-profile-tab-container {
        width: 100%;
    }

    .my-profile-tab-container .tab_container {
        padding: 20px;
    }

    .my-profile-tab-container .tab_container {
        padding: 0px;
    }

    .my-profile-tab-container .tab_content {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .profile-pic-uploading {
        width: 120px;
        height: 120px;
    }

    .circle-p-img {
        width: 80px;
        height: 80px;
    }

    .p-image img {
        max-width: 40px;
    }

    .slash-form .slash-switch {
        width: 42px;
        height: 18px;
    }

    .slash-form .slash-switch-slider:before {
        width: 14px;
        height: 14px;
    }

    .my-profile-tab-container .common-title-1 {
        display: none;
    }
}

@media(max-width: 991px) {
    .filter-choice {
        margin-bottom: 20px !important;
    }
}

@media(max-width: 575px) {
    section.trending-offers-main-page .home-today-inner a img {
        height: auto;
    }
}

.back-top span {
    width: 50px;
    height: 50px;
    display: block;
    margin-bottom: 7px;
    background: url(../images/up-arrow.png) no-repeat center center;
    background-size: auto;
    background-size: 20px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 100%;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}

p#back-top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 9999999999;
    margin: 0;
    background: #f28e2b;
    border-radius: 50%;
}

.back-top span {
    margin-bottom: 0;
}