@import url(../../front/assets/font-family/stylesheet.css);

/*_mixins.scss
SCSS file for all mixin elements.

@file _mixins.scss
@path /assets/scss/_mixins.scss
@version 2019-10-09
*/
/* Placeholder css property */
/* fadeIn and fadeOut css property end */
/* hover, focus, active css property Begin */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    font-family: Public Sans;
}

body,
html {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: "WebFont", Arial, sans-serif;
    background-color: #f5f5f5;
}

ul li {
    list-style-type: none;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

p,
h1,
h2,
h3,
h4,
h5,
.cart-card .card-fotter .left-box .item-details p,
h6 {
    padding: 0;
    margin: 0;
    color: #000000;
}

.label-container {
    margin-bottom: 15px;
}

.label-container h2 {
    font-size: 17px;
    line-height: 20px;
    color: #ef4e86;
    font-weight: bold;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ef4e86;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-select:focus {
    color: #212529;
    background-color: #fff;
    border-color: #ef4e86;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.clear-btn {
    font-size: 15px !important;
    padding: 11px !important;
}

.form-select {
    background-image: url(../assets/images//icons/Group\ 106.png);
    background-repeat: no-repeat;
    -webkit-background-size: 14px 7px;
    -o-background-size: 14px 7px;
    background-size: 14px 7px;
    font-size: 14px;
    line-height: 16px;
}


/* lazy-image-loader.css */
/* front/css/lazy-image-loader.css */
.lazy-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

.lazy-image-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.lazy-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Adjust for your card design */
.card-top {
    position: relative;
    height: 200px;
    /* Adjust based on your needs */
    width: 100%;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #666;
}


.form-check-input:checked {
    background-color: #4e93f2;
    border-color: #4e93f2;
}


input::-webkit-input-placeholder {
    color: #000000 !important;
}

input:-moz-placeholder {
    color: #000000 !important;
}

input::-moz-placeholder {
    color: #000000 !important;
}

input:-ms-input-placeholder {
    color: #000000 !important;
}

input::-ms-input-placeholder {
    color: #000000 !important;
}

input::placeholder {
    color: #000000 !important;
}

textarea::-webkit-input-placeholder {
    color: #000000 !important;
}

textarea:-moz-placeholder {
    color: #000000 !important;
}

textarea::-moz-placeholder {
    color: #000000 !important;
}

textarea:-ms-input-placeholder {
    color: #000000 !important;
}

textarea::-ms-input-placeholder {
    color: #000000 !important;
}

textarea::placeholder {
    color: #000000 !important;
}

.form-control,
.form-select {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #ef4e86;
    padding: 7px 10px;
    color: #000000;
    height: 49px;
}

.form-label {
    color: #ffffff;
}

.v-hr {
    position: absolute;
    content: "";
    width: 2px;
    height: 283px;
    right: 16px;
    background: white;
    padding: 0;
}

@media (max-width: 992px) {
    .v-hr {
        display: none;
    }
}

@media (max-width: 575px) {
    .v-hr {
        display: none;
    }
}

.top-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0px 16px;
}

@media (max-width: 575px) {
    .top-container {
        margin-bottom: 10px;
    }
}

.top-container h2 {
    font-size: 34px;
    line-height: 39px;
    color: #ef4e86;
    font-weight: bold;
}

@media (max-width: 992px) {
    .top-container h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .top-container h2 {
        font-size: 25px;
        line-height: 30px;
    }
}

.top-container .inside-row {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -moz-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-container .location {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -moz-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.top-container .filter-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

@media (max-width: 575px) {
    .top-container .filter-form {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 992px) {
    .top-container .filter-form .search-icon {
        max-width: 200px !important;
    }
}

@media (max-width: 575px) {
    .top-container .filter-form .search-icon {
        max-width: 476px !important;
    }
}

.top-container .filter-form .form-control {
    max-width: 476px;
    border: none;
}

@media (max-width: 992px) {
    .top-container .filter-form .form-control {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .top-container .filter-form .form-control {
        max-width: 100%;
    }
}

.top-container .filter-form .form-select {
    max-width: 142px;
    border: none;
}

@media (max-width: 992px) {
    .top-container .filter-form .form-select {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .top-container .filter-form .form-select {
        max-width: 100%;
    }
}

@media (max-width: 575px) {

    .top-container .filter-form .select-icon,
    .top-container .filter-form .product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box,
    .product-view-card .card-body .card-body-fotter .card-btn-box-fotter .top-container .filter-form .input-card-box {
        max-width: 476px !important;
    }
}

.card {
    border: none;
    background-color: #f5f5f5;
}

.card-sort {
    margin: 21px auto;
    max-width: 100%;
}

.card-sort .card-top {
    border: 1px solid #ef4e86;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    height: 215px;
}


@media (max-width: 992px) {
    .card-sort .card-top {
        height: 260px;
    }
}

.card-sort .card-top img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card-sort .card-text,
.card-sort .product-view-card .card-body .card-body-top .card-left .card-text-light,
.product-view-card .card-body .card-body-top .card-left .card-sort .card-text-light {
    margin-top: 16px;
    text-align: center;
}

.card-sort .card-text h3,
.card-sort .product-view-card .card-body .card-body-top .card-left .card-text-light h3,
.product-view-card .card-body .card-body-top .card-left .card-sort .card-text-light h3 {
    font-size: 20px;
    line-height: 23px;
    font-weight: bold;
}

@media (max-width: 992px) {

    .card-sort .card-text h3,
    .card-sort .product-view-card .card-body .card-body-top .card-left .card-text-light h3,
    .product-view-card .card-body .card-body-top .card-left .card-sort .card-text-light h3 {
        font-size: 16px;
        line-height: 20px;
    }
}

.card-sort-rating {
    margin: 21px auto;
    max-width: 100%;
}

.card-sort-rating .card-top {
    border: 1px solid #ef4e86;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    /* This creates a 4:3 ratio which is close to your original proportions */
}

.card-sort-rating .card-top.slide-items {
    aspect-ratio: 1 / 1.2;
    /* This gives a taller ratio for slide items */
}

@media (max-width: 992px) {
    .card-sort-rating .card-top {
        aspect-ratio: 1 / 1;
        /* Makes it more square on mobile */
    }
}

.card-sort-rating .card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Changed from cover to maintain image proportions */
}

.card-sort-rating .fotter-text {
    color: #95989a;
    font-size: 20px;
    line-height: 23px;
    font-weight: 300;
}

.card-sort-rating .card-text,
.card-sort-rating .product-view-card .card-body .card-body-top .card-left .card-text-light,
.product-view-card .card-body .card-body-top .card-left .card-sort-rating .card-text-light {
    margin-top: 16px;
    text-align: start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card-sort-rating .card-text h3,
.card-sort-rating .product-view-card .card-body .card-body-top .card-left .card-text-light h3,
.product-view-card .card-body .card-body-top .card-left .card-sort-rating .card-text-light h3 {
    font-size: 19px;
    line-height: 23px;
    font-weight: bold;
    max-width: 202px;
}

@media (max-width: 992px) {

    .card-sort-rating .card-text h3,
    .card-sort-rating .product-view-card .card-body .card-body-top .card-left .card-text-light h3,
    .product-view-card .card-body .card-body-top .card-left .card-sort-rating .card-text-light h3 {
        font-size: 16px;
        line-height: 20px;
    }
}

.card-sort-rating .card-text .distance,
.card-sort-rating .product-view-card .card-body .card-body-top .card-left .card-text-light .distance,
.product-view-card .card-body .card-body-top .card-left .card-sort-rating .card-text-light .distance {
    font-size: 17px;
    line-height: 20px;
    font-weight: 300;
    color: #343434;
    display: inline-block;
}

.card-sort-rating .rating-star {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5px;
    gap: 0.7px;
}

.card-medium {
    margin: 21px auto;
    max-width: 100%;
    height: 215px;
}

@media (max-width: 575px) {
    .card-medium {
        height: 125px;
    }
}

.card-medium .img-container {
    border: 1px solid #ef4e86;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    position: relative;
}

.card-medium .img-container img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.card-medium .img-container .overlay-text {
    position: absolute;
    bottom: 17px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.card-medium .img-container .overlay-text h3 {
    font-size: 29px;
    line-height: 33px;
    font-weight: bold;
    color: #ffffff;
}

@media (max-width: 992px) {
    .card-medium .img-container .overlay-text h3 {
        font-size: 33px;
        line-height: 50px;
    }
}

@media (max-width: 575px) {
    .card-medium .img-container .overlay-text h3 {
        font-size: 16px;
        line-height: 20px;
    }
}

.card-medium .img-container .alert-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 29px;
    line-height: 33px;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .card-medium .img-container .alert-text {
        font-size: 15px;
    }
}

.card-medium .coming-soon img {
    opacity: 0.6;
}

.booking-card {
    background-color: white;
    padding: 24px 6px 24px 24px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .booking-card {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .booking-card {
        padding: 15px;
    }
}

.booking-card .row {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.booking-card .card-top-img {
    width: 100%;
    height: 128px;
    overflow: hidden;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

@media (max-width: 575px) {
    .booking-card .card-top-img {
        height: 200px;
    }
}

.booking-card .card-top-img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.booking-card .card-body .card-title {
    font-size: 27px;
    line-height: 31px;
    color: #000000;
    font-weight: 500;
}

@media (max-width: 992px) {
    .booking-card .card-body .card-title {
        font-size: 25px;
    }
}

.booking-card .card-body .posted-plan {
    max-width: 186px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 7px;
}

.booking-card .card-body .posted-plan p {
    font-size: 18px;
    line-height: 21px;
    font-weight: 300;
}

.booking-card .card-body .card-text,
.booking-card .product-view-card .card-body .card-body-top .card-left .card-text-light,
.product-view-card .booking-card .card-body .card-body-top .card-left .card-text-light {
    color: #a8a8a8;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
}

.booking-card .card-body .card-fotter {
    margin-top: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.booking-card .card-body .card-fotter p {
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    color: #4e93f2;
}

.booking-card .card-body .card-fotter .confirmed {
    color: #ef4e86;
}

.booking-card .card-body .card-fotter .btn-blue {
    height: 34px;
    font-size: 11px;
    line-height: 12px;
}

.cart-card {
    background-color: #fff;
    padding: 20px 37px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

@media (max-width: 575px) {
    .cart-card {
        padding: 15px 20px;
    }
}

@media (max-width: 575px) {
    .cart-card .od1 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media (max-width: 575px) {
    .cart-card .od2 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.cart-card .card-top-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .cart-card .card-top-header {
        padding-top: 10px;
    }
}

.cart-card .card-top-header .date-time {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.cart-card .card-top-header .date-time p {
    font-size: 18px;
    line-height: 21px;
    font-weight: 300;
}

@media (max-width: 575px) {
    .cart-card .card-top-header .date-time p {
        font-size: 14px;
        line-height: 12px;
    }
}

.cart-card .card-top-header .card-title {
    font-size: 27px;
    line-height: 31px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .cart-card .card-top-header .card-title {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .cart-card .card-top-header .card-title {
        font-size: 21px;
        line-height: 30px;
    }
}

.cart-card .text-muted {
    font-size: 18px;
    line-height: 21px;
    font-weight: 300;
    color: #a8a8a8;
    padding-top: 8px;
    padding-bottom: 11px;
}

@media (max-width: 575px) {
    .cart-card .text-muted {
        font-size: 15px;
    }
}

.cart-card .card-text,
.cart-card .product-view-card .card-body .card-body-top .card-left .card-text-light,
.product-view-card .card-body .card-body-top .card-left .cart-card .card-text-light {
    font-size: 18px;
    line-height: 21px;
    font-weight: 300;
}

@media (max-width: 575px) {

    .cart-card .card-text,
    .cart-card .product-view-card .card-body .card-body-top .card-left .card-text-light,
    .product-view-card .card-body .card-body-top .card-left .cart-card .card-text-light {
        font-size: 14px;
        line-height: 12px;
    }
}

.cart-card hr {
    height: 2px;
    background-color: #b0a8a8;
}

.cart-card .card-img {
    width: 100%;
    overflow: hidden;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    height: 144px;
    width: 182px;
    float: right;
}

@media (max-width: 575px) {
    .cart-card .card-img {
        float: left;
    }
}

.cart-card .card-img img {
    height: 100%;
    width: 100%;
}

@media (max-width: 575px) {
    .cart-card .card-img img {
        width: 100%;
    }
}

.cart-card .card-fotter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-card .card-fotter .left-box {
    width: 70%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-card .card-fotter .left-box .item-details h5,
.cart-card .card-fotter .left-box .item-details p {
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
}

@media (max-width: 575px) {

    .cart-card .card-fotter .left-box .item-details h5,
    .cart-card .card-fotter .left-box .item-details p {
        font-size: 12px;
    }
}

.cart-card .card-fotter .left-box .item-details p {
    color: #a8a8a8;
    padding-top: 11px;
}

@media (max-width: 575px) {
    .cart-card .card-fotter .left-box .item-details p {
        padding-top: 2px;
    }
}

.cart-card .card-fotter .right-box .btn-blue {
    height: 34px;
}

@media (max-width: 575px) {
    .cart-card .card-fotter .right-box .btn-blue {
        font-size: 12px;
    }
}

.footer {
    background-color: #ef4e86;
    margin-top: 66px;
    /* min-height: 53vh; */
}

@media (max-width: 575px) {
    .footer {
        margin-top: 30px;
    }
}

.footer-container {
    padding-top: 54px;
    padding-left: 64px;
    padding-right: 40px;
    padding-bottom: 50px;
}

@media (max-width: 575px) {
    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.footer-container .btn-white {
    height: 49px;
    max-width: 241px;
    text-transform: capitalize;
}

.footer-container .social-media {
    position: relative;
    margin-top: 33px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-container .social-media .social {
    position: absolute;
    background-color: transparent;
    width: 37px;
    height: 37px;
    top: 0;
}

.footer-container .social-media .linkdin {
    left: 0;
}

.footer-container .social-media .instagram {
    left: 40px;
}

.footer-container .social-media .facebook {
    left: 80px;
}

.footer-container .footer-menu {
    margin-top: 26px;
    width: 530px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 26px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 992px) {
    .footer-container .footer-menu {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        width: 300px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .footer-container .footer-menu {
        width: 315px;
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}

.footer-container .footer-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 12px;
    line-height: 14px;
    white-space: nowrap;
    max-width: 130px;
    width: 100%;
}

@media (max-width: 575px) {
    .footer-container .app-section {
        margin-top: 30px;
    }
}

.footer-container .app-section .img1 {
    max-width: 294px;
}

.footer-container .app-section .app-link {
    max-width: 294px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-top: 16px;
    float: right;
}

@media (max-width: 575px) {
    .footer-container .app-section .app-link {
        float: left;
    }
}

.footer-container .app-section .app-link img {
    max-width: 294px;
}

.footer-container .app-section .app-link .app {
    position: absolute;
    width: 143px;
    background-color: transparent;
    height: 43.51px;
    top: 0;
}

.footer-container .app-section .app-link .app-ios {
    left: 0;
}

.footer-container .app-section .app-link .app-android {
    right: 0;
}

.footer-container .app-section .form-app-link {
    margin-top: 100px;
}

.footer-container .app-section .form-app-link span {
    display: block;
    white-space: nowrap;
    font-size: 18px;
    line-height: 21px;
    font-weight: bold;
    text-align: end;
    color: #ffffff;
    position: relative;
    right: 0px;
}

@media (max-width: 575px) {
    .footer-container .app-section .form-app-link span {
        text-align: start;
        right: 0;
    }
}

.footer-container .app-section .form-app-link .link-from {
    margin-top: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    gap: 11px;
}

@media (max-width: 575px) {
    .footer-container .app-section .form-app-link .link-from {
        -webkit-box-pack: start;
        -webkit-justify-content: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}

.footer-container .app-section .form-app-link .link-from .form-control {
    max-width: 239px;
    height: 49px;
}

@media (max-width: 575px) {
    .footer-container .app-section .form-app-link .link-from .form-control {
        min-width: 200px;
    }
}

.menu-box .inner-container {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-color: #ffffff;
    padding-top: 29px;
    padding-left: 37px;
    padding-right: 45px;
    padding-bottom: 46px;
}

.menu-box .inner-container .sub-menu h4 {
    font-size: 24px;
    line-height: 28px;
    color: #ef4e86;
    font-weight: bold;
}

.menu-box .inner-container .sub-menu .row {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menu-box .inner-container .sub-menu .sub-nav-list {
    margin-top: 31px;
}

.menu-box .inner-container .sub-menu .sub-nav-list ul li {
    list-style-type: none;
    font-size: 15px;
    line-height: 28px;
    color: #000000;
}

.menu-box .inner-container .sub-menu .sub-nav-list ul li a {
    text-decoration: none;
    color: #000000;
}

.menu-box .inner-container .sub-menu .sub-nav-list ul li a:hover {
    color: #ef4e86;
}

.float {
    text-align: end;
}

@media (max-width: 575px) {
    .float {
        text-align: start;
    }
}

.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.9s ease, height 0.9s ease;
    -o-transition: opacity 0.9s ease, height 0.9s ease;
    -moz-transition: opacity 0.9s ease, height 0.9s ease;
    transition: opacity 0.9s ease, height 0.9s ease;
}

.visible {
    opacity: 1;
    height: auto;
    overflow: auto;
    padding-top: 28px;
    padding-left: 24px;
    padding-right: 23px;
    padding-bottom: 60px;
}

.product-view-card {
    margin-top: 22px;
    background-color: #ffffff;
}

.product-view-card .img-card {
    min-height: 310px;
    overflow: hidden;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

@media (max-width: 575px) {
    .product-view-card .img-card {
        min-height: 290px;
    }
}

.product-view-card .img-card img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-view-card .select-icon::after,
.product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box::after {
    top: 20%;
}

.product-view-card .card-body {
    padding: 18px 25px 20px 25px;
    background-color: #f5f5f5;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.product-view-card .card-body .card-body-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 11px;
}

.product-view-card .card-body .card-body-top .card-left .card-title {
    font-size: 27px;
    line-height: 31px;
    font-weight: 500;
}

@media (max-width: 575px) {
    .product-view-card .card-body .card-body-top .card-left .card-title {
        font-size: 23px;
        line-height: 22px;
    }
}

.product-view-card .card-body .card-body-top .card-left .card-text,
.product-view-card .card-body .card-body-top .card-left .card-text-light {
    font-size: 16px;
    line-height: 18px;
    font-weight: 300;
}

@media (max-width: 575px) {

    .product-view-card .card-body .card-body-top .card-left .card-text,
    .product-view-card .card-body .card-body-top .card-left .card-text-light {
        font-size: 15px;
    }
}

.product-view-card .card-body .card-body-top .card-left .card-text-light {
    color: #a8a8a8;
    padding-top: 3px;
}

.product-view-card .card-body .card-body-top .text-end h4 {
    font-size: 22px;
    line-height: 26px;
    color: #ef4e86;
    font-weight: 700;
}

@media (max-width: 575px) {
    .product-view-card .card-body .card-body-top .text-end h4 {
        font-size: 19px;
        line-height: 22px;
    }
}

.product-view-card .card-body .card-discription {
    font-size: 13px;
    line-height: 15px;
    font-weight: 300;
    margin-bottom: 10px;
}

.product-view-card .card-body .card-body-fotter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}

@media (max-width: 992px) {
    .product-view-card .card-body .card-body-fotter {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .product-view-card .card-body .card-body-fotter {
        gap: 10px;
    }
}

.product-view-card .card-body .card-body-fotter .card-btn-box-fotter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-view-card .card-body .card-body-fotter .card-btn-box-fotter .form-select {
    height: 40px;
    border-color: #95989a;
    background-color: #f5f5f5;
    font-size: 12px;
    padding: 7px 30px 7px 10px;
}

.product-view-card .card-body .card-body-fotter .card-btn-box-fotter .select-icon,
.product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box {
    max-width: 134px !important;
    width: 100%;
}

@media (max-width: 575px) {

    .product-view-card .card-body .card-body-fotter .card-btn-box-fotter .select-icon,
    .product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box {
        max-width: 100%;
    }
}

.product-view-card .card-body .card-body-fotter .btn-primary {
    font-size: 15px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    height: 40px;
}

.item-realtive-card .card-sort-rating .card-text h3,
.item-realtive-card .card-sort-rating .product-view-card .card-body .card-body-top .card-left .card-text-light h3,
.product-view-card .card-body .card-body-top .card-left .item-realtive-card .card-sort-rating .card-text-light h3 {
    font-size: 23px;
    line-height: 27px;
    font-weight: 500;
}

.item-realtive-card .card-sort-rating .fotter-text {
    margin-top: 6px;
}

.date-time .modal-body {
    padding: 40px 28px;
}

.date-time .btn-primary {
    max-width: 225px;
    height: 37px;
    float: right;
    font-size: 13px;
    padding: 9px;
    margin-top: 15px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.date-time .modal-dialog {
    max-width: 884px;
    top: 30px;
}

.date-time .modal-dialog .login-form {
    padding: 0;
    margin-bottom: 18px;
}


.date-time .modal-dialog .time-calender .time-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 21px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.date-time .modal-dialog .time-calender .check-btn {
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-width: 147px;
    width: 100%;
    text-align: center;
    /* Create a custom radio button */
}

@media (max-width: 575px) {
    .date-time .modal-dialog .time-calender .check-btn {
        max-width: 122px;
    }
}

.date-time .modal-dialog .time-calender .check-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.date-time .modal-dialog .time-calender .check-btn .checkmark {
    position: relative;
    padding: 16px;
    background-color: #f5f5f5;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    width: 100%;
    display: block;
    border: 1px solid #f5f5f5;
}

.date-time .modal-dialog .time-calender .check-btn:hover input~.checkmark {
    border: 1px solid #ef4e86;
}

.date-time .modal-dialog .time-calender .check-btn input:checked~.checkmark {
    background-color: #ef4e86;
    border: 1px solid #ef4e86;
    color: #ffffff;
}

@media (max-width: 575px) {
    .mt-mobile {
        margin-top: 15px;
    }
}

a {
    text-decoration: none;
    color: #707070;
}

a:hover {
    color: #ef4e86;
}

.btn {
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 18px;
}

.btn-primary {
    background-color: #ef4e86;
    border: none;
    color: #ffffff;
    font-size: 18px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    width: 100%;
    padding: 11px 0px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
    background-color: #ef4e86 !important;
    color: #ffffff !important;
}

@media (max-width: 575px) {
    .btn-primary {
        font-size: 15px;
    }
}

.btn-white {
    background-color: #ffffff;
    color: #ef4e86;
    font-weight: bold;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 46px;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.active {
    border: 1px solid #ffffff;
    background-color: #ef4e86;
    color: #ffffff;
}

.acnr-btn {
    font-size: 18px;
    line-height: 21px;
    color: #ef4e86;
    font-weight: bold;
    text-decoration: none;
}

.acnr-btn:hover,
.acnr-btn:focus,
.acnr-btn.active {
    color: #000;
}

@media (max-width: 575px) {
    .acnr-btn {
        font-size: 15px;
        line-height: 19px;
    }
}

.loginpage-btn {
    padding: 0 21px;
    max-width: 411px;
    margin: 32px auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 37px;
}

@media (max-width: 575px) {
    .loginpage-btn {
        width: 311px;
        gap: 24px;
        margin-top: 10px;
    }
}

.loginpage-btn .btn-loginsignup {
    padding: 12px 10px;
    font-size: 24px;
    font-weight: 700;
    -webkit-border-radius: 13px;
    border-radius: 13px;
    background-color: #ffffff;
    color: #ef4e86;
}

@media (max-width: 575px) {
    .loginpage-btn .btn-loginsignup {
        font-size: 18px;
    }
}

.loginpage-btn .btn-loginsignup:hover,
.loginpage-btn .btn-loginsignup:focus,
.loginpage-btn .btn-loginsignup.active {
    background-color: #ef4e86;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-blue {
    background-color: #4e93f2;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    height: 46px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
    line-height: 17px;
}

.btn-gray {
    background-color: #d8d6d6;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    height: 46px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 13px;
    line-height: 15px;
}

.form-check-input:focus {
    border-color: #ef4e86;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-wrap {
    text-decoration: none;
    color: #707070;
}

.btn-wrap:hover {
    color: #ef4e86;
}

.select-icon,
.product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box {
    position: relative;
    max-width: 142px;
    width: 100%;
}

@media (max-width: 575px) {

    .select-icon,
    .product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box {
        max-width: 100%;
    }
}

.select-icon::after,
.product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box::after {
    content: url(../assets/images/Images/BackIcon.png);
    position: absolute;
    top: 20%;
    right: 15px;
    rotate: 90deg;
    z-index: 999;
}

.search-icon {
    max-width: 476px;
    width: 100%;
    position: relative;
}

.search-icon::after {
    content: url(../assets/images/Images/Group\ 538.png);
    position: absolute;
    right: 15px;
    width: 25px;
    height: 19px;
    scale: 0.17;
    top: 20%;
    z-index: 999;
}

.navbar-toggler-icon {
    height: auto;
}

.navbar {
    background-color: #ef4e86;
    padding-top: 15px;
    padding-bottom: 6px;
}

.navbar .navbar-brand {
    max-width: 150px;
    padding: 0;
}

.navbar .navbar-brand img {
    width: 150px;
    height: 75px;
}

@media (max-width: 575px) {
    .navbar .navbar-brand img {
        width: 112px;
        height: 54px;
    }
}

.navbar .mobile-toogel-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.navbar .outer-container {
    padding-left: 46px;
    padding-right: 54px;
}

@media (max-width: 575px) {
    .navbar .outer-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.navbar .outer-container .navbar-toggler {
    float: right;
}

.navbar .nav-row {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar .navbar-nav {
    gap: 51px;
}

@media (max-width: 1150px) {
    .navbar .navbar-nav {
        gap: 30px;
    }
}

.navbar .navbar-nav .nav-item .nav-link {
    white-space: nowrap;
    padding: 0;
    font-size: 18px;
    line-height: 21px;
    color: #ffffff;
    position: relative;
}

@media (max-width: 1150px) {
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 15px;
        line-height: 20px;
    }
}

.navbar .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ffffff;
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transition: -webkit-transform 0.25s ease-out;
    transition: -webkit-transform 0.25s ease-out;
    -o-transition: -o-transform 0.25s ease-out;
    -moz-transition: transform 0.25s ease-out, -moz-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out,
        -moz-transform 0.25s ease-out, -o-transform 0.25s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
}

.navbar .side-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 27px;
}

@media (max-width: 1150px) {
    .navbar .side-btn {
        margin-left: 30px;
    }
}

.navbar .side-btn .btn {
    width: 142px;
    height: 49px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1150px) {
    .navbar .side-btn .btn {
        width: 100px;
    }
}

.mobile-menu {
    display: none;
    padding: 20px 15px;
}

@media (max-width: 575px) {
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 992px) {
    .mobile-menu {
        display: block;
    }
}

.mobile-menu .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.mobile-menu .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu .seacrch-box-mobile {
    max-width: 100%;
}

.mobile-menu .seacrch-box-mobile.search-icon::after {
    right: 25px !important;
}

.mobile-menu .mobile-bottom-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 575px) {
    .desktop {
        display: none;
    }
}

@media (max-width: 992px) {
    .desktop {
        display: none;
    }
}

.mobile-toogel-btn .after-login-icon {
    display: none;
}

@media (max-width: 575px) {
    .mobile-toogel-btn .after-login-icon {
        display: block;
    }
}

@media (max-width: 992px) {
    .mobile-toogel-btn .after-login-icon {
        display: block;
    }
}

.nav-bar-search {
    position: absolute;
    top: 100px;
    background-color: #ef4e86;
    padding: 32px 31px;
    z-index: 9999;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    left: 20%;
}

.nav-bar-search .filter-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 11px;
}

.nav-bar-search .filter-form .select {
    width: 239px;
    height: 49px;
}

.nav-bar-search .filter-form .input {
    width: 476px;
    height: 49px;
}

.profile-module {
    position: absolute;
    position: absolute;
    top: 100px;
    background-color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    right: 50px;
}

@media (max-width: 575px) {
    .profile-module {
        top: 60px;
    }
}

.profile-module .module-inside .btn-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
}

.profile-module .module-inside .btn-box .btn-primary {
    padding: 16px 10px;
    white-space: wrap;
    width: 178px;
    font-weight: bold;
    white-space: unset !important;
}

@media (max-width: 575px) {
    .profile-module .module-inside .btn-box .btn-primary {
        width: 150px;
        font-size: 12px;
    }
}

.profile-module .module-inside .btn-box .acnr-btn {
    font-weight: 300;
}

.profile-module .module-inside .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    text-align: end;
    padding-bottom: 15px;
}

.profile-module .module-inside .navbar-nav .nav-item {
    text-align: end;
    width: auto;
}

.profile-module .module-inside .navbar-nav .nav-item .nav-link {
    color: #000;
    width: auto;
}

.profile-module .module-inside .navbar-nav .nav-item .nav-link:hover {
    color: #ef4e86;
}

.notification {
    padding: 53px;
}

.notification .notification-panel {
    margin-top: 11px;
}

.notification .notification-panel .notification-item {
    row-gap: 15px;
}

.notification .notification-panel .notification-item .items {
    background-color: #fff;
    padding: 15px 32px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.notification .notification-panel .notification-item .items p {
    font-size: 18px;
    line-height: 21px;
    font-weight: 300;
}

.notification .notification-panel .notification-item .items .smaler {
    font-size: 15px;
    line-height: 17px;
    margin-top: 2px;
}

.notification .notification-panel .notification-item .items .btn-blue {
    min-width: 150px;
    float: right;
}

.notification-pop-up {
    position: absolute;
    top: 100px;
    background-color: #fff;
    padding: 20px;
    z-index: 9999;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    right: 60px;
}

@media (max-width: 575px) {
    .notification-pop-up {
        max-width: 100%;
        left: 10px;
        right: 10px;
        top: 60px;
    }
}

.notification-pop-up .notification-panel .notification-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.notification-pop-up .notification-panel .notification-item .items {
    background-color: #f5f5f5;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 14px 15px;
}

.notification-pop-up .notification-panel .notification-item .items p {
    font-size: 18px;
    line-height: 21px;
    padding-top: 2px;
    white-space: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

@media (max-width: 575px) {
    .notification-pop-up .notification-panel .notification-item .items p {
        font-size: 15px;
        line-height: 21px;
    }
}

.notification-pop-up .notification-panel .notification-item .items .smaler {
    font-size: 15px;
    line-height: 17px;
}

@media (max-width: 575px) {
    .notification-pop-up .notification-panel .notification-item .items .smaler {
        font-size: 12px;
        line-height: 15px;
    }
}

.notification-pop-up .notification-panel .notification-item .items .payment-done {
    position: relative;
}

.notification-pop-up .notification-panel .notification-item .items .payment-done::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: #ef4e86;
    top: 5px;
    right: -10px;
    -webkit-border-radius: 1000px;
    border-radius: 1000px;
}

@media (max-width: 575px) {
    .after-login-icon {
        position: relative;
        right: 0px;
        top: 0px;
    }
}

main {
    min-height: -webkit-calc(100vh - 424px);
    min-height: -moz-calc(100vh - 424px);
    min-height: calc(100vh - 424px);
}

.outer-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.inner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
}

@media (max-width: 575px) {
    .inner-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.index .page-main .banner-text h1 {
    font-size: 75px !important;
    font-weight: 700 !important;
    line-height: 86px !important;
}

.banner-overlay {
    height: 371px !important;
}

.banner-overlay::after {
    position: absolute;
    background: black;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.4;
    left: 0;
    right: 0;
    bottom: 0;
}

.main-banner {
    height: 375px;
}

@media (max-width: 575px) {
    .main-banner {
        height: 200px;
    }
}

.banner {
    position: relative;
    min-width: 344px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

@media (max-width: 575px) {
    .banner {
        height: 250px;
    }
}

.banner .outer-container {
    position: relative;
    padding-left: 56px;
    padding-right: 54px;
    padding-top: 36px;
    padding-bottom: 55px;
}

@media (max-width: 575px) {
    .banner .outer-container {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 60px;
    }
}

.banner .banner-img img {
    height: 100%;
    width: 100%;
}

.banner .banner-main {
    height: 100%;
}

.banner .banner-main .banner-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1233px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: 75%;
    z-index: 1;
}

@media (max-width: 992px) {
    .banner .banner-main .banner-btn {
        top: 70%;
    }
}

@media (max-width: 575px) {
    .banner .banner-main .banner-btn {
        top: 70%;
    }
}

.banner .banner-main .banner-btn h1 {
    font-size: 75px !important;
    line-height: 86px !important;
    color: #ffffff;
}

@media (max-width: 992px) {
    .banner .banner-main .banner-btn h1 {
        font-size: 54px !important;
        line-height: 80px !important;
    }
}

@media (max-width: 575px) {
    .banner .banner-main .banner-btn h1 {
        font-size: 60px !important;
        line-height: 70px !important;
        white-space: unset !important;
    }
}

@media (max-width: 575px) {
    .banner .banner-main .banner-btn h1 {
        font-size: 33px !important;
        line-height: 36px !important;
        white-space: unset !important;
    }
}

.banner .banner-main .banner-btn .btn-primary {
    max-width: 142px;
    height: 49px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner .banner-main .banner-text {
    position: absolute;
    bottom: 0;
    max-width: 500px !important;
}

.banner .banner-main .banner-text h2 {
    font-size: 39px !important;
    line-height: 40px !important;
}

@media (max-width: 575px) {
    .banner .banner-main .banner-text h2 {
        font-size: 28px !important;
        line-height: 20px !important;
    }
}

.banner .banner-main .banner-text h1 {
    font-size: 101px;
    line-height: 134px;
    color: #ffffff;
}

@media (max-width: 575px) {
    .banner .banner-main .banner-text h1 {
        font-size: 70px;
        line-height: 110px;
    }
}

.banner .page-main .banner-text {
    max-width: 433px;
}

.banner .page-main .banner-text h1 {
    font-size: 101px;
    line-height: 134px;
    color: #ffffff;
}

@media (max-width: 575px) {
    .banner .page-main .banner-text h1 {
        font-size: 55px !important;
        line-height: 60px !important;
        white-space: pre-wrap !important;
        margin-left: 10px;
    }
}

.banner .page-main .banner-text h2 {
    font-size: 75px;
    color: #ffffff;
    line-height: 86px;
    font-weight: bold;
}

@media (max-width: 575px) {
    .banner .page-main .banner-text h2 {
        font-size: 43px;
        line-height: 50px;
    }
}

.banner .bottom-logo {
    max-width: 150px;
    position: absolute;
    right: 54px;
    bottom: 10px;
}

@media (max-width: 575px) {
    .banner .bottom-logo {
        max-width: 130px;
        right: 15px;
        bottom: 10px;
        display: none;
    }
}

.categories-banner {
    height: 349px;
}

@media (max-width: 992px) {
    .categories-banner {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .categories-banner {
        height: 150px;
    }
}

.categories-page .top-container {
    margin-bottom: 56px !important;
}

.categories {
    margin-top: 41px;
}

.categories .filter-form {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 11px;
}

.categories .filter-form .select {
    max-width: 239px;
    padding: 0;
}

@media (max-width: 575px) {
    .categories .filter-form .select {
        max-width: 160px;
    }
}

.categories .filter-form .select .form-select {
    font-size: 14px;
    line-height: 16px;
    height: 49px;
}

.categories .filter-form .input {
    padding: 0;
    max-width: 476px;
}

@media (max-width: 575px) {
    .categories .filter-form .input {
        max-width: 190px;
    }
}

.categories .filter-form .input .form-control {
    font-size: 14px;
    line-height: 16px;
    height: 49px;
    position: relative;
    color: #000000;
}

.categories .filter-form .input .form-control::-webkit-input-placeholder {
    color: #000000;
}

.categories .filter-form .input .form-control:-moz-placeholder {
    color: #000000;
}

.categories .filter-form .input .form-control::-moz-placeholder {
    color: #000000;
}

.categories .filter-form .input .form-control:-ms-input-placeholder {
    color: #000000;
}

.categories .filter-form .input .form-control::-ms-input-placeholder {
    color: #000000;
}

.categories .filter-form .input .form-control::placeholder {
    color: #000000;
}

.categories .filter-form .input .form-control::after {
    content: url(../assets/images/Images/Group\ 538.png);
    position: absolute;
}

.categories .categories-slide {
    margin-top: 29px;
    margin-bottom: 20px;
}

.categories .categories-slide .row {
    row-gap: 21px;
}

.categories .categories-slide .row .card-sort {
    margin: 0;
}

.categories .categories-slide .top-container {
    margin-bottom: 20px;
}

.categories .categories-slide .search-icon {
    max-width: 476px;
    width: 100%;
}

.categories .categories-slide .select-icon,
.categories .categories-slide .product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box,
.product-view-card .card-body .card-body-fotter .card-btn-box-fotter .categories .categories-slide .input-card-box {
    max-width: 142px;
    width: 100%;
}

.categories .categories-slide .filter-form {
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.categories .alert-box {
    background-color: #ef4e86;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 74px;
    padding-right: 34px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    min-height: 132px;
    gap: 109px;
    position: relative;
    margin: 40px 0px;
}

@media (max-width: 992px) {
    .categories .alert-box {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .categories .alert-box {
        padding-left: 30px;
        padding-right: 20px;
    }
}

.categories .alert-box .btn-white {
    height: 49px;
}

@media (max-width: 992px) {
    .categories .alert-box .alert-logo {
        display: none;
    }
}

@media (max-width: 575px) {
    .categories .alert-box .alert-logo {
        display: none;
    }
}

.categories .alert-box .alert-logo img {
    position: relative;
    max-width: 277px;
    width: 100%;
    bottom: -24px;
}

@media (max-width: 1150px) {
    .categories .alert-box .alert-logo img {
        max-width: 200px;
    }
}

.categories .alert-box .text-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 27px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.categories .alert-box .text-row h2 {
    font-size: 34px;
    line-height: 39px;
    color: #ffffff;
    font-weight: bold;
}

@media (max-width: 1150px) {
    .categories .alert-box .text-row h2 {
        font-size: 26px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .categories .alert-box .text-row h2 {
        font-size: 20px;
        line-height: 25px;
    }
}

.location-banner {
    height: 349px;
}

@media (max-width: 992px) {
    .location-banner {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .location-banner {
        height: 150px;
    }
}

.loaction-page .form-box {
    margin-bottom: 13px !important;
}

.locations {
    margin-top: 40px;
    padding-bottom: 15px;
}

.locations .top-container {
    margin-bottom: 21px;
}

.locations .mt-2 {
    margin-top: 13px !important;
    margin-bottom: 48px !important;
}

.locations .row {
    row-gap: 20px;
}

.locations .row .card-medium {
    margin: 0;
}

.locations .search-icon {
    max-width: 476px;
    width: 100%;
}

.locations .select-icon,
.locations .product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box,
.product-view-card .card-body .card-body-fotter .card-btn-box-fotter .locations .input-card-box {
    max-width: 142px;
    width: 100%;
}

.featured-stores {
    margin-top: 46px;
}

.featured-stores .top-container {
    margin-bottom: 20px;
}

.featured-stores .row {
    row-gap: 20px;
}

.featured-stores .row .card-sort-rating {
    margin: 0;
}

.featured-stores .mt-3 {
    margin-top: 29px !important;
    margin-bottom: 46px;
}

.featured-stores .mt-3 .filter-form {
    gap: 37px;
}

.featured-stores .mt-3 .form-2 {
    gap: 15px !important;
}

.featured-stores .mt-2 {
    margin-top: 29px !important;
    margin-bottom: 46px;
}

.featured-stores .mt-2 .filter-form {
    gap: 20px;
}

.featured-stores .mt-2 .form-2 {
    gap: 15px !important;
}

@media (max-width: 575px) {
    .featured-stores {
        margin-top: 36px;
    }
}

.modal-dialog {
    max-width: 577px;
}

.modal-dialog .login-form {
    padding: 52px 132px;
    margin: 0 auto;
}

@media (max-width: 575px) {
    .modal-dialog .login-form {
        padding: 30px 60px;
    }
}

.modal-dialog .login-form h2 {
    font-size: 26px;
    line-height: 31px;
    font-weight: bold;
    color: #ef4e86;
}

@media (max-width: 575px) {
    .modal-dialog .login-form h2 {
        font-size: 22px;
    }
}

.modal-dialog .login-form form {
    margin-top: 16px;
    margin-bottom: 17px;
}

.modal-dialog .login-form form .login-form-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal-dialog .login-form form .login-form-box .form-control {
    border: none;
    background-color: #f5f5f5;
    height: 49px;
}

.modal-dialog .login-form .forget-btn {
    color: #707070;
    text-decoration: none;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    display: block;
}

.seetings {
    padding: 62px 0px;
}

@media (max-width: 575px) {
    .seetings {
        padding: 32px 0px;
    }
}

.seetings hr {
    margin: 30px 0px;
    background-color: #707070;
}

.seetings .inside-box {
    margin-top: 29px;
    row-gap: 10px;
}

@media (max-width: 575px) {
    .seetings .inside-box {
        margin-top: 0px;
    }
}

.seetings .form-control {
    border: none;
    color: #ef4e86;
}

.seetings .form-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: #000;
}

.seetings input::-webkit-input-placeholder {
    color: #ef4e86;
}

.seetings input:-moz-placeholder {
    color: #ef4e86;
}

.seetings input::-moz-placeholder {
    color: #ef4e86;
}

.seetings input:-ms-input-placeholder {
    color: #ef4e86;
}

.seetings input::-ms-input-placeholder {
    color: #ef4e86;
}

.seetings input::placeholder {
    color: #ef4e86;
}

.seetings .form-check {
    padding: 12px 27px;
    background-color: white;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    height: 49px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .seetings .form-check {
        padding: 11px 15px;
    }
}

.seetings a {
    text-decoration: none;
}

.seetings .form-check-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: #000;
}

.seetings .form-check-input {
    float: right;
    width: 44px;
    height: 24px;
}

.seetings .form-check-input:checked {
    background-color: #02b4ff;
    border: none;
}

.faq {
    padding: 56px 0px;
}

.faq .inner-container {
    max-width: 990px;
}

.faq .accordion .accordion-item {
    border: none;
    margin-top: 18px;
}

.faq .accordion .accordion-item .accordion-button {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    color: #ef4e86;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    height: 49px;
}

.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: white;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 49px;
}

.faq .accordion .accordion-item .accordion-body {
    padding: 30px 15px;
    background-color: #f5f5f5;
}

.faq .accordion .accordion-item .accordion-body h2 {
    font-size: 15px;
    line-height: 17px;
    font-weight: 500;
    color: #4e93f2;
    margin-bottom: 15px;
}

.faq .accordion .accordion-item .accordion-body p {
    font-size: 15px;
    line-height: 17px;
}

.faq .accordion .accordion-item .accordion-body .useful-links {
    margin-top: 20px;
}

.faq .accordion .accordion-item .accordion-body .useful-links a {
    text-decoration: none;
}

.faq .accordion .accordion-item .accordion-body .useful-links a p {
    color: #4e93f2;
    margin-bottom: 22px;
}

.help {
    padding: 56px 0px;
}

@media (max-width: 992px) {
    .help {
        padding: 35px 0px;
    }
}

@media (max-width: 575px) {
    .help {
        padding: 21px 0px;
    }
}

.help .inside-box {
    margin-top: 31px;
}

@media (max-width: 575px) {
    .help .inside-box {
        margin-top: 21px;
    }
}

.help .row {
    row-gap: 15px;
}

.help .form-control {
    border: none;
}

.help textarea {
    min-height: 139px !important;
}

.privacy {
    margin-top: 16px !important;
}

.tmc {
    padding: 60px 0px;
    padding-bottom: 0px;
}

.tmc .inside-container {
    max-width: 952px;
    margin: 0 auto;
}

.tmc .inside-container .content-container {
    margin-top: 8px;
}

.tmc .inside-container .content-container p {
    font-size: 15px;
    line-height: 17px;
    color: #000000;
    margin-bottom: 20px;
}

.inside-container {
    max-width: 952px;
    margin: 0 auto;
}

.booking {
    padding: 60px 0px;
}

@media (max-width: 575px) {
    .booking {
        padding: 25px 0px;
    }
}

.booking .form-control {
    border: none;
}

.booking .top-header-from {
    margin-top: 41px;
}

@media (max-width: 575px) {
    .booking .top-header-from {
        margin-top: 15px;
    }
}

.booking .top-header-from .nav-pills {
    gap: 18px;
}

@media (max-width: 575px) {
    .booking .top-header-from .nav-pills {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-bottom: 20px;
    }
}

.booking .top-header-from .nav-pills .nav-item .btn {
    width: 142px;
    height: 49px;
}

.booking .card-container {
    margin-top: 44px;
}

.booking .card-container .row {
    row-gap: 14px;
}

.booking .modal-dialog {
    max-width: 454px;
}

.booking .modal-dialog .modal-body {
    padding-top: 41px;
    padding-bottom: 60px;
}

.booking .modal-dialog .modal-body .text {
    font-size: 26px;
    line-height: 31px;
    font-weight: bold;
    color: #ef4e86;
    margin-bottom: 15px;
    text-align: center;
}

.booking .modal-dialog .modal-body .extend-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 13px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.booking .modal-dialog .modal-body .extend-form .form-control {
    width: 102px;
    height: 49px;
    background-color: #f5f5f5;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 16px;
}

.booking .modal-dialog .modal-body .amt-hour {
    margin: 22px 0px;
    color: #ef4e86;
    text-align: center;
    font-size: 33px;
    line-height: 38px;
    font-weight: 500;
    display: block;
}

.booking .modal-dialog .modal-body .text-light {
    color: #95989a !important;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    max-width: 309px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.booking .modal-dialog .modal-body .modal-fotter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

.booking .modal-dialog .modal-body .modal-fotter .btn {
    width: 97px;
    height: 35px;
}

.booking .modal-dialog .modal-body .modal-fotter .btn-primary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    line-height: 15px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.cart {
    padding: 60px;
}

@media (max-width: 992px) {
    .cart {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .cart {
        padding: 25px 15px;
    }
}

.cart .cart-item-container {
    margin-top: 41px;
}

@media (max-width: 992px) {
    .cart .cart-item-container {
        margin-top: 21px;
    }
}

@media (max-width: 575px) {
    .cart .cart-item-container {
        margin-top: 10px;
    }
}

.cart .cart-item-container .total-amt {
    margin-top: 18px;
    padding: 20px 37px;
    background-color: #ffffff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.cart .cart-item-container .total-amt .price-tag {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart .cart-item-container .total-amt .price-tag h5,
.cart .cart-item-container .total-amt .price-tag .cart-card .card-fotter .left-box .item-details p,
.cart-card .card-fotter .left-box .item-details .cart .cart-item-container .total-amt .price-tag p {
    color: #ef4e86;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
}

.cart .cart-item-container .footer-card-details {
    margin-top: 22px;
    padding: 19px 37px;
    background-color: #ffffff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cart .cart-item-container .footer-card-details .change {
    color: #4e93f2;
    font-size: 11px;
    line-height: 12px;
}

.cart .cart-item-container .footer-card-details .change a {
    text-decoration: none;
}

.cart .cart-item-container .footer-card-details .card-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart .cart-item-container .footer-card-details .card-info p {
    font-size: 18px;
    line-height: 21px;
    font-weight: 300;
    color: #a8a8a8;
    padding-left: 16px;
}

@media (max-width: 575px) {
    .cart .cart-item-container .footer-card-details .card-info p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .cart .cart-item-container .footer-card-details .card-info {
        margin-bottom: 15px;
    }
}

@media (max-width: 992px) {
    .cart .cart-item-container .footer-card-details .promo-code {
        margin-top: 15px;
    }
}

.cart .cart-item-container .footer-card-details .promo-code .code-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.cart .cart-item-container .footer-card-details .promo-code .code-box input {
    border: none;
    background-color: #f5f5f5;
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
    height: 29px;
}

.cart .cart-item-container .footer-card-details .promo-code .code-box input::-webkit-input-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.cart .cart-item-container .footer-card-details .promo-code .code-box input:-moz-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.cart .cart-item-container .footer-card-details .promo-code .code-box input::-moz-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.cart .cart-item-container .footer-card-details .promo-code .code-box input:-ms-input-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.cart .cart-item-container .footer-card-details .promo-code .code-box input::-ms-input-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.cart .cart-item-container .footer-card-details .promo-code .code-box input::placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.cart .cart-item-container .footer-card-details .promo-code .code-box .btn-blue {
    position: absolute;
    right: 0;
    height: 29px;
    font-size: 11px;
    line-height: 12px;
}

.cart .cart-item-container .submit-section-footer {
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
}

.cart .cart-item-container .submit-section-footer .btn {
    max-width: 193px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.inside-imtems {
    padding: 30px 0px;
}

@media (max-width: 575px) {
    .inside-imtems {
        padding: 0;
    }
}

.inside-imtems .aside-filter .filter {
    margin-top: 30px;
}

.inside-imtems .aside-filter .filter .price-range {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.inside-imtems .aside-filter .filter .price-range .check-btn {
    width: auto;
}

.inside-imtems .aside-filter .filter .price-range .check-btn .checkmark {
    padding: 10px 10px;
}

.inside-imtems .aside-filter h3 {
    color: #ef4e86;
    font-size: 23px;
    line-height: 27px;
    font-weight: 500;
}

.inside-imtems .aside-filter .form-box {
    margin-top: 13px;
    /* On mouse-over, add a grey background color */
    /* When the radio button is checked, add a blue background */
}

.inside-imtems .aside-filter .form-box .form-check {
    padding: 0;
    max-width: 229px;
    background: #ffffff;
    padding: 15px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
}

.inside-imtems .aside-filter .form-box .form-check .form-check-input {
    float: right;
}


.inside-imtems .aside-filter .form-box .check-btn {
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-width: 132px;
    /* Create a custom radio button */
}

.inside-imtems .aside-filter .form-box .check-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.inside-imtems .aside-filter .form-box .check-btn .checkmark {
    position: relative;
    padding: 16px;
    background-color: #ffffff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    width: 100%;
    display: block;
    border: 1px solid #ffffff;
}

.inside-imtems .aside-filter .form-box .check-btn:hover input~.checkmark {
    border: 1px solid #ef4e86;
}

.inside-imtems .aside-filter .form-box .check-btn input:checked~.checkmark {
    background-color: #ef4e86;
    border: 1px solid #ef4e86;
    color: #ffffff;
}

.price-range-progresbar input[type="range"] {
    -webkit-appearance: none;
    margin: 20px 0;
    width: 100%;
}

.price-range-progresbar input[type="range"]:focus {
    outline: none;
}

.price-range-progresbar input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    background: #ef4e86;
    -webkit-border-radius: 25px;
    border-radius: 25px;
}

.price-range-progresbar input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #ef4e86;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
}

.price-range-progresbar input[type="range"]:focus::-webkit-slider-runnable-track {
    background: #ef4e86;
}

.price-range-progresbar .range-wrap {
    max-width: 230px;
    position: relative;
}

.price-range-progresbar .range-value {
    position: absolute;
    top: 100%;
}

.price-range-progresbar .range-value span {
    width: 64px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #ef4e86;
    color: #fff;
    font-size: 12px;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.price-range-progresbar .range-value span:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid #ef4e86;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: -8px;
    left: 50%;
    rotate: -180deg;
    margin-left: -5px;
    margin-top: -1px;
}

.singal-banner {
    top: 70% !important;
}

@media (max-width: 575px) {
    .singal-banner {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        top: 6% !important;
    }
}

@media (max-width: 575px) {
    .singal-banner h2 {
        white-space: normal !important;
    }
}

.product-banner {
    height: 349px;
}

@media (max-width: 992px) {
    .product-banner {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .product-banner {
        height: 150px;
    }
}

.product-banner .banner-text {
    left: 50%;
    top: 50%;
    bottom: unset !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.singalview {
    padding-bottom: 54px;
    height: 354px;
}

@media (max-width: 575px) {
    .singalview {
        height: auto;
        padding-bottom: 20px;
    }
}

.singalview .product-view-card {
    position: relative;
    top: -50px;
    background-color: transparent !important;
}

@media (max-width: 575px) {
    .singalview .product-view-card {
        position: relative;
    }
}

.singalview .footer-card-details {
    margin-top: 22px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.singalview .footer-card-details .change {
    color: #4e93f2;
    font-size: 11px;
    line-height: 12px;
}

.singalview .footer-card-details .change a {
    text-decoration: none;
}

.singalview .footer-card-details .card-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.singalview .footer-card-details .card-info p {
    font-size: 15px;
    line-height: 21px;
    font-weight: 300;
    color: #a8a8a8;
    padding-left: 16px;
}

@media (max-width: 575px) {
    .singalview .footer-card-details .card-info p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .singalview .footer-card-details .card-info {
        margin-bottom: 15px;
    }
}

@media (max-width: 992px) {
    .singalview .footer-card-details .promo-code {
        margin-top: 15px;
    }
}

.singalview .footer-card-details .promo-code .code-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.singalview .footer-card-details .promo-code .code-box input {
    border: none;
    background-color: #ffffff;
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
    height: 29px;
}

.singalview .footer-card-details .promo-code .code-box input::-webkit-input-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.singalview .footer-card-details .promo-code .code-box input:-moz-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.singalview .footer-card-details .promo-code .code-box input::-moz-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.singalview .footer-card-details .promo-code .code-box input:-ms-input-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.singalview .footer-card-details .promo-code .code-box input::-ms-input-placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.singalview .footer-card-details .promo-code .code-box input::placeholder {
    font-size: 11px;
    line-height: 12px;
    font-weight: 300;
    color: #a8a8a8;
}

.singalview .footer-card-details .promo-code .code-box .btn-blue {
    position: absolute;
    right: 0;
    height: 29px;
    font-size: 11px;
    line-height: 12px;
}

.overlay-card .card-body {
    padding: 18px 25px 40px 25px;
    position: relative;
}

.overlay-card .card-body .overlay-btn {
    position: absolute;
    width: 140px;
    top: 93%;
    right: 23px;
    height: 39px;
    padding: 10px;
    font-size: 14px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.overlay-card .card-body .card-text-light {
    font-size: 16px;
    line-height: 18px;
}

.overlay-card .card-body .card-text-light:first-child {
    color: #a8a8a8;
}

.overlay-card .card-body .card-text-black {
    font-size: 15px;
    line-height: 17px;
}

.overlay-card .card-body .card-text-pink {
    font-size: 15px;
    line-height: 17px;
    font-weight: bold;
    color: #ef4e86;
}

.overlay-card .card-body hr {
    margin: 10px 0px;
}

.banner-footer {
    background-color: #ef4e86 !important;
    padding: 30px 0px;
}

.banner-footer .banner-text h1 {
    font-size: 75px;
    line-height: 86px;
    font-weight: bold;
    color: #ffffff;
}

@media (max-width: 575px) {
    .banner-footer .banner-text h1 {
        font-size: 55px;
        line-height: 70px;
    }
}

.banner-footer .banner-text h2 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 400;
    color: #ffffff;
}

@media (max-width: 575px) {
    .banner-footer .banner-text h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

.banner-footer .banner-text .btn {
    margin-top: 18px;
}

/* .banner-fullwidth {
    position: relative;
    overflow-x: hidden;
} */

/* .banner-fullwidth::after {
    content: url(../assets/images/icons/Group\ 2808.png);
    position: absolute;
    z-index: 999;
    bottom: 0;
    right: -90px;
} */

/* @media (max-width: 575px) {
    .banner-fullwidth .banner {
        height: 230px !important;
    }
} */

.becamepartner .card-sort {
    background-color: #ffffff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.becamepartner .card-sort .card-top {
    border: none;
}

.becamepartner .card-sort .card-text,
.becamepartner .card-sort .product-view-card .card-body .card-body-top .card-left .card-text-light,
.product-view-card .card-body .card-body-top .card-left .becamepartner .card-sort .card-text-light {
    padding-bottom: 23px;
}

.becamepartner .card-sort .card-text h3,
.becamepartner .card-sort .product-view-card .card-body .card-body-top .card-left .card-text-light h3,
.product-view-card .card-body .card-body-top .card-left .becamepartner .card-sort .card-text-light h3 {
    font-size: 29px;
    font-weight: 300;
    line-height: 33px;
}

.becamepartner .card-sort .card-text h4,
.becamepartner .card-sort .product-view-card .card-body .card-body-top .card-left .card-text-light h4,
.product-view-card .card-body .card-body-top .card-left .becamepartner .card-sort .card-text-light h4 {
    font-size: 29px;
    line-height: 33px;
    font-weight: bold;
    color: #ef4e86;
}

.add-section {
    margin-top: 40px;
    padding-top: 50px;
    padding-bottom: 38px;
    background-color: #ef4e86;
    margin-bottom: 64px;
}

@media (max-width: 575px) {
    .add-section {
        margin-bottom: 35px;
    }
}

.add-section .content-box h2 {
    position: relative;
    color: #ffffff;
    font-size: 63px;
    line-height: 76px;
    font-weight: 700;
    margin-bottom: 49px;
}

@media (max-width: 575px) {
    .add-section .content-box h2 {
        font-size: 42px;
        line-height: 60px;
    }
}

.add-section .content-box h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: -100px;
    background-color: #ffffff;
}

@media (max-width: 575px) {
    .add-section .content-box h2::after {
        left: -20px;
    }
}

.add-section .content-box .list-item {
    padding: 0;
}

.add-section .content-box .list-item li {
    list-style-type: disc;
    color: #ffffff;
    font-size: 30px;
    line-height: 35px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-left: 20px;
}

@media (max-width: 1150px) {
    .add-section .content-box .list-item li {
        margin-left: 20px;
    }
}

@media (max-width: 992px) {
    .add-section .content-box .list-item li {
        margin-left: 20px;
    }
}

@media (max-width: 575px) {
    .add-section .content-box .list-item li {
        font-size: 20px;
        line-height: 13px;
        margin-bottom: 25px;
        margin-left: 20px;
    }
}

.add-section .image-box {
    position: absolute;
    bottom: -webkit-calc(-150px);
    bottom: -moz-calc(-150px);
    bottom: calc(-150px);
}

@media (max-width: 992px) {
    .add-section .image-box {
        position: relative;
        bottom: 0;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .add-section .image-box {
        position: relative;
        bottom: 0;
    }
}

.add-section .tagline-img {
    position: absolute;
    right: -webkit-calc(-50px);
    right: -moz-calc(-50px);
    right: calc(-50px);
}

@media (max-width: 992px) {
    .add-section .tagline-img {
        right: 0;
        top: 0;
    }
}

@media (max-width: 575px) {
    .add-section .tagline-img {
        display: none;
    }
}

.rental-benfits .row {
    row-gap: 23px;
    margin-top: 42px;
    margin-bottom: 50px;
}

@media (max-width: 575px) {
    .rental-benfits .row {
        margin-top: 15px;
    }
}

.rental-benfits .item {
    padding: 29px 28px;
    max-width: 269px;
    text-align: center;
    background-color: #ffffff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    max-height: 107px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
}

.rental-benfits .item p {
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    font-weight: 300;
}

.rental-benfits .footer-btn {
    max-width: 345px;
    margin: 0 auto;
}

.rental-benfits .footer-btn .btn {
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.rental-benfits span {
    background-color: #ffffff;
    height: 2px;
    display: block;
    margin-top: 40px;
    margin-bottom: 61px;
}

.faq-bottom {
    margin-top: 60px;
}

.faq-bottom .top-container h2 {
    font-size: 18px;
    line-height: 16px;
}

.faq-bottom .faq-item {
    margin-top: 42px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .faq-bottom .faq-item {
        margin-top: 25px;
    }
}

.faq-bottom .faq-item h2 {
    font-size: 35px;
    line-height: 41px;
    font-weight: bold;
    color: #ef4e86;
}

@media (max-width: 575px) {
    .faq-bottom .faq-item h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

.faq-bottom .faq-item p {
    padding-top: 26px;
    font-size: 25px;
    line-height: 30px;
    color: #1a1818;
}

@media (max-width: 575px) {
    .faq-bottom .faq-item p {
        padding-top: 12px;
        font-size: 18px;
        line-height: 27px;
    }
}

.mobile {
    display: none;
}

@media (max-width: 992px) {
    .mobile {
        display: block;
    }
}

@media (max-width: 575px) {
    .mobile {
        display: block;
    }
}

.bg-gray {
    background-color: #f5f5f5;
}

.items-map .map-box {
    max-width: 1219px;
    margin: 0 auto;
    background-color: #f5f5f5;
    padding: 28px 36px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    position: relative;
    top: -50px;
}

@media (max-width: 575px) {
    .items-map .map-box {
        top: -30px;
        max-width: 350px;
    }
}

.items-map .map-box .content-box h3 {
    font-size: 23px;
    line-height: 27px;
    font-weight: 300;
    color: #000000;
}

.items-map .map-box .content-box p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #000000;
    margin-top: 13px;
    margin-bottom: 10px;
}

.items-map .map-box .right-map {
    text-align: end;
}

.items-map .map-box .right-map h4 {
    font-size: 20px;
    line-height: 23px;
    color: #ef4e86;
}

.items-map .map-box .right-map .map {
    position: absolute;
    bottom: -50px;
    right: 30px;
}

@media (max-width: 575px) {
    .items-map .map-box .right-map .map {
        position: relative;
        bottom: -12px;
        right: 0;
    }
}

.item-view-list {
    margin-top: 15px !important;
}

.item-view-list .card-sort-rating {
    background-color: #fff;
}

.item-view-list .card-sort-rating .distance {
    color: #ef4e86 !important;
}

.item-view-list .card-sort-rating .card-text h3,
.item-view-list .card-sort-rating .product-view-card .card-body .card-body-top .card-left .card-text-light h3,
.product-view-card .card-body .card-body-top .card-left .item-view-list .card-sort-rating .card-text-light h3 {
    font-weight: 500;
}

.item-view-list .text-light {
    font-size: 20px;
    line-height: 23px;
    font-weight: 400;
    color: #95989a !important;
}

.signUp {
    padding-top: 28px;
    padding-bottom: 57px;
}

.signUp .signUp-form {
    margin-top: 11px;
}

.signUp .signUp-form .form-control {
    margin-bottom: 15px;
    border: none;
    padding-left: 20px;
}

.signUp .signUp-form .form-footer {
    margin-top: 17px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.signUp .signUp-form .form-footer p {
    color: #707070;
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
    white-space: nowrap;
}

.signUp .signUp-form .form-footer p b {
    font-weight: bold;
}

.signUp .signUp-form .form-footer .signup-bootom-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    width: 50%;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .signUp .signUp-form .form-footer .signup-bootom-btn {
        margin-top: 15px;
        width: 100%;
    }
}

.signUp .signUp-form .form-footer .signup-bootom-btn .btn-wrap {
    width: 30%;
}

@media (max-width: 992px) {
    .signUp .signUp-form .form-footer .signup-bootom-btn .btn-wrap {
        width: 40%;
    }
}

@media (max-width: 575px) {
    .signUp .signUp-form .form-footer .signup-bootom-btn .btn-wrap {
        width: 42%;
    }
}

.signUp .signUp-form .form-footer .signup-bootom-btn .btn-primary {
    width: 30%;
}

/* added css for changes */
.product-view-card .card-body .card-body-fotter .btn-primary,
.product-view-card .card-body .card-body-fotter .btn-dark {
    padding: 0.375rem 0.75rem;
    font-size: 15px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    height: 40px;
    width: 50%;
}

.product-view-card .card-body .card-body-fotter .btn-dark {
    min-width: 160px;
}

.menu-box .inner-container .sub-menu .row {
    justify-content: left;
}

.heading-items-filter h4 {
    font-size: 17px;
    line-height: 45px;
    color: #ef4e86;
}

.heading-items-filter .filter-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}

.heading-items-filter .filter-box .filter-btn {
    border: unset;
    background-color: unset;
    padding: 0;
    text-align: left;
}

.heading-items-filter .filter-box .filter-btn:hover,
.heading-items-filter .filter-box .filter-btn:focus,
.heading-items-filter .filter-box .filter-btn.active {
    color: #ef4e86;
}

.bg-gray-card {
    background-color: #f5f5f5 !important;
    padding: 17px 33px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.bg-gray-card .card-text,
.bg-gray-card .product-view-card .card-body .card-body-top .card-left .card-text-light,
.product-view-card .card-body .card-body-top .card-left .bg-gray-card .card-text-light {
    margin-bottom: 12px;
}

.product-display-card .card-text,
.product-display-card .product-view-card .card-body .card-body-top .card-left .card-text-light,
.product-view-card .card-body .card-body-top .card-left .product-display-card .card-text-light {
    margin-bottom: 4px;
}

.product-display-card .card-text h3,
.product-display-card .product-view-card .card-body .card-body-top .card-left .card-text-light h3,
.product-view-card .card-body .card-body-top .card-left .product-display-card .card-text-light h3 {
    font-size: 18px;
    font-weight: 700 !important;
    max-width: 100%;
}

.bg-gray-card .card-text h3,
.bg-gray-card .product-view-card .card-body .card-body-top .card-left .card-text-light h3,
.product-view-card .card-body .card-body-top .card-left .bg-gray-card .card-text-light h3 {
    font-size: 27px;
    line-height: 31px;
    font-weight: 700 !important;
    max-width: 100%;
}

.bg-gray-card .card-footer-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.product-display-card .card-footer-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

.bg-gray-card .card-footer-text .text-light {
    font-size: 16px;
    line-height: 18px;
}

.product-display-card .card-footer-text .text-light {
    font-size: 16px;
    line-height: 18px;
}

.bg-gray-card .card-footer-text .rating-star {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-display-card .card-footer-text .rating-star {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bg-gray-card .card-footer-text .rating-star .rating-point {
    font-size: 9px;
    line-height: 12px;
    color: #95989a;
    margin-left: 27px;
}

.product-display-card .card-footer-text .rating-star .rating-point {
    font-size: 11px;
    line-height: 12px;
    color: #95989a;
    margin-left: 27px;
}

.bg-gray-card .card-footer-text .price-tag {
    font-size: 10px;
    line-height: 22px;
    font-weight: 500;
    color: #ef4e86;
}

.product-display-card .card-footer-text .price-tag {
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    color: #ef4e86;
}

.order-detail .cart-card .card-img {
    float: left;
}

.order-detail .cart-card .card-body .card-top-header .card-title {
    font-size: 34px;
    line-height: 39px;
    margin-bottom: 12px;
}

.order-detail .cart-card .card-body .card-top-header h6 {
    font-size: 23px;
    line-height: 27px;
    color: #ef4e86;
}

.order-detail .cart-card .card-body .card-top-header .text-muted {
    font-size: 16px;
    line-height: 18px;
    color: #a8a8a8;
}

.order-detail .cart-card .card-body .card-top-header .card-text,
.order-detail .cart-card .product-view-card .card-body .card-top-header .card-body-top .card-left .card-text-light,
.product-view-card .order-detail .cart-card .card-body .card-top-header .card-body-top .card-left .card-text-light,
.order-detail .cart-card .product-view-card .card-body .card-body-top .card-left .card-top-header .card-text-light,
.product-view-card .order-detail .cart-card .card-body .card-body-top .card-left .card-top-header .card-text-light {
    font-size: 16px;
    line-height: 18px;
    color: #ef4e86;
}

.order-detail .cart-card .booking-confiromation {
    margin-top: 21px;
}

.order-detail .cart-card .booking-confiromation p {
    font-size: 13px;
    line-height: 20px;
    color: #343434;
    text-align: end;
    opacity: 45%;
}

.order-detail .cart-card .booking-confiromation p span {
    display: inline-block;
}

.order-detail .cart-card .booking-details h4 {
    font-size: 16px;
    line-height: 18px;
    color: #ef4e86;
    margin-bottom: 14px;
}

.order-detail .cart-card .booking-details .booking-details-row .item-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

@media (max-width: 575px) {
    .order-detail .cart-card .booking-details .booking-details-row .item-row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.order-detail .cart-card .booking-details .booking-details-row .item-row p {
    max-width: 33.3333333333vw;
    width: 100%;
    font-size: 13px;
}

@media (max-width: 575px) {
    .order-detail .cart-card .booking-details .booking-details-row .item-row p {
        max-width: 100vw;
    }
}

.order-detail .cart-card .booking-details .booking-details-row .item-row p span {
    padding-left: 3px;
}

.order-detail .cart-card .booking-details .booking-details-row .item-row p .colred {
    color: #ef4e86;
    text-transform: uppercase;
}

.order-detail .cart-card .booking-details .alert-box-gray {
    padding: 18px 20px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.order-detail .cart-card .booking-details .alert-box-gray p {
    font-size: 14px;
}

.order-detail .cart-card .booking-details .booking-details p {
    font-size: 14px;
    margin-bottom: 22px;
}

.order-detail .cart-card .booking-details .booking-details .itmes-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}

.order-detail .cart-card .booking-details .booking-details .itmes-row .item,
.order-detail .cart-card .booking-details .booking-details .itmes-row .footer-box .payment-data,
.order-detail .cart-card .booking-details .footer-box .booking-details .itmes-row .payment-data {
    max-width: 20vw;
    width: 100%;
}

.order-detail .cart-card .booking-details .booking-details .itmes-row .item:last-child,
.order-detail .cart-card .booking-details .booking-details .itmes-row .footer-box .payment-data:last-child,
.order-detail .cart-card .booking-details .footer-box .booking-details .itmes-row .payment-data:last-child {
    text-align: end;
}

.order-detail .cart-card .booking-details .booking-details .itmes-row .item p,
.order-detail .cart-card .booking-details .booking-details .itmes-row .footer-box .payment-data p,
.order-detail .cart-card .booking-details .footer-box .booking-details .itmes-row .payment-data p {
    font-size: 12px;
    margin-bottom: 12px;
}

.order-detail .cart-card .booking-details .booking-details .itmes-row .item p:first-child,
.order-detail .cart-card .booking-details .booking-details .itmes-row .footer-box .payment-data p:first-child,
.order-detail .cart-card .booking-details .footer-box .booking-details .itmes-row .payment-data p:first-child {
    color: #343434;
    opacity: 47%;
}

.order-detail .cart-card .booking-details .total .item,
.order-detail .cart-card .booking-details .total .footer-box .payment-data,
.order-detail .cart-card .booking-details .footer-box .total .payment-data {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.order-detail .cart-card .booking-details .total .item p,
.order-detail .cart-card .booking-details .total .footer-box .payment-data p,
.order-detail .cart-card .booking-details .footer-box .total .payment-data p {
    font-size: 12px;
    max-width: 7.1111111111vw;
    width: 100%;
    font-weight: bold;
}

.order-detail .cart-card .booking-details .total .item p:last-child,
.order-detail .cart-card .booking-details .total .footer-box .payment-data p:last-child,
.order-detail .cart-card .booking-details .footer-box .total .payment-data p:last-child {
    text-align: end;
    max-width: 64vw;
}

.order-detail .cart-card .booking-details .total .item p:first-child,
.order-detail .cart-card .booking-details .total .footer-box .payment-data p:first-child,
.order-detail .cart-card .booking-details .footer-box .total .payment-data p:first-child {
    max-width: 64vw;
}

.order-detail .cart-card .booking-details .total .promo-code {
    margin-top: 15px;
}

.order-detail .cart-card .booking-details .total .promo-code p {
    font-weight: 400;
}

.order-detail .cart-card .booking-details .footer-box .item,
.order-detail .cart-card .booking-details .footer-box .payment-data {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.order-detail .cart-card .booking-details .footer-box .item p,
.order-detail .cart-card .booking-details .footer-box .payment-data p {
    font-size: 18px;
    line-height: 21px;
    color: #ef4e86;
    font-weight: bold;
}

.order-detail .cart-card .booking-details .footer-box .payment-data {
    margin-top: 5px;
}

.order-detail .cart-card .booking-details .footer-box .payment-data p {
    font-size: 12px;
    line-height: 14px;
    color: #000000;
    font-weight: 400;
}

.order-detail .cart-card .booking-details .footer-box .payment-data .btn {
    font-size: 8px;
    line-height: 9px;
    height: 25px;
    text-transform: capitalize;
}

.text-light {
    color: #b1b3b5 !important;
}

/* ////////////////////modal css///////////////////////////// */
.invite_modal .modal_custom_header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.invite_modal .modal_custom_header .header_content span {
    color: #d8d6d6;
    cursor: pointer;
}

.invite_modal .modal_content_container h4 {
    font-size: 24px;
    line-height: 28px;
    color: #ef4e86;
    font-weight: bold;
}

.pink {
    color: #ef4e86;
}

.invite_modal .modal_content_container .para_1 {
    margin-top: 10px;
    color: #5a5a5a;
}

.invite_modal .modal_content_container .para_2 {
    margin-top: 10px;
    color: #b1b3b5;
}

.invite_modal .modal_content_container .para_3 {
    margin-top: 10px;
    color: #b1b3b5;
}

.invite_modal .modal_content_container .custom_input {
    margin-top: 15px;
    background-color: #d8d6d6;
    color: #ffffff;
    border: none;
}

.invite_modal .modal_content_container .custom_input::placeholder {
    color: #ffffff !important;
}

.invite_modal .modal_footer {
    margin-top: 20px;
}

/* ///////////////////////////////////////////////////////// */

.booking-detail .modal-dialog {
    max-width: 737px;
    width: 100%;
}

.booking-detail .modal-dialog .modal-content .modal-body {
    padding: 43px 52px;
}

.booking-detail .modal-dialog .modal-content .modal-body .input-group {
    max-width: 564px;
    margin: 15px auto;
}

.booking-detail .modal-dialog .modal-content .modal-body .btn-primary {
    max-width: 110px;
    display: block;
    margin: 0 auto;
    font-size: 16px;
}

.booking-detail .modal-dialog .modal-content .modal-body .btn-light {
    max-width: 190px;
    display: block;
    margin: 0 auto;
    margin-top: 16px;
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
    background: #d8d6d6;
    border-radius: 8px;
}

.booking-detail .modal-dialog .modal-content .modal-body .btn-light:hover {
    background-color: #5a5a5a;
}

.btn-light:hover {
    background-color: #5a5a5a !important;
}

/* refund section css start */
.depositeredund .modal-dialog {
    max-width: 737px;
    width: 100%;
}

.depositeredund .modal-dialog .modal-body {
    padding: 40px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.depositeredund .modal-dialog .modal-body .modal__body-content {
    width: 100%;
}

.depositeredund .modal-dialog .modal-body .modal__body-content h2 {
    font-size: 25px;
    line-height: 29px;
    color: #ef4e86;
    font-weight: bold;
    text-align: center;
}

.depositeredund .modal-dialog .modal-body .modal__body-content p {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    margin-top: 15px;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .select-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 86px;
    margin-top: 26px;
}

@media (max-width: 575px) {
    .depositeredund .modal-dialog .modal-body .modal__body-content .select-box {
        gap: 15px;
    }
}

.depositeredund .modal-dialog .modal-body .modal__body-content .select-box .checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .select-box .checkbox input[type="checkbox"]:checked+label {
    background-color: #ef4e86;
    color: #fff;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .select-box .checkbox input[type="checkbox"]:checked+label span {
    color: #fff;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .select-box .checkbox label {
    max-width: 210px;
    width: 100%;
    background-color: #f0f0f0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    text-align: center;
    padding: 11px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 25px;
    line-height: 29px;
    color: #ef4e86;
    font-weight: bold;
    cursor: pointer;
    min-height: 120px;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .select-box .checkbox label span {
    font-size: 14px;
    line-height: 16px;
    color: black;
    font-weight: 400;
    display: block;
    margin-top: 13px;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .btn-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 86px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 21px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .depositeredund .modal-dialog .modal-body .modal__body-content .btn-box {
        gap: 10px;
    }
}

.depositeredund .modal-dialog .modal-body .modal__body-content .btn-box .btn {
    max-width: 210px;
    width: 100%;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .btn-box .btn-primary {
    font-size: 16px;
    line-height: 18px;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .btn-box .btn-light {
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #d8d6d6;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .btn-box .btn-light:hover {
    background-color: #a8a8a8;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .not-eligebel-box {
    max-width: 496px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 0 auto;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 11px 18px;
    margin-top: 13px;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .not-eligebel-box h1 {
    font-size: 25px;
    line-height: 29px;
    color: #ef4e86;
    font-weight: bold;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .not-eligebel-box .point-box {
    margin-top: 12px;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .not-eligebel-box .point-box span {
    font-size: 14px;
    line-height: 16px;
    color: #000;
    display: block;
    text-align: left;
}

.depositeredund .modal-dialog .modal-body .modal__body-content .not-eligebel-box span {
    display: block;
    text-align: right;
    width: 100%;
    font-size: 10px;
    line-height: 11px;
    margin-top: 10px;
}

.depositeamount .modal-dialog {
    max-width: 589px;
    width: 100%;
}

.depositeamount .modal-dialog .modal-content {
    border: unset;
}

.depositeamount .modal-dialog .modal-content .modal-body {
    padding: 33px 20px;
}

.depositeamount .modal-dialog .modal-content .modal-body .deposit-amount-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.depositeamount .modal-dialog .modal-content .modal-body .deposit-amount-box h2 {
    font-size: 26px;
    line-height: 45px;
    color: #ef4e86;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
}

.depositeamount .modal-dialog .modal-content .modal-body .deposit-amount-box span {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 46px;
    line-height: 45px;
    font-weight: bold;
    margin: 15px 0px;
}

.depositeamount .modal-dialog .modal-content .modal-body .deposit-amount-box h3 {
    font-size: 26px;
    line-height: 45px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}

.depositeamount .modal-dialog .modal-content .modal-body .deposit-amount-box p {
    font-size: 18px;
    line-height: 45px;
    color: #000000;
    text-align: center;
}

.depositeamount .modal-dialog .modal-content .modal-body .deposit-amount-box .btn {
    max-width: 170px;
    width: 100%;
    margin: 0 auto;
}

/* refund section css end */

/* new css */

.dollar-sec .inner-container {
    max-width: 992px;
    width: 100%;
    padding: 0;
}

@media (max-width: 992px) {
    .dollar-sec .inner-container {
        padding: 0 40px;
    }
}

@media (max-width: 575px) {
    .dollar-sec .inner-container {
        padding: 10px 30px;
    }
}

.dollar-sec .inner-container .row {
    gap: 36px;
    margin-top: 29px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.dollar-sec .top-container {
    padding: 0;
}

.dollar-sec .price-content-box {
    max-width: 309px;
    width: 100%;
    padding: 0;
}

@media (max-width: 992px) {
    .dollar-sec .price-content-box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -webkit-align-items: start;
        -moz-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 40px;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .dollar-sec .price-content-box {
        max-width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.dollar-sec .price-dolar {
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 22px 0px;
    max-width: 309px;
    width: 100%;
}

@media (max-width: 575px) {
    .dollar-sec .price-dolar {
        max-width: 100%;
    }
}

.dollar-sec .price-dolar p {
    font-size: 73px;
    line-height: 97px;
    color: #ef4e86;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dollar-sec .price-dolar p .amount {
    font-size: 55px;
    line-height: 64px;
    color: #ef4e86;
    opacity: 1;
}

.dollar-sec .price-dolar h3 {
    font-size: 17px;
    line-height: 20px;
    color: #ef4e86;
    font-weight: bold;
    text-align: center;
}

.dollar-sec .price-dolar h3 span {
    margin-left: 5px;
    cursor: pointer;
}

.dollar-sec .price-dolar .btn-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(112, 112, 112, 0.3);
}

.dollar-sec .dolar-content {
    max-width: 309px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 32px 20px;
    margin-top: 13px;
}

@media (max-width: 575px) {
    .dollar-sec .dolar-content {
        max-width: 100%;
    }
}

.dollar-sec .dolar-content h3 {
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    color: #ef4e86;
    text-align: start;
}

.dollar-sec .dolar-content h3 span {
    margin-right: 3px;
}

.dollar-sec .dolar-content p {
    font-size: 13px;
    line-height: 15px;
    font-weight: 300;
    margin-top: 12px;
}

.dollar-sec .table-box {
    background-color: rgba(255, 255, 255, 0.7);
    max-width: 630px;
    width: 100%;
    padding: 0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 36px 34px;
}

@media (max-width: 992px) {
    .dollar-sec .table-box {
        max-width: 100%;
    }
}

.dollar-sec .table-box .table-heder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dollar-sec .table-box .table-heder h2 {
    font-size: 17px;
    line-height: 20px;
    font-weight: 700;
    color: #ef4e86;
}

.dollar-sec .table-box .table-heder .select-icon::after,
.dollar-sec .table-box .table-heder .product-view-card .card-body .card-body-fotter .card-btn-box-fotter .input-card-box::after,
.product-view-card .card-body .card-body-fotter .card-btn-box-fotter .dollar-sec .table-box .table-heder .input-card-box::after {
    top: 0;
    right: 10px;
}

.dollar-sec .table-box .table-heder .select-box {
    height: 23px;
    max-width: 97px;
}

.dollar-sec .table-box .table-heder .select-box .form-select {
    font-size: 10px;
    line-height: 11px;
    background-color: #ffffff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    height: 23px;
    padding: 6px 10px;
    border: unset;
}

.dollar-sec .table-box .table-light .table thead {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.dollar-sec .table-box .table-light .table thead tr th {
    font-size: 13px;
    line-height: 15px;
    color: #343434;
    font-weight: 500;
}

.dollar-sec .table-box .table-light .table thead tr th p {
    width: 100px;
    padding: 7.5px 0px;
}

.dollar-sec .table-box .table-light .table tbody tr td {
    font-size: 12px;
    line-height: 14px;
    color: #343434;
    font-weight: 300;
    vertical-align: middle;
}

.dollar-sec .table-box .table-light .table tbody tr td:last-child p {
    width: 190px;
    padding: 7.5px 0px;
}

.dollar-sec .table-box .table-light .table tbody tr td p {
    width: 100px;
}

.active-td p {
    color: #ef4e86 !important;
}

.billing .table-box {
    max-width: 100%;
}

.billing .table-box .table-heder .select-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.billing .table-box .table-heder .select-row .select {
    width: 70px;
}

.billing .table-box .table-heder .select-row .select:last-child {
    width: 288px;
}

.billing .table-box .table-light thead tr th p {
    width: 74px !important;
}

.billing .table-box .table-light thead:last-child p {
    width: 140px !important;
}

.billing .table-box .table-light tbody tr td p {
    width: 74px !important;
}

.billing .table-box .table-light tbody tr td:last-child p {
    width: 140px !important;
}

.billing-box {
    background-color: rgba(255, 255, 255, 0.7);
    max-width: 166px;
    width: 100%;
    padding: 0;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.billing-box p {
    font-size: 10px;
    font-weight: bold;
    line-height: 11px;
    color: #ef4e86;
}

.billing-box p:first-child {
    font-size: 33px;
    font-weight: bold;
    line-height: 38px;
    color: #000000;
    opacity: 0.6;
    margin-bottom: 5px;
}

.pending-td p {
    color: #4e93f2 !important;
}

.signUp {
    padding-top: 28px;
    padding-bottom: 57px;
}

.signUp .signUp-form {
    margin-top: 11px;
}

.signUp .signUp-form .form-control {
    margin-bottom: 15px;
    border: none;
    padding-left: 20px;
}

.signUp .signUp-form .form-footer {
    margin-top: 17px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.signUp .signUp-form .form-footer p {
    color: #707070;
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
    white-space: nowrap;
}

.signUp .signUp-form .form-footer p b {
    font-weight: bold;
}

.signUp .signUp-form .form-footer .signup-bootom-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    width: 50%;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .signUp .signUp-form .form-footer .signup-bootom-btn {
        margin-top: 15px;
        width: 100%;
    }
}

.signUp .signUp-form .form-footer .signup-bootom-btn .btn-wrap {
    width: 30%;
}

@media (max-width: 992px) {
    .signUp .signUp-form .form-footer .signup-bootom-btn .btn-wrap {
        width: 40%;
    }
}

@media (max-width: 575px) {
    .signUp .signUp-form .form-footer .signup-bootom-btn .btn-wrap {
        width: 42%;
    }
}

.signUp .signUp-form .form-footer .signup-bootom-btn .btn-primary {
    width: 30%;
}

.search-button-icon {
    display: block;
    position: absolute;
    right: -6px;
    width: 50px;
    height: 60px;
    scale: 0.17;
    top: 0px;
    cursor: pointer;
    background: transparent;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* promotions page css start */
.promotion .inner-container {
    max-width: 1090px;
}

.promotion .inner-container .row {
    row-gap: 19px;
}

.promotion .main-heading {
    margin-top: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 44px;
}

.promotion .main-heading h2 {
    font-size: 34px;
    line-height: 39px;
    font-weight: bold;
    color: #ef4e86;
}

.promotion .main-heading .promo-code-form-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
}

.promotion .main-heading .promo-code-form-box input {
    min-width: 347px;
    width: 100%;
    border: unset;
    background-color: white;
    height: 40px;
    padding-left: 20px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.promotion .main-heading .promo-code-form-box input::-webkit-input-placeholder {
    color: #a8a8a8 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.promotion .main-heading .promo-code-form-box input:-moz-placeholder {
    color: #a8a8a8 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.promotion .main-heading .promo-code-form-box input::-moz-placeholder {
    color: #a8a8a8 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.promotion .main-heading .promo-code-form-box input:-ms-input-placeholder {
    color: #a8a8a8 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.promotion .main-heading .promo-code-form-box input::-ms-input-placeholder {
    color: #a8a8a8 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.promotion .main-heading .promo-code-form-box input::placeholder {
    color: #a8a8a8 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.promotion .main-heading .promo-code-form-box .btn-blue {
    height: 40px;
    width: 85px;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
}

.invite-card {
    background-color: #ffffff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 29px 30px;
}

.invite-card p {
    font-size: 17px;
    line-height: 32px;
    color: #535353;
}

.invite-card .text-box-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 11px;
}

.invite-card .text-box-row .left-text-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 9px;
}

.invite-card .text-box-row .left-text-box .text-box h6 {
    color: #535353;
    font-size: 14px;
    line-height: 15px;
}

.invite-card .text-box-row .left-text-box .text-box p {
    font-size: 7px;
    line-height: 16px;
    color: #535353;
}

.invite-card .text-box-row .btn-primary {
    width: 81px;
    height: 31px;
    font-size: 10px;
    line-height: 11px;
}

/* promotions page css end */

.tagline-img2 {
    max-width: 150px;
    height: 150px;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tagline-img2 p {
    text-align: center;
    font-size: 40px;
    line-height: 40px;
    color: #fff;
}

/* chat page styling  */

/*
.chat-container {
    max-width: 1151px;
    width: 100%;
    margin: 0 auto;
    margin-top: 67px;
    margin-bottom: 50px;
    font-family: "helvetica_neueregular";
}

.chat-wrapper {
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    min-height: 520px;
    max-height: 520px;
}

.chat-heading h2 {
    font-size: 34px;
    line-height: 39px;
    color: #ef4e86;
    font-weight: bold;
    margin-bottom: 21px;
}

.sidebar {
    border-right: 1px solid rgb(112, 112, 112, 0.2);
    overflow-y: auto;
    max-width: 350px;
    width: 100%;
    scrollbar-width: thin;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 28px 20px 22px 30px;
    align-items: center;
    border-bottom: 1px solid rgb(112, 112, 112, 0.2);
}

.top-bar h3 {
    color: #ef4e86;
    font-size: 17px;
    line-height: 20px;
    font-weight: bold;
}

.top-bar .all-chat {
    display: flex;
    gap: 5px;
    padding: 6px 18px;
    padding-right: 39px;
    border-radius: 8px;
    background-color: #fff;
    position: relative;
}

.top-bar .all-chat:after {
    content: url(../assets/images/Images/BackIcon.png);
    position: absolute;
    top: 0%;
    right: 17px;
    rotate: 90deg;
    z-index: 999;
}

.top-bar .all-chat p {
    font-size: 10px;
    font-weight: 400;
}

.search-container {
    position: relative;
    max-width: 332px;
    width: 100%;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 10px;
}

.search-container .search-input {
    width: 100%;
    border: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 5px 15px;
}

.search-container .search-input::placeholder {
    font-size: 9px;
    font-weight: 400;
    line-height: 9px;
}

.search-container .search-icon {
    position: unset;
    max-width: unset;
}

.search-container .search-icon:after {
    top: 3%;
}

.user-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.user-item {
    padding: 27px 20px 27px 23px;
    border-bottom: 1px solid rgb(112, 112, 112, 0.2);
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    padding-bottom: 27px;
    position: relative;
}

.user-item .user-pic {
    max-width: 48px;
    width: 100%;
}

.user-item .user-pic img {
    width: 100%;
    height: 36px;
    border-radius: 8px;
}

.user-item .user-info {
    max-width: 220px;
}

.user-item .user-info h4 {
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
    position: relative;
}

.user-item .user-info h4 span{
    width: 10px;
    height: 10px;
    background-color: #EF4E86;
    border-radius: 50%;
    display: inline-block;
}


.user-item .user-info p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    font-size: 12px;
    line-height: 14px;
    color: #a8a8a8;
    font-family: "helvetica_neuelight";
    font-weight: 300;
}

.user-item .time-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 20px;
}

.user-item .time-info span:first-child {
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    color: #343434;
}

.user-item .time-info span:nth-child(2) {
    line-height: normal;
    font-weight: 600;
    color: #A8A8A8;
}

.chat {
    width: 100%;
}

.chat .chat-wrap {
    display: flex;
    height: calc(100% - 78px);
}

.chat .chat-box {
    width: 100%;
    padding: 26px 36px 30px 10px;
}

.chat-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(112, 112, 112, 0.2);
    padding: 20px 20px 20px;
    position: relative;
}

.chat .profile-pic {
    width: 47px;
    height: 37px;
    margin-right: 10px;
    border-radius: 4px;
}

.chat .user-name {
    display: flex;
    flex-direction: column;
}

.chat .user-name span {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    margin-bottom: 1px;
    text-transform: uppercase;
}

.chat .user-name a {
    text-decoration: underline;
    font-size: 11px;
    line-height: 12px;
    color: #4e93f2;
    font-family: "helvetica_neuelight";
}

.chat-name h4 {
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
    text-transform: uppercase;
}

.chat-name {
    display: flex;
    gap: 2px;
    align-items: center;
}

.chat-name .date {
    margin-left: 6px;
}

.chat-text {
    display: flex;
    gap: 8px;
    align-items: start;
    margin-bottom: 12px;
}

.chat-text img {
    width: 34px;
    height: 26px;
    border-radius: 4px;
    object-fit: cover;
}

.chat-name span {
    font-size: 10px;
    line-height: 11px;
    color: #a8a8a8;
    font-family: "helvetica_neuelight";
    font-weight: 300;
}

.chat-txt-wrp p {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}

.chat-body {
    padding: 10px;
    overflow-y: auto;
    scrollbar-width: none;
    flex: 1;
    height: 236px;
}

.chat-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
}

.chat-input {
    flex: 1;
    padding: 20px 20px;
    border: 0;
    border-radius: 4px;
    background-color: #f5f5f5;
    padding-right: 70px;
}

.chat-input:focus-visible {
    outline: none;
}

.send-button {
    padding: 7px 9px;
    border: none;
    border-radius: 6px;
    background-color: #4e93f2;
    color: #fff;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 10px;
    line-height: 11px;
    font-family: "helvetica_neuemedium";
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.send-button:hover {
    background-color: #0056b3;
}

.chat .details {
    border-left: 1px solid rgb(112, 112, 112, 0.2);
    padding: 20px 18px 0px 18px;
    max-width: calc(100% - 600px);
    width: 100%;
}

.chat .details h4 {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    margin-bottom: 18px;
}

.order-wrp {
    display: flex;
    gap: 6px;
    margin-bottom: 32px;
}

.order-wrp img {
    width: 46px;
    height: 36px;
    border-radius: 4px;
}

.order-wrp .order-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-wrp .order-info h5 {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    font-family: "helvetica_neuemedium";
}

.order-wrp .order-info a {
    font-size: 10px;
    line-height: 11px;
    font-weight: 400;
    color: #ef4e86;
}

.order-details .ord-detail {
    display: flex;
    align-items: center;
    gap: 4px;
}

.order-details .ord-detail.address {
    margin-top: 19px;
}

.order-details .ord-detail:not(:last-child) {
    margin-bottom: 10px;
}

.order-details .ord-detail p,
.order-details .ord-detail span {
    font-size: 10px;
    line-height: 11px;
    font-weight: 500;
    color: #343434;
}

.three-dots {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.three-dots .dot {
    background-color: #bbb;
    height: 5px;
    width: 5px;
    display: inline-block;
    border-radius: 50%;
}

.thumbnail-box {
    cursor: pointer;
}

.thumbnail-img {
    object-fit: cover !important;
    width: 89px;
    height: 84px;
    border-radius: 10px;
    border: 1px solid #ef4e86;
}

.item-card-slide {
    position: relative;
}

.item-card-slide button {
    position: absolute;
    border-radius: 50%;
    background-color: transparent;
    color: #000;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
}

.item-card-slide button:hover {
    background-color: #00000062;
}

.item-card-slide button#prevBtn,
.item-card-slide button#nextBtn {
    left: 2px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
}

.item-card-slide button#prevBtn::before,
.item-card-slide button#nextBtn::before {
    background-image: url(./images/Images/previous-back-svgrepo-com.svg);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
}

.item-card-slide button#nextBtn::before {
    transform: rotate(180deg);
}

.item-card-slide button#nextBtn {
    right: 2px;
    left: unset;
}

@media (max-width: 768px) {
    .item-thumbnail .row .thumbnail-box {
        width: fit-content;
    }

    .chat-wrapper {
        flex-direction: column;
        max-height: 100%;
    }

    .sidebar {
        max-width: 100%;
    }

    .chat .chat-wrap{
        flex-direction: column;
    }

    .chat .details{
        max-width: 100%;
    }
} */

/* .order-details .ord-detail p {
    font-weight: 600;
}
} */
/* chat page styling */


.chat-input-new {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 10px;
}

.chat-input-new .img-sec {
    max-width: 48px;
    width: 100%;
}


.chat-input-new .img-sec img {
    max-width: 100%;
    width: 100%;
    height: 38px;
    object-fit: cover;
    border-radius: 4px;
}

.chat-input-new .content-sec .top-one {
    display: flex;
}

.chat-input-new .content-sec {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.chat-input-new .content-sec .top-one h2 {
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    color: #000000;
    padding-right: 7px;
}

.chat-input-new .content-sec .top-one p {
    font-size: 10px;
    line-height: 11px;
    font-weight: 300;
    color: #A8A8A8;
    padding-left: 7px;
    border-left: 1px solid #A8A8A8;
    height: 11.5px;
}

.chat-input-new .content-sec p {
    font-size: 9px;
    line-height: 10px;
    font-weight: 300;
    color: #939191;
}

.active-tick {
    display: flex;
    align-items: center;
    height: 20px;
}

.active-tick svg {
    vertical-align: baseline;
}


.item-realtive-card .card-sort-rating .card-text h3 {
    max-width: 100%;
}

.banner .banner-main .banner-btn {
    top: 45%;
}

.banner .banner-main .banner-btn.singal-banner {
    top: 40% !important;
}

.banner .banner-main .banner-btn.singal-banner h1 {
    white-space: unset !important;
}

/* 21-11-24 */
/* chat page styling */
.chat-container {
    max-width: 1171px;
    width: 100%;
    margin: 0 auto;
    margin-top: 67px;
    margin-bottom: 50px;
    font-family: "helvetica_neueregular";
    padding: 0 10px;
}

.chat-wrapper {
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    min-height: 520px;
    max-height: 520px;
}

.chat-heading h2 {
    font-size: 34px;
    line-height: 39px;
    color: #ef4e86;
    font-weight: bold;
    margin-bottom: 21px;
    font-family: "WebFont", Arial, sans-serif;
}

.sidebar {
    border-right: 1px solid rgb(112, 112, 112, 0.2);
    overflow-y: auto;
    max-width: 350px;
    width: 100%;
    scrollbar-width: thin;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 28px 20px 22px 30px;
    align-items: center;
    border-bottom: 1px solid rgb(112, 112, 112, 0.2);
}

.top-bar h3 {
    color: #ef4e86;
    font-size: 17px;
    line-height: 20px;
    font-weight: bold;
}

.top-bar .all-chat {
    display: flex;
    gap: 5px;
    padding: 6px 18px;
    padding-right: 39px;
    border-radius: 8px;
    background-color: #fff;
    position: relative;
}

.top-bar .all-chat:after {
    content: url(../assets/images/Images/BackIcon.png);
    position: absolute;
    top: 0%;
    right: 17px;
    rotate: 90deg;
    z-index: 999;
}

.top-bar .all-chat p {
    font-size: 10px;
    font-weight: 400;
}

.search-container {
    position: relative;
    max-width: 332px;
    width: 100%;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 0 5px;
}

.search-container .search-input {
    width: 100%;
    border: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 5px 15px;
}

.search-container .search-input::placeholder {
    font-size: 9px;
    font-weight: 400;
    line-height: 9px;
}

.search-container .search-icon {
    position: unset;
    max-width: unset;
}

.search-container .search-icon:after {
    top: 3%;
    transform: rotate(-60deg) translate(0px, 30px);
    right: 20px;
}

.user-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.user-item {
    padding: 20px 15px;
    border-bottom: 1px solid rgb(112, 112, 112, 0.2);
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: start;
    gap: 20px;
    padding-bottom: 27px;
    position: relative;
    justify-content: space-between;
    width: 100%;
}

.user-item .useritem-namewithtitle {
    display: flex;
    gap: 20px;
    width: calc(85% - 20px);
}


.user-item .user-pic {
    max-width: 48px;
    width: 100%;
}

.user-item .user-pic img {
    width: 100%;
    height: 36px;
    border-radius: 8px;
}

.user-item .user-info {
    max-width: 220px;
}

.user-item .user-info h4 {
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
    position: relative;
}

.user-item .user-info h4 span {
    width: 10px;
    height: 10px;
    background-color: #EF4E86;
    border-radius: 50%;
    display: inline-block;
}


.user-item .user-info p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    font-size: 12px;
    line-height: 14px;
    color: #a8a8a8;
    font-family: "helvetica_neuelight";
    font-weight: 300;
}

.user-item .time-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 20px;
    position: unset;
}

.user-item .time-info span:first-child {
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    color: #343434;
}

.user-item .time-info span:nth-child(2) {
    line-height: normal;
    font-weight: 600;
    color: #A8A8A8;
}

.chat {
    width: 100%;
}

.chat .chat-wrap {
    display: flex;
    height: calc(100% - 78px);
}

.chat .chat-box {
    width: 65%;
    padding: 26px 36px 30px 10px;
}

.chat-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(112, 112, 112, 0.2);
    padding: 20px 20px 20px;
}

.chat .profile-pic {
    width: 47px;
    height: 37px;
    margin-right: 10px;
    border-radius: 4px;
}

.chat .user-name {
    display: flex;
    flex-direction: column;
}

.chat .user-name span {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    margin-bottom: 1px;
    text-transform: uppercase;
}

.chat .user-name a {
    text-decoration: underline;
    font-size: 11px;
    line-height: 12px;
    color: #4e93f2;
    font-family: "helvetica_neuelight";
}

.chat-name h4 {
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
    text-transform: uppercase;
}

.chat-name {
    display: flex;
    gap: 2px;
    align-items: center;
}

.chat-name .date {
    margin-left: 6px;
}

.chat-text {
    display: flex;
    gap: 8px;
    align-items: start;
    margin-bottom: 12px;
}

.chat-text img {
    width: 34px;
    height: 26px;
    border-radius: 4px;
    object-fit: cover;
}

.chat-name span {
    font-size: 10px;
    line-height: 11px;
    color: #a8a8a8;
    font-family: "helvetica_neuelight";
    font-weight: 300;
}

.chat-txt-wrp p {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}

.chat-body {
    padding: 10px;
    overflow-y: auto;
    scrollbar-width: none;
    flex: 1;
    height: 236px;
}

.chat-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
}

.chat-footer button.send-button {
    top: 50%;
    transform: translateY(-50%);
}

.chat-input {
    flex: 1;
    padding: 20px 20px;
    border: 0;
    border-radius: 4px;
    background-color: #f5f5f5;
    padding-right: 70px;
    font-size: 12px;
    color: #000;
}

.chat-input::placeholder {
    color: #dadada6f;
}

.chat-input:focus-visible {
    outline: none;
}

.send-button {
    padding: 7px 9px;
    border: none;
    border-radius: 6px;
    background-color: #4e93f2;
    color: #fff;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 10px;
    line-height: 11px;
    font-family: "helvetica_neuemedium";
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

.send-button:hover {
    background-color: #0056b3;
}

.chat .details {
    border-left: 1px solid rgb(112, 112, 112, 0.2);
    padding: 20px 18px 0px 18px;
    max-width: unset;
    width: 35%;
}

.chat .details h4 {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    margin-bottom: 18px;
}

.order-wrp {
    display: flex;
    gap: 6px;
    margin-bottom: 32px;
}

.order-wrp img {
    width: 46px;
    height: 36px;
    border-radius: 4px;
}

.order-wrp .order-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-wrp .order-info h5 {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    font-family: "helvetica_neuemedium";
}

.order-wrp .order-info a {
    font-size: 10px;
    line-height: 11px;
    font-weight: 400;
    color: #ef4e86;
}

.order-details .ord-detail {
    display: flex;
    align-items: center;
    gap: 4px;
}

.order-details .ord-detail.address {
    margin-top: 19px;
}

.order-details .ord-detail:not(:last-child) {
    margin-bottom: 10px;
}

.order-details .ord-detail p,
.order-details .ord-detail span {
    font-size: 10px;
    line-height: 11px;
    font-weight: 500;
    color: #343434;
}

.three-dots {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.three-dots .dot {
    background-color: #bbb;
    height: 5px;
    width: 5px;
    display: inline-block;
    border-radius: 50%;
}

.thumbnail-box {
    cursor: pointer;
}

.thumbnail-img {
    object-fit: cover !important;
    width: 89px;
    height: 84px;
    border-radius: 10px;
    border: 1px solid #ef4e86;
}

.item-card-slide {
    position: relative;
}

.item-card-slide button {
    position: absolute;
    border-radius: 50%;
    background-color: transparent;
    color: #000;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
}

.item-card-slide button:hover {
    background-color: #00000062;
}

.item-card-slide button#prevBtn,
.item-card-slide button#nextBtn {
    left: 2px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
}

.item-card-slide button#prevBtn::before,
.item-card-slide button#nextBtn::before {
    background-image: url(./images/Images/previous-back-svgrepo-com.svg);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
}

.item-card-slide button#nextBtn::before {
    transform: rotate(180deg);
}

.item-card-slide button#nextBtn {
    right: 2px;
    left: unset;
}


.chat-input-new {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 10px;
}

.chat-input-new .img-sec {
    max-width: 48px;
    width: 100%;
}


.chat-input-new .img-sec img {
    max-width: 100%;
    width: 100%;
    height: 38px;
    object-fit: cover;
    border-radius: 4px;
}

.chat-input-new .content-sec .top-one {
    display: flex;
}

.chat-input-new .content-sec {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.chat-input-new .content-sec .top-one h2 {
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    color: #000000;
    padding-right: 7px;
}

.chat-input-new .content-sec .top-one p {
    font-size: 10px;
    line-height: 11px;
    font-weight: 300;
    color: #A8A8A8;
    padding-left: 7px;
    border-left: 1px solid #A8A8A8;
    height: 11.5px;
}

.chat-input-new .content-sec p {
    font-size: 9px;
    line-height: 10px;
    font-weight: 300;
    color: #939191;
}

.active-tick {
    display: flex;
    align-items: center;
    height: 20px;
}

.active-tick svg {
    vertical-align: baseline;
}


.item-realtive-card .card-sort-rating .card-text h3 {
    max-width: 100%;
}

.banner .banner-main .banner-btn {
    top: 45%;
}

.banner .banner-main .banner-btn.singal-banner {
    top: 40% !important;
}

.banner .banner-main .banner-btn.singal-banner h1 {
    white-space: unset !important;
}

/* 19-11-24 */

.main-chat-container {
    height: 100%;
    margin-top: 60px;
    margin-left: 250px;
    padding: 40px 20px;
}

.chat-container .sidebar {
    width: 30%;
}

.chat-container>* {
    font-family: "WebFont", Arial, sans-serif;
}

.chat-wrapper p {
    margin-bottom: 0;
}

.chat-wrapper .chat {
    width: 70%;
    border-left: 1px solid rgb(112, 112, 112, 0.2);
}

.chat-wrapper .chat .chat-header {
    left: 0;
}

.chat-name h4,
.order-wrp .order-info h5,
.chat-input-new .top-one h2 {
    margin-bottom: 0;
}

.chat-container .chat .chat-box {
    padding: 26px 10px 10px 10px;
    position: relative;
}

.chat .chat-body {
    min-height: 260px;
    height: calc(100% - 140px);
}

.chat .order-details .ord-detail {
    align-items: flex-start;
}

.three-dots {
    top: 50%;
    transform: translateY(-50%);
}

.top-bar .all-chat:after {
    top: 15%;
    transform: translateY(-50%) rotate(0deg);
}

.top-bar h3 {
    margin-bottom: unset;
}

.side-bar-btn {
    display: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .main-chat-container {
        margin-left: unset;
    }
}


@media (max-width: 768px) {
    .item-thumbnail .row .thumbnail-box {
        width: fit-content;
    }

    .chat-wrapper {
        max-height: 100%;
        height: 100%;
        flex-direction: unset;
    }

    .chat-container .sidebar {
        overflow: unset;
        width: 0%;
        max-width: unset;
        background-color: #fff;
        height: 100%;
        opacity: 0;
        transition: width ease-in-out 0.3s;
    }

    .chat-container .sidebar.open-sidebar {
        max-width: 280px;
        width: 100%;
        opacity: 1;
    }



    .chat-wrapper .chat,
    .chat .details,
    .chat .chat-box {
        width: 100%;
    }

    .chat .chat-wrap {
        flex-direction: column;
        border-right: 1px solid rgb(112, 112, 112, 0.2);
        height: calc(100% - 68px);
    }

    .chat .details {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 20px 10px;
        border-left: unset;
        border-top: 1px solid rgb(112, 112, 112, 0.2);
        border-bottom: 1px solid rgb(112, 112, 112, 0.2);
    }

    .search-container {
        width: 100%;
    }

    .chat .order-details .ord-detail {
        justify-content: space-between;
    }

    .chat-container .chat .chat-box {
        padding: 10px 15px;
        min-height: 445px;
        width: 100%;
    }

    .top-bar {
        padding: 20px;
        gap: 10px;
        min-height: 70px;
    }

    .top-bar h3 {
        font-size: 15px;
    }

    .chat .user-name span {
        font-size: 14px;
    }

    .user-item .user-info h4 {
        font-size: 13px;
    }

    .user-item {
        padding: 10px 15px;
    }

    .side-bar-btn {
        display: block;
        display: flex;
        justify-content: flex-end;
        margin-right: 10px;
    }

    .side-bar-btn svg {
        width: 25px;
        height: 25px;
    }

    .chat-wrapper .chat .chat-header {
        padding: 15px 10px;
        border-top: 1px solid rgb(112, 112, 112, 0.2);
        border-right: 1px solid rgb(112, 112, 112, 0.2);
    }

}

@media (max-width: 576px) {

    .chat-container .sidebar {
        position: absolute;
    }

    .chat-container .sidebar.open-sidebar {
        position: absolute;
        z-index: 99;
        max-width: unset;
        max-width: 300px;
        transition: width ease-in-out 0.3s;
    }
}