$primary: #80b480 !default;
$gray-100: #abb1bd !default;
$gray-200: #191d23 !default;
$gray-300: #373a41 !default;
$white: #ffffff !default;
$black: #030712 !default;

.bg-primary {
    background-color: $primary !important;
}

.bg-gray-200 {
    background-color: $gray-200 !important;
}

.bg-gray-300 {
    background-color: $gray-300 !important;
}

.text-primary {
    color: $primary !important;
}

.text-gray-100 {
    color: $gray-100 !important;
}

.btn {
    // border-radius: 5px;
    font-weight: 700;
    padding: 7px 24px;

    &:focus {
        outline: none !important;
        box-shadow: none !important;
    }
}

.btn-primary {
    color: $white;
    background-color: $primary;
    box-shadow: none !important;
    border: 1px solid $primary;

    &:hover,
    &.active {
        color: $primary;
        background-color: $white;
        border: 1px solid $primary;
    }

    &:focus{
        color: $white;
        background-color: $primary;
        border: 1px solid $primary;
    }
}

.z-index-9 {
    z-index: 9;
}
// @font-face {
//   font-family: "Quicksand";
//   font-style: normal;
//   font-weight: 400;
//   src: url(../fonts/Quicksand/Quicksand-Regular.ttf) format("truetype");
//   font-display: swap;
// }

// @font-face {
//   font-family: "Quicksand";
//   font-style: normal;
//   font-weight: 500;
//   src: url(../fonts/Quicksand/Quicksand-Medium.ttf) format("truetype");
//   font-display: swap;
// }
// @font-face {
//   font-family: "Quicksand";
//   font-style: normal;
//   font-weight: 600;
//   src: url(../fonts/Quicksand/Quicksand-SemiBold.ttf) format("truetype");
//   font-display: swap;
// }
// @font-face {
//   font-family: "Quicksand";
//   font-style: normal;
//   font-weight: 700;
//   src: url(../fonts/Quicksand/Quicksand-Bold.ttf) format("truetype");
//   font-display: swap;
// }
// @font-face {
//   font-family: "DM-Serif-Display";
//   font-style: normal;
//   font-weight: 400;
//   src: url(../fonts/DM-Serif-Display/DMSerifDisplay-Regular.ttf)
//     format("truetype");
//   font-display: swap;
// }
.font-DM-Serif-Display {
    font-family: "DM-Serif-Display";
    font-weight: 600;
}

body {
    font-family: "Quicksand";
    font-weight: 400 !important;
    padding-right:0 !important;
  &.modal-open {
    padding-right:0!important;
  }
}

.main-content {
    position: relative;
}

.banner-section {
    .banner-img {
        position: relative;
        height: 300px;
        width: 100%;

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

        &::after {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            //   background-image: linear-gradient(rgba(2, 7, 14, 0), rgba(2, 7, 14, 1));
        }
    }
}

.profile-section {
    position: relative;
    padding-top: 185px;
    bottom: 0;

    @media (max-width: 575px) {
        padding-top: 170px;
    }

    .card {
        position: relative;
        background-color: transparent !important;
        border: none;

        .card-img {
            margin-right: 40px;
            border-radius: 0;
            min-width: 160px;
            width: 160px;
            height: 160px;
            border: 2px solid $white;
        }

        .card-body {
            padding-bottom: 0;

            .profile-name {
                position: relative;

                &::after {
                    position: absolute;
                    content: "";
                    width: 100%;
                    max-width: 160px;
                    height: 2px;

                    background-color: $primary;
                }
            }
        }
    }

    .social-media {
        .social-icon {
            margin-right: 40px;

            &:last-child {
                margin-right: 0;
            }
        }
    }
}

.section-heading {
    h2 {
        font-size: 26px;
        font-weight: 400;
        position: relative;
        display: inline-block;

        &:before,
        &:after {
            content: "";
            position: absolute;
            top: 50%;
            width: 80px;
            height: 2px;
            background-color: $primary;
        }

        &:before {
            right: 100%;
            margin-right: 30px;

            @media (max-width: 575px) {
                margin-right: 30px;
            }
        }

        &:after {
            left: 100%;
            margin-left: 30px;

            @media (max-width: 575px) {
                margin-left: 30px;
            }
        }
    }
}

.contact-section {
    .chest-expander-img {
        position: absolute;
        top: 30px;
        right: 0;
        z-index: 0;
    }

    .dumbbell-img {
        position: absolute;
        bottom: 30px;
        right: 0;
        z-index: 0;
    }

    .contact-box {
        @media (max-width: 575px) {
            display: flex;
            align-items: center;
        }

        .contact-icon {
            width: 40px;
            min-width: 40px;
            height: 40px;
            background-color: $black;
            margin-bottom: 10px;

            @media (max-width: 575px) {
                margin-bottom: 0;
                margin-right: 20px;
            }
        }
        .contact-desc {
            a {
                word-break: break-word !important;
            }
        }
    }
}

.our-services-section {
    .services {
        .service-card {
            padding: 30px 25px;
            border-radius: 0;
            border: 0;
            background-color: $black;
            position: relative;

            .card-img {
                width: auto;
                height: 60px;
            }
        }

        .services-slider-view {
            .slick-list {
                padding-top: 5px !important;
                @media (max-width: 500px) {
                    height: 250px !important;
                }
            }
            .service-card {
                border-radius: 20px;
                min-height: 160px;
                max-height: 180px;
                overflow-y: auto;
                color: $gray-100;
                padding: 20px 25px;
                .card-title {
                    display: -webkit-box;
                    -webkit-line-clamp: 1;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    margin-top: 6px;
                    color: $primary;
                }
                .description-text {
                    font-size: 14px;
                    display: -webkit-box;
                    -webkit-line-clamp: 4;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    @media (max-width: 500px) {
                        -webkit-line-clamp: 3;
                    }
                }
                .img {
                    width: fit-content;
                    display: inline;
                    float: left;
                    img {
                        width: 120px;
                        height: 120px;
                        margin-right: 10px;
                        @media (max-width: 500px) {
                            width: 90px;
                            height: 90px;
                        }
                    }
                }
                @media (max-width: 500px) {
                    min-height: 235px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    justify-content: center;
                }
            }
            .slick-list .slick-slide {
                margin: 0 15px;
            }

            .slick-dots {
                bottom: -25px !important;
            }
            .slick-dots li{
                margin: 0 !important;
            }
            .slick-dots button::before {
                font-size: 30px !important;
            }
        }
    }
}

.appointment-section {
    .section-heading {
        h2 {
            &:before {
                display: none;
            }

            &:after {
                width: 400px;
            }
        }
    }

    .appointment {
        .appointment-input {
            width: 100%;
            height: 50px;
            padding: 12px 25px;
            background-color: transparent;
            border: 1px solid $gray-300;
            color: $gray-100;
            border-radius: 0;

            &::placeholder {
                color: $gray-100;
            }

            &:focus {
                box-shadow: none;
                outline: none;
            }
        }

        .calendar-icon {
            position: absolute;
            right: 18px;
            top: 11px;
        }

        .hour-input {
            font-size: 14px;
            padding: 13px 16px;
            border-radius: 0;
            background-color: transparent;
            border: 1px solid $gray-300;
        }
    }
}

.gallery-section {
    background-size: cover;

    .gallery-slider {
        // margin-bottom: -25% !important;
        .slick-slide {
            transform: scale(0.8);
        }

        .gallery-img,
        .gallery-item {
            position: relative;
            max-width: 300px;
            width:100% !important;
            height: 200px !important;
            max-height:200px;
            margin: 0 auto;
            display:block;
            border: 1px solid #373a41;
            background-size: cover;
            background-position: center;

        }
        .gallery-file-item {
            background-size: contain;
            background-repeat: no-repeat;
        }

        .slick-dots {
            position: relative;
            bottom: -15px;
        }

        .slick-current.slick-active {
            transform: scale(1);
        }
    }
}
.video-container {
    height:200px !important;
    border: 1px solid #373a41;
}
.audio-container {
    img {
        width:100%  !important;
        height:133px !important;
    }
}
.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 20px;
    border-radius: 50%;
    padding: 0px 0px 0px 4px;

    &:before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 60px;
        height: 60px;
        background: #03071180;
        border-radius: 50%;
        animation: pulse-border 1500ms ease-out infinite;
    }

    &:after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 50px;
        height: 50px;
        background: $white;
        border-radius: 50%;
        transition: all 200ms;
    }

    span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 16px solid $primary;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
}

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

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

.product-section {
    .section-heading {
        h2 {
            &:before {
                display: none;
            }

            &:after {
                width: 400px;
            }
        }
    }

    .product-slider {
        .slick-slide {
            margin: 0 15px;
        }

        .product-card {
            background-color: $black;
            max-width: 243px;
            margin: 0 auto;
            height: 350px !important;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;

            .product-img {
                height: 200px;
                img {
                    object-fit: contain;
                }
            }
            p{
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .product-desc {
                padding: 10px 20px;
                height: 200px;
            }
        }
    }
}

.testimonial-section {
    .quote-img {
        width: auto;
        height: 35px;
        position: absolute;
        top: -10px;
        left: 45%;
    }

    .bg-img {
        position: absolute;
        bottom: 0;
        right: 30px;
    }

    .testimonial-slider {
        .testimonial-card {
            padding: 0 30px;

            @media (max-width: 575px) {
                padding: 0 20px;
            }

            .card-body {
                .profile-img {
                    width: 40px;
                    height: 40px;
                    min-width: 40px;
                    border-radius: 50%;
                    overflow: hidden;
                }
                p {
                    min-height: 40px;
                }
            }
        }
    }
}

.blog-section {
    .blog-slider {
        .slick-slide {
            padding: 0 15px;
        }

        .blog-card {
            position: relative;
            max-width: 466px;
            height: 280px;
            border: 1px solid #373a41;
            border-radius: 0;
            margin: 0 auto;

            .overlay {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                // background-image: linear-gradient(rgba(2, 7, 14, 0), rgba(2, 7, 14, 1));
            }

            .card-img {
                width: 100%;
                height: 280px;
                img {
                    object-fit: contain;
                }
            }

            .card-body {
                z-index: 1;
                padding: 20px;
                position: absolute;
                bottom: 0;
                height: 135px;
                padding: 10px 15px;
                max-height: 135px;
                min-height: 135px;
                overflow: hidden;
                p {
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                }
            }
        }

        // .blog-1 {
        //   background-image: url(../images/gym/blog-img.png);
        // }
        // .blog-2 {
        //   background-image: url(../images/gym/blog-img.png);
        // }
    }
}

.qr-code-section {
    .section-heading {
        h2 {
            &:before {
                display: none;
            }

            &:after {
                width: 148px;
            }
        }
    }

    .qr-profile-img {
        width: 120px;
        height: 120px;
        min-width: 80px;
        border-radius: 50%;
        border: 1px solid $white;
        overflow: hidden;
    }

    .qr-code {
        width: 200px;
        height: 200px;
        min-width: 200px;
        border-radius: 0;
        background-color: $black;

        .qr-code-img {
            width: 140px;
            height: 140px;
            min-width: 140px;
            background: white;
        }
    }
}

.bussiness-hour-section {
    background-image: url("../../../public/assets/img/vcard12/business-hour-bg.png");
    background-size: contain;
    background-position: center;
    // background-repeat: no-repeat;
    margin-top:60px;
    @media (max-width: 575px) {
        background-size: cover;
        background-position: right;
    }

    .bussiness-hours {
        span {
            font-size: 16px;
            color: $white;
            font-weight: 500;

            @media (max-width: 575px) {
                font-size: 14px;
            }
        }
    }
}

.contact-us-section {
    position: relative;
    @media (max-width: 575px){
        padding-bottom: 30px !important;
    }

    .contact-after-img {
        position: absolute;
        top: 70px;
        right: 0;
        z-index: 0;
    }

    .contact-form {
        form {
            .form-control {
                background-color: $gray-200;
                padding: 13px 15px;
                height: 50px;
                border-radius: 0;
                border: 1px solid $gray-300;
                color: $gray-100;

                &::placeholder {
                    color: $gray-100;
                }

                &:focus {
                    box-shadow: none;
                    outline: none;
                }
            }


            textarea {
                @media (min-width: 575px) {
                    min-height: 238px;
                }
            }
        }
    }
}

.create-vcard-section {
    .section-heading {
        h2 {
            &:before {
                display: none;
            }

            &:after {
                width: 400px;
            }
        }
    }

    .vcard-link-card {
        background-color: #030712;
        padding: 20px;
        border-radius: 0;
        border: none;
        position: relative;

        .link-text {
            font-size: 14px !important;
            word-break: break-all;

            @media (max-width: 575px) {
                font-size: 16px;
            }
        }
    }
}

.btn-section {
    .fixed-btn-section {
        .gym-bars-btn {
            background-color: $primary;
        }

        .sub-btn {
            .gym-sub-btn {
                background-color: $gray-300;

                i {
                    color: $primary;
                }
            }
        }
    }
}
// .vcard-bars-btn-left {
//     z-index: 9 !important;
//     width: 576px;
//     display: flex;
//     justify-content: flex-start !important;
// }
// .vcard-bars-btn-left .bars-btn {
//     width: 60px;
//     height: 60px;
//     min-width: 60px;
//     font-size: 12px;
//     position: absolute;
//     margin-right: 0.5rem !important;
//     box-shadow: -3px 2px 15px #9e9e9ecc;
// }
// .sub-btn-div-left {
//     position: absolute !important;
//     top: -55px !important;
//     width: 100% !important;
//     left: 75px !important;
//     align-items: flex-start !important;
//     flex-direction: column !important;
//     display: flex !important;
// }

.slick-dots {
    left:0 !important;
    li {
        button {
            &:before {
                color: $black;
            }
        }

        &.slick-active {
            button {
                &:before {
                    opacity: 1;
                    color: $primary;
                }
            }
        }
    }
}

.add-to-contact-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
//custom css code

.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

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

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-18 {
    font-size: 18px;
}

@media (max-width: 575px) {
    .fs-18 {
        font-size: 16px;
    }
}

.fs-20 {
    font-size: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-40 {
    margin-bottom: 40px;
}

@media (max-width: 575px) {
    .mb-40 {
        margin-bottom: 30px;
    }
}

.mx-30 {
    margin-left: 30px;
    margin-right: 30px;
}

@media (max-width: 575px) {
    .mx-30 {
        margin-left: 20px;
        margin-right: 20px;
    }
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.pb-50 {
    padding-bottom: 50px;
}

@media (max-width: 575px) {
    .pb-50 {
        padding-bottom: 40px;
    }
}

.pt-40 {
    padding-top: 40px;
}

@media (max-width: 575px) {
    .pt-40 {
        padding-top: 25px;
    }
}

.pb-40 {
    padding-bottom: 40px;
}

@media (max-width: 575px) {
    .pb-40 {
        padding-bottom: 25px;
    }
}

.pt-60 {
    padding-top: 60px;
}

@media (max-width: 575px) {
    .pt-60 {
        padding-top: 40px;
    }
}

.pb-60 {
    padding-bottom: 60px;
}

@media (max-width: 575px) {
    .pb-60 {
        padding-bottom: 40px;
    }
}

.pt-30 {
    padding-top: 30px;
}

@media (max-width: 575px) {
    .pt-30 {
        padding-top: 20px;
    }
}

.pb-30 {
    padding-bottom: 30px;
}

@media (max-width: 575px) {
    .pb-30 {
        padding-bottom: 20px;
    }
}

.pt-50 {
    padding-top: 50px;
}

@media (max-width: 575px) {
    .pt-50 {
        padding-top: 40px;
    }
}

.pt-80 {
    padding-top: 80px;
}

@media (max-width: 575px) {
    .pt-80 {
        padding-top: 40px;
    }
}

.pb-80 {
    padding-bottom: 80px;
}

@media (max-width: 575px) {
    .pb-80 {
        padding-bottom: 40px;
    }
}

.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

.fs-12 {
    font-size: 12px;
}

.fs-36 {
    font-size: 36px;
}

@media (max-width: 575px) {
    .fs-36 {
        font-size: 30px;
    }
}

.fs-30 {
    font-size: 30px;
}

@media (max-width: 575px) {
    .fs-30 {
        font-size: 28px;
    }
}

.fs-28 {
    font-size: 28px;
}

@media (max-width: 575px) {
    .fs-28 {
        font-size: 24px;
    }
}

a {
    text-decoration: none;
}

.main-content {
    max-width: 576px;
    min-height: 100vh;
}

.object-fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.flex-1 {
    flex: 1;
}

.cursor-pointer {
    cursor: pointer;
}

.btn-section {
    position: absolute;
    top: 50%;
    right: 80px;
    z-index: 9;
}

.btn-section .fixed-btn-section {
    position: fixed;
    top: 50%;
    display: flex;
    align-items: center;
}

.btn-section .fixed-btn-section .bars-btn {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-section .fixed-btn-section .sub-btn {
    position: absolute;
    right: 75px;
    display: none;
}

.btn-section .fixed-btn-section .sub-btn .social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-section .fixed-btn-section .sub-btn .social-btn i {
    font-size: 24px;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button:before {
    font-size: 30px;
    opacity: 1;
}

.vcard12-sticky-btn {
    background: $primary;
    color: $white;
    border: 1px solid $primary;
    height: 40px;
}

.vcard12-sticky-btn {
    background: $primary;
    color: $white;
    border: 1px solid $primary;
    height: 40px;
}

.vcard12-btn-group {
    width: 50px;
    height: 50px;
    color: $white;
    background-color: $primary;
    border-radius: 50px !important;
}

//language btn
.language {
    ul {
        list-style: none;

        .lang-list {
            padding:  9px 15px;
            background: #80b480;
            border: none;
            outline: none;
            border-radius: 13px;
            transition: all 0.3s ease;
            width: -moz-fit-content;
            width: fit-content;

            .lang-head {
                color: white;

                i {
                    color: white;
                }
            }

            .lang-hover-list {
                margin: 15px 0 0;
                font-size: 15px;
                width: 115%;
                left: unset !important;
                right: 0;
                min-width: 85px;

                li {
                    padding: 5px 15px;

                    &:hover {
                        background-color: #f1faff !important;

                        a {
                            color: #009ef7 !important;
                        }
                    }

                    &.active {
                        background-color: #f1faff !important;

                        a {
                            color: #009ef7 !important;
                        }
                    }

                    a {
                        color: #5e6278 !important;
                        text-decoration: none;
                    }

                    img {
                        height: 20px !important;
                        width: 25px !important;
                    }
                }
            }
        }
    }
}

.vcard-twelve {
    &.main-content {
        max-width: 576px;
        // min-height: 100vh;
        text-align: center !important;
        background-color: #191d23;
        .section-heading {
            h2 {
                &::before {
                    display:none;
                }
                &::after {
                width:200px;
                }
            }
        }
    }

    .vcard-twelve-heading {
        font-weight: 500;
        font-size: 28px;
        color: #80b480;
    }
}
.vcard-twelve-btn {
    padding: 10px 20px !important;
    background: #80b480 !important;
    border: none;
    outline: none;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    color: #191d23!important;

    &:hover {
        background: #80b480 !important;
        color: #191d23 !important;
    }

    i {
        color: #191d23;
    }

    @media (max-width: 575px) {
        margin: 0 auto;
    }
}
// .vcard-twelve-btn {
//     padding: 10px 24px;
//     background: #80b480;
//     border: none;
//     outline: none;
//     border-radius: 5px;
//     transition: all 0.3s ease;
//     width: fit-content;
//     color: #191d23;

//     &:hover {
//         color: #191d23 !important;
//     }
// }

.social-icons {
    // z-index: -1;
    position: relative;

    a {
        width: 20%;
        display: flex;
        justify-content: center;
        margin: 0 0 20px;
        text-decoration: none;
        img,svg {
            width:30px;
            height:30px;
        }
    }

    .icon {
        color: $white;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    img,
    svg {
        fill: $white;
        height: 30px;
        border-radius: 50% !important;
    }
}

.activeSlot {
    border-radius: 0 !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid #ffffff !important;
}

.appointment-section {
    .appointment {
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

        .appoint-input {
            width: 100%;
            height: 50px;
            padding: 14px 5px;
            border-radius: 0;
            background-color: rgba(0, 0, 0, 0);
            border: 1px solid #373a41;
            color: white;

            &::placeholder {
                color: $primary;
            }

            &:focus {
                box-shadow: none;
                outline: none;
            }
        }

        .calendar-icon {
            position: absolute;
            right: 18px;
            top: 11px;
        }

        .hour-input {
            padding: 15px;
            border-radius: 0;
            background-color: rgba(0, 0, 0, 0);
            border: 1px solid #373a41;
        }

        .btn {
            max-width: 300px;
        }
    }
}

.appointment-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: -6px -2px 16px rgb(255 255 255 / 80%),
        6px 5px 12px rgb(158 158 158 / 40%);

    .appoint-date {
        font-size: 16px;
    }

    .appoint-input {
        font-size: 11px;
        text-align: center;
        font-weight: 500;
        padding: 10px 0;
        border: none;
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        border-radius: 10px;
        background-color: #edf2f8;

        &:focus {
            border-color: #edf2f8 !important;
        }

        &:focus-visible {
            outline: none;
        }
    }

    .appoint-btn {
        padding: 10px 16px;
        background: $primary;
        box-shadow: -6px -2px 16px rgba(255, 255, 255, 0.8),
            6px 5px 20px rgba(158, 158, 158, 0.4);
        border-radius: 10px;
        border: none;
        outline: none;
        transition: all 0.3s ease;
        // -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 500;
        font-size: 16px;

        &:hover {
            background: white;
            // -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }
}

.timePick {
    font-size: 14px !important;
    text-align: center !important;
}
.modal-backdrop {
    background-color: transparent;
}
.add-contact-btn {
    width: 200px !important;
    height: 40px !important;
    margin: 0 auto;
    color: #ffffff;
    z-index: 9999;
    padding: 7px;
    margin-bottom:-35px !important;
    i {
        font-size: 1rem;
    }
}
.product-btn{
    padding: 10px 20px;
    background: $primary;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: all 0.3s ease;

    &:hover {
        background-color: transparentize($primary, 0.1);
    }
}

.product-details-page{
    .product-card{
        background-color: $black;
        @media (max-width: 580px) {
            width: 100% !important;
        }
        @media (max-width: 450px) {
            img{
                width: 100% !important;
            }
        }
    }
}
.modal-backdrop {
    background-color: transparent;
}
.modal {
    z-index:99999 !important;
    background-color: #00000080;
    .news-modal {
        #newsLatter-content{
            .form-control{
                padding: .375rem .75rem !important;
                font-size: 0.875rem !important;
            }
            box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 10%);
            border: none;
            border-radius: 0.475rem;
            outline: 0;
            background-color: white;
            .newsmodal-header {
                .btn-close{
                    padding: 2rem!important;
                }
                .newsmodal-title{
                    font-size: 50px;
                    text-align: center !important;
                    color: #80b480;
                }
            }
            .modal-body {
                padding: 1.75rem;
                .content{
                    color: #80b480;
                    font-size: 23px;
                }
                .modal-desc{
                    color: silver;
                    font-size: 16px;
                    font-weight: 400;
                }
                .email-input{
                    border-radius: 8px !important;
                    .btn{
                        padding: 5px 10px !important;
                        border-radius: 8px !important;
                    }
                }
                .required {
                    &:after {
                        color: #f62947;
                        content: "*";
                        font-size: inherit;
                        font-weight: 700;
                        position: relative;
                    }
                }
                .input-box {
                    background-color: #f5f8fa;
                    border: unset;
                    color: #5e6278;
                    transition: all 0.2s ease;
                    font-size: 1.1rem;
                    line-height: 1.5;
                    padding: 0.75rem 1rem;
                    border-radius: 0.475rem;
                    &:focus {
                        box-shadow: unset;
                        background-color: #eef3f7;
                    }
                }
                .input-group{
                    margin-top: 15px;
                }
            }
            .modal-footer {
                padding: 1.875rem;
                border-top: none !important;
                .btn {
                    padding: 10px 20px !important;
                    border-radius: 0.475rem !important;
                }
                .submit-btn {
                    background-color: #6571ff!important;
                    border: unset;
                    outline: unset;
                    color:$white;
                    padding: 10px 20px !important;
                    margin-top: 26px;
                    &:hover {
                        background-color: #6571ff!important;
                    }
                    &:focus {
                        box-shadow: unset;
                    }
                }
            }
        }
    }
}
#email-send{
    background: #80b480;
    color: white !important;
    font-size: 15px;
    border: none;
}
.animate-bottom {
    position: relative;
    animation: animatebottom 0.4s;
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0;
    }

    to {
        bottom: 0px;
        opacity: 1;
    }
}
.insta-feed{
    max-height: 1000px!important;
    overflow: scroll !important;
}
.insta-feed-iframe iframe {
    border-radius: 15px !important;
    border: none !important;
}
.instagram-btn{
    flex:1;
    max-width: 200px;
    position: relative;
    background-color: transparent;
    &::before {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        top: 100%;
        background-color: #80b480;
        transition: width 0.3s ease;
    }
    &.active::before {
        width: 100%;
    }
    .svg-post-icon rect, .svg-post-icon line {
        stroke: #80b480;
    }
    &.active .svg-post-icon rect, &.active .svg-post-icon line{
        fill: #80b480;
        stroke: #191d22;
    }
    .svg-reels-icon .not-active-svg {
        display: block;
    }
    .svg-reels-icon .active-svg {
        display: none;
    }
    .svg-reels-icon path.not-active-svg, .svg-reels-icon rect {
        fill: #80b480;
    }
    .svg-reels-icon path {
        fill: #80b480;
    }
    &.active .svg-reels-icon .not-active-svg, &.active .svg-reels-icon rect {
        display: none;
    }
    &.active .svg-reels-icon .active-svg {
        display: block;
    }
}
.insta-feed::-webkit-scrollbar {
    width: 0px; /* Adjust the width as needed */
}

.insta-feed::-webkit-scrollbar-thumb {
    background-color: #191d23 !important;
}

.insta-feed::-webkit-scrollbar-track {
    background-color: #191d23 !important;
}

.insta-toggle
{
    border-radius: 35px !important;
    margin: 10px !important;
    padding: 5px !important;
    transition: all 0.3s ease !important;
}
#instafeed-container{
    a img{
        width: 44%;
        height: 200px !important;
        margin: 11px;
        border-radius: 15px;
    }
}
.instagram-media {
    min-width: 50%!important;
    max-width: 100%!important;
}

.main-content .support-banner {
    width: 100%;
    max-width: 520px;
    height: auto !important;
    // height: 300px !important;
    position: fixed;
    bottom: 20px;
    z-index: 99999 !important;
    background: white;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0 7px 8px 0 #848181, 0 0px 11px 0 #000000;
    margin-left: 32px;
    margin-right: 32px;
    @media (max-width:575px) {
        margin-left: 0px;
        margin-right: 0px;
    }

    .support_heading{
        font-size: 27px;
        margin-top: 30px;
    }
    .support_text{
        margin-bottom: 22px;
        max-height: 123px !important;
        overflow-x: hidden;
        overflow-y: scroll;
        margin-top: 13px;
        &::-webkit-scrollbar {
            width: 4px;
        }
        &::-webkit-scrollbar-track {
            background: transparent;
        }
        &::-webkit-scrollbar-thumb {
            background: #888;
        }
    }
}

@media (max-width: 767px) {
    .support-banner {
        max-width: 476px !important;
    }
}

@media (max-width: 575px) {
    .support-banner {
        max-width: 100% !important;
    }
}

.act-now{
    padding: 7px 21px;
    background: $primary;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    transform: translateY(0);
    text-decoration: none;
    color: white !important;
    position: relative;
    bottom: 10px;
    display:inline-block !important;
    border-radius: 15px;
}

.banner-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 20px !important;
    background: none;
    border: none;
}
.iframe-slider {
    .slick-slide {
        padding: 0 15px;
    }

    .iframe-card{
        position: relative;
        max-width: 466px;
        height: 280px;
        border: 1px solid #373a41;
        border-radius: 0;
        margin: 0 auto;

        .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
        .card-body {
            z-index: 1;
            padding: 20px;
            position: absolute;
            bottom: 0;
            height: 135px;
            padding: 10px 15px;
            max-height: 135px;
            min-height: 135px;
            overflow: hidden;
        }
    }
}
.made-by-section
{
    margin-top: 20px !important;
}
.verification-icon{
    color: #80b480;
}
.pl-50
{
    padding-left:50px;
}
.modal-content[dir='rtl'] {
  .pl-50{
    padding-right:50px;
    }
    .text-center {
    text-align:start !important;
    }
    .arrow{
        transform: rotate(180deg) !important;
    }
    .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
        border-bottom-left-radius: 0 !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius:0.313rem !important;
        border-bottom-right-radius:0.313rem !important;
    }
    .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not( .valid-feedback ):not(.invalid-tooltip):not(.invalid-feedback) {
        border-bottom-right-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-top-left-radius:0.313rem !important;
        border-bottom-left-radius:0.313rem !important;
    }
}
.main-content.rtl {
    .ms-3 {
        margin-right: 1rem !important;
        margin-left: 0 !important;
    }
    .calendar-icon {
        left: 18px;
        right: auto;
    }
    .me-3 {
        margin-left: 1rem !important;
    }
    .text-start {
        text-align: right !important;
    }
    .product-section,
    .appointment-section,
    .create-vcard-section,
    .qr-code-section {
        .text-start {
            text-align: right !important;
        }
        .section-heading h2:after {
            right: 100%;
            margin-right: 30px;
            left: auto;
            margin-left: 30px;
        }
    }
    .contact-section .contact-box .contact-icon {
        margin-bottom: 0;
        margin-left: 20px;
    }
}
.profile-section .card[dir="rtl"] {
    .card-img {
        margin-right: 0;
        margin-left: 40px;
    }
}

.btn-section.rtl {
    right: auto !important;
    left: 15px !important;
}
.toast-title {
    margin-right: 12px;
 }
.toast-message{
    margin-right: 12px;
}

.input-box {
    padding: 20px;
    display: grid;
    place-items: center;
    border: 1px solid #373a41 !important;
    border-radius: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

.input-box h4 {
    margin: 0;
    color:#abb1bd !important;
    font-size: medium !important;
}

.file-list li {
    color: #abb1bd !important;
}

 .selected-files .item {
    border: 1px solid #373a41 !important;
    border-radius: 5px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
 }

 .file-list .name {
    flex-grow: 1;
  }

  .file-list .remove {
    margin-left: 8px;
    cursor: pointer;
    color: red;
  }

  .file-list .remove svg {
    width: 16px;
    height: 16px;
  }


 .selected-files h5 {
    color:#ffffff !important;
    font-size: medium !important;
    margin-top: 9px !important;
    margin-bottom: 10px !important;
}

small {
    font-size: 12px;
    color:#abb1bd !important;
}

.file-list {
    overflow-y: auto;
    list-style-type: none !important;
    padding: 0 0px 10px 0;
    margin: 0;
    max-height: 220px;
    font-size: medium !important;
}
.modal {
    padding-right:0 !important;
    &.show {
        padding-right:0 !important;
        .modal-dialog {
            transform: translateY(35px) !important;
            @media (min-width: 576px) {
                    margin: 2.5rem auto !important;
                    max-width: 520px !important;
            }
        }
    }
    .modal-dialog {
        transform: translateY(95px) !important;
        &.modal-bottom {
height:87vh !important;
        }
    }
}

#newsLatterModal {
    .modal-dialog{
        @media (min-width:576px) {
            max-width: 420px !important;
            min-height: calc(100% - 5rem) !important;
            transform: none !important;
        }
    }
}

.close-modal{
    position: absolute !important;
    right: 16px !important;
    top: 16px !important;
    z-index: 1 !important;
}
.product-img-slider{
    padding-bottom: 30px !important;
    .slick-dots{
        bottom: 0px !important;
         li {
            button{
                &::before {
                    font-size: 30px;
                    color: #80b480 !important;
                }
            }
         }
    }
}
.product-img-height{
    max-height: 208px;
    max-width: 208px;
}
.dots-none{
    .slick-dots{
        display: none !important;
    }
}
.product-img-slider.slick-dotted.slick-slider {
    margin-bottom: 20px !important;
}

.pwa-support {
    width: 100%;
    max-width: 400px;
    height: auto !important;
    position: fixed !important;
    bottom: 20px;
    z-index: 99999 !important;
    background: white;
    padding: 24px;
    border-radius: 32px;
    box-shadow: 0 7px 8px 0 #848181, 0 0px 11px 0 #000000;;
    left: 0;
    right: 0;
    margin: 0 auto;
    .pwa-heading{
        font-size: 20px;
        margin-bottom: 12px;
    }
    .pwa-text{
        margin-bottom: 16px;
        font-size: 0.875rem !important;
}
}
.pwa-install-button{
    background: #80b480!important;
    border : 1px solid  #80b480;
    color: $white !important;
    border-radius: 15px !important;
    font-weight : 400 !important;
    font-size: 0.875rem !important;
    &:hover {
        color: #80b480;
        background-color: #ffffff;
        border: 1px solid #80b480;
        font-weight : 400 !important;
    }
}
.pwa-cancel-button{
    background-color: #adb5bd !important;
    color: #000000;
    border-radius: 15px !important;
    padding : 0.563rem 1.563rem;
    border : none !important;
    font-weight : 400 !important;
    font-size: 0.875rem !important;
    &:hover{
        background-color:#d1d5db!important;
        border : none !important;
        color : #000000 !important;
        font-weight : 400 !important;
    }
}
.youtube-link-12{
    padding-top: 56.25%;
    position: relative;
    z-index: 9999 !important;
    iframe{
        position: absolute !important;
        top:0;
        left: 0 !important;
        height: 100% !important;
        width: 100 !important;
    }
}
.language-btn{
    z-index: 99999 !important;
}
.profile-margin{
    margin-top: 150px !important;
}
@media (max-width: 425px) {
    .profile-margin{
        margin-top: 78px !important;
    }
}
@media (max-width: 375px) {
    .profile-margin{
        margin-top: 48px !important;
    }
}
@media (max-width: 320px) {
    .profile-margin{
        margin-top: 22px !important;
    }
}
.chest-expander-img[dir="rtl"] {
    position: absolute;
    top: 30px;
    left: 0;
    right:auto;
    z-index: 0;
    transform: scaleX(-1);
}

.dumbbell-img[dir="rtl"] {
    position: absolute;
    bottom: 30px;
    left: 0;
    right:auto;
    z-index: 0;
    transform: scaleX(-1);
}
