@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    background-color: #a7d0d6;
    /* font-family: 'Poppins', sans-serif; */
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
a,
input,
td,
th,
button {
    font-family: 'Poppins', sans-serif;
}

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

.chnage_prog_btn {
    padding: 10px 40px;
    border-radius: 30px;
    background: #707070;
    color: #fff;
}

.loading {
    --animation-time: 3s;
    --dot-size: 15px;
    --dots-length: calc(7 * var(--dot-size));

    width: var(--loading-width);
    height: var(--dot-size);

    display: flex;
    position: relative;

    overflow: hidden;

    /*   background: rgba(0,0,0,0.2); */

}

.loading::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    background: linear-gradient(to right, var(--bg-image), transparent 10% 90%, var(--bg-image));
}

.loading>span {
    display: inline-block;
    position: absolute;

    background: #aaa;
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 50%;

    --initial-left: 0px;
}

.loading>span:nth-child(1) {
    --initial-left: 0px;
    --animation-delay: calc(4/10 * var(--animation-time));
}

.loading>span:nth-child(2) {
    --initial-left: calc(1.5 * var(--dot-size));
    --animation-delay: calc(3/10 * var(--animation-time));
}

.loading>span:nth-child(3) {
    --initial-left: calc(3 * var(--dot-size));
    --animation-delay: calc(2/10 * var(--animation-time));
}

.loading>span:nth-child(4) {
    --initial-left: calc(4.5 * var(--dot-size));
    --animation-delay: calc(1/10 * var(--animation-time));
}

.loading>span:nth-child(5) {
    --initial-left: calc(6 * var(--dot-size));
    --animation-delay: calc(0/10 * var(--animation-time));
}

.loading>span {
    animation: move var(--animation-time) cubic-bezier(0.3, 1, 0.5, 0) infinite;
    animation-delay: var(--animation-delay);

    left: calc(var(--initial-left) - var(--dots-length));
}

@keyframes move {

    50%,
    100% {
        left: calc(100% + var(--initial-left));
    }
}

body {
    --body-image: #222;
    background: var(--body-image);
}


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

.macro_btn {
    margin: 9px 0px 12px 0px;
    padding: 7px 12px 6px 12px;
    background: #d3d0d0;
    color: black;
    border-radius: 13px;
}

.gallery {
    position: relative;
}

.lb-dataContainer {
    position: absolute;
    top: -42px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
}

.spinner-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}



.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    display: none;
    margin-top: -10%;
    margin-left: -6%;
    position: absolute;
    z-index: 99999;

}

.foodlogloaderf {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    display: none;
    margin-top: 40%;
    margin-left: 43%;
    position: absolute;
    z-index: 99999;
}

.loader2 {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 12%;
    height: 10%;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    display: none;
    margin-top: 50%;
    margin-left: 41%;
    position: absolute;

}





/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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



*,
*::after,
*::before {
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 9999;
}

.bg-image {
    /* Add the blur effect */
    filter: blur(8px);
    -webkit-filter: blur(8px);
    /* Full height */
    height: 100%;
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.all-prog {
    padding: 0px 0px 20px 0px;
    margin-top: -31px;
    font-size: 18px;
    /* margin-left: 627px;
    margin-right: 627px; */
}

#loom-record-sdk-button {
    border-radius: 6px;
    background: #60afba;
    color: white;
    margin-bottom: 7px;
    padding: 4px 10px 4px 10px;
    /* margin: -40px 0px 0px -115px;
    position: absolute; */

    /* border-radius: 4px;
    background: #60afba;
    color: white;
    position: absolute;
    top: 55px;
    left: 14px;
    padding: 3px 6px;
    border: none; */
}

.couponclr {
    color: green;
    font-weight: 600;
}

.coupontyp {
    color: black;
    font-weight: 600;
}

.coupon-field {
    display: none;
}

/* Position text in the middle of the page/image */

.bg-text {
    /* Fallback color */
    background-color: rgb(0 0 0 / 68%);
    /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 30%;
    padding: 20px;
    text-align: center;
    border-radius: 35px;
}

.commission_button {
    padding: 2px 11px 2px 13px;
    border-radius: 7px;
    margin: 0px 2px 2px 4px;
    background: #17a2b8;
    color: white;
}

.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: rgb(23 22 22 / 70%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.3s linear;
}

.page-content {
    max-width: 768px;
    margin: 0 auto;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.popup {
    /* width: 900px; */
    margin: auto;
    /* text-align: center */
}

.sort-styl {
    font-weight: 600;
    color: #838383;
}

.nutsum {
    font-size: 17px;
    color: #327e3b;
    font-weight: 600;
}

.popup img {
    width: 200px;
    height: 200px;
    cursor: pointer
}

.hr-tag {
    width: 235px;
    background-color: #b5b3bb;
    height: 2px;
}

.planee {
    margin: 0px 0px 14px 20px;
    font-size: 20px;
}


/* .badge {
    font-size: 1.0em!important;
}  */

.show {
    z-index: 999;
    display: none;
}

.foodrply {
    color: #48a8b5;
    font-weight: 500;
}

.foodrply:hover {
    cursor: pointer;
}

.m-send {
    font-size: 14px;
    width: 100%;
    border: none;
    padding: 10px;
    outline: none;
    resize: none;
    background: transparent;
    font-family: sans-serif;
    height: 44px;
    max-height: 200px;
}

.ok {
    border: 2px solid #8080804a;
    display: flex;
}

.post-section .m-send {
    width: 90%;
}

.show .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .66);
    position: absolute;
    top: 0;
    left: 0;
}

.show .img-show {
    width: 600px;
    height: 400px;
    background: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden
}

.img-show span {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 99;
    cursor: pointer;
}

.img-show img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


/*End style*/

.glas {
    display: inline-flex;
    margin: 30px auto;
    height: 200px;
    width: 100px;
    position: relative;
    border-style: none solid solid solid;
    border-top: 1px solid #d1d1d1 !important;
    border-width: 10px;
    border-color: lightgray;
    border-radius: 1px 1px 20px 20px;
}

.water {
    width: 10%;
    height: 100%;
    background-color: #56a5f7;
    position: absolute;
    bottom: 0;
    border-radius: 1px 1px 12px 12px;
}

.img_srction {
    background-image: url('./img/dmitry-spravko-qr97oKNWfYU-unsplash.jpg');
    background-size: cover;
    height: 100vh;
    color: #fff;
}

.right-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

.mb-1 {
    white-space: nowrap;
    width: 346px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: -15px;
}

.right-box1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.right-box1 form {
    width: auto;
    height: auto;
}

.card {
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    padding: 20px;
    border-radius: 7px !important;
    min-width: 100% !important;
}

.button_cutm .btn-success {
    width: 100%;
    margin-top: 20px;
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}

.btn-success:hover {
    background-color: #28a745;
    border-color: #28a745;
}

.login-section {
    justify-content: center;
    padding-top: 20px;
}

.form-check1 {
    position: absolute;
    margin-top: .4rem;
    margin-left: -0.6rem;
}

.form-control-lg {
    font-size: 1rem !important;
}


/* jdvfpdsjvgh */

.bg_danger {
    height: auto;
    background-color: #f16853;
    padding: 0px 50px 50px 50px;
    height: 400px;
}

.main-box {
    display: flex;
    padding: 50px;
}


/* dashboard */

.side-bar {
    width: 300px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background: #629ba4;
    transition: .3s all;
}

/* .sideber-brnd {
    height: 90px;
    padding: 1.7rem 0rem 1rem 4rem;
    color: #fff;
} */
.sideber-brnd {
    height: 80px;
    color: #fff;
    margin: 35px 0 0;
    text-align: center;
}

.sideber-brnd h2 span {
    display: inline-block;
    padding-right: 1rem;
    transition: .5s all;
}


/* .sideber-brnd h2 span:last-child{
width: 185px; 
} */

.side-menu li {
    width: 100%;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.side-menu a {
    display: block;
    color: #fff;
    font-size: 1rem;
    padding-left: 1rem;
}

.side-menu a:hover {
    color: #fff;
    text-decoration: none;
}

.side-menu a span:first-child {
    font-size: 1.5rem;
    padding-right: 1rem;
}


/* .side-menu a.active{
background: #fff;
padding-top:1rem;
padding-bottom: 1rem;
color: #dd2f6e;
border-radius: 30px 0px 0px 30px;
} */

/* .main-content {
    margin-left: 300px;
    width: calc(100vw - 320px);
    transition: .3s all;
    padding: 1rem;
    height: 100%;
} */
.main-content.custm-sidebar {
    margin-left: 105px;
    width: calc(100% - 105px);
    transition: .3s all;
    padding: 1rem;
    height: 100%;
}

.custm-sidebar .sideber-brnd {
    height: 90px;
    padding: 1.7rem 0rem 1rem 0rem;
    color: #fff;
}


.main-content {
    margin-left: 320px;
    width: calc(100% - 320px);
    transition: .3s all;
    padding: 1rem;
    height: 100%;
}

.main-content header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    /* box-shadow: 4px 4px 10px rgba(0,0,0,.3); */
    /* position: fixed; */
    /* width: calc(100% - 300px); */
    top: 0;
}

.bg-none {
    background: none !important;
}

.search-wrapper {
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    width: 25%;
}

.search-wrapper span {
    display: inline-block;
    padding: 0rem 1rem;
    font-size: 1.6rem;
}

.search-wrapper input {
    height: 100%;
    padding: 1rem;
    border: none;
    outline: none;
}

.user-wrapper {
    display: flex;
    align-items: center;
    font-size: 1rem;
    /* justify-content: flex-end; */
    margin-left: 7px;
    background: #2e2e2e !important;
    padding-right: 10px;
}

.user-wrapper img {
    border-radius: 50%;
    margin-right: .5rem;
    margin-bottom: 0rem;
    height: 40px;
    width: 40px;
}

.user-wrapper small {
    display: inline-block;
    color: #83797d;
    margin-top: -3px;
    font-size: 0.7rem;
}

.content-body {
    /* margin-top: 2rem; */
    padding: 0.2rem 0.2rem 1rem 0.2rem;
    /* margin-left: 345px; */
    min-height: 97vh;
    background: #fff;
    border-radius: 0.7rem;
}

.card {
    /* display: grid; */
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    background: #f6fafb;
}

.card-single {
    display: flex;
    justify-content: space-between;
    background: #fff;
}

.custm-menu {
    width: 105px;
    transition: .3s all;
}

.side-bar.custm-menu ul li span:last-child {
    display: none;
}

.side-bar.custm-menu .min-icon {
    display: block;
}

.side-bar.custm-menu .logo {
    display: none;
    transition: .5s all;
}

.min-icon {
    display: none;
}

/* .custm-menuA {
    width: calc(100vw - 105px);
    transition: .3s all;
    margin-left: auto;
} */

.project {
    display: none;
}


/* .projectA{
display: block; 
} */

.drp {
    display: none;
}


/* .drpA{
display: block; 
} */

.card1 {
    background: #fde3be;
    color: #b77415;
    height: 130px;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
}

.card2 {
    background: #cce7cd;
    color: #509a53;
    height: 130px;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
}

.card3 {
    background: #ccd9f8;
    color: #4b6197;
    height: 130px;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
}

.card4 {
    background: #b8ddd9;
    color: #39756f;
    height: 130px;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
}

.card {
    border: 0;
}

.conunt-box {
    position: absolute;
    bottom: -9px;
    right: 20px;
    font-size: 6rem;
    transition: .3s;
}

.anchr .card2,
.card4,
.card3,
.card1 {
    height: 170px;
}

.anchr a {
    text-decoration: none !important;
}

.anchrs {
    color: #00525e;
}

.card:hover .conunt-box {
    transform: scale(1.5);
}

.card-content h6 {
    font-size: 1.5rem;
}

.user-wrapper h5 {
    font-size: 0.8rem;
    margin-bottom: 0px;
}

.prodetails h5 {
    margin-bottom: 0.1rem;
    margin-top: 0.2rem;
    font-size: 1rem;
    color: #17a2b8;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.prodetails p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #262626;
    font-weight: 500;
}

.dw {
    color: #3e7c66;
    font-weight: 500;
}

.progile img {
    width: 40px;
    margin-right: 1rem;
    border-radius: 100%;
}

.profile {
    display: flex;
    align-items: flex-start;
    padding: 0.8rem 1.8rem;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.time-section {
    background: #f8f8f8;
}

.right-sec {
    border: 2px solid #737373;
    border-radius: 0.4rem;
    height: 100%;
}

.heade-sec {
    text-align: center;
}

.heade-sec h4 {
    /* background: #737373; */
    color: #17a2b8;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.8rem;
    /* border-radius: 0.3rem 0.3rem 0rem 0rem; */
    margin-bottom: 0;
}

.chat-section {
    margin-top: 2rem;
}

.time-section {
    text-align: center;
    color: #a3a3a3;
    /* background: #fff; */
}

.time-section span {
    font-size: 0.7rem;
}

.time-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.time-section i {
    margin-right: 0.5rem;
}

.logo:after {
    content: "";
    display: block;
    width: 236px;
    height: 1px;
    background: #ffffff;
    left: 32px;
    top: 74px;
    position: absolute;
}

.logo {
    font-size: 1.8rem;
    margin-bottom: 0;
    font-family: 'Abril Fatface';
    font-weight: 600;
}

.servicee {
    font-size: 1.35rem;
}

.time-sectionbtn {
    text-align: center;
    padding: 0.5rem;
}

.time-sectionbtn a {
    color: #dc3545;
    font-size: 0.8rem;
}

.left-sec {
    border: 0px solid #dddddd;
    border-radius: 0.4rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.header-tittle h3 {
    font-size: 1.3rem;
    color: #39756f;
    font-weight: 600;
}

label#nav-toggle span i {
    color: #72b0ba;
    margin-right: 0.4rem;
}

.prohram-box {
    border: 2px solid #737373;
    border-radius: 0.4rem;
    padding-bottom: 2rem;
}

.video-sec {
    border: 2px solid #737373;
    border-radius: 0.4rem;
    height: 100%;
}

.program-section {
    margin-top: 2rem;
}

button.cleintBTN {
    border: 1px solid #f55;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    background: #fff;
    color: #f55;
    width: 240px;
}

button:focus {
    outline: none;
}

.buttonSection,
.buttonSectionVC {
    padding-right: 2rem;
}

.profileprogrm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

button.cleintBTN span {
    margin-right: 1rem;
}

.prodetails span {
    display: flex;
    align-items: center;
}

.prodetails span i {
    margin-right: 0.3rem;
    color: #b9b8be;
}

.buttonSectionVC i {
    color: #0256fe;
    font-size: 1.3rem;
}

.profile.pror8 {
    border: 0px;
}

.profile.pror8 .time-section {
    background: #fff;
    padding: 0;
}

.heade-sec.head-tsk {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #c7c7c7;
    border-radius: 5px 5px 0px 0px;
}

button.taskBTN {
    border: 1px solid #fff;
    background: none;
    border-radius: 0.3rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-right: 1rem;
    color: #fff;
}

button.taskBTN span {
    margin-left: 0.3rem;
}

.side-menu li a span img {
    width: 26px;
}

a#pre-project i {
    font-size: 20px;
}

.side-menu li a {
    width: 100%;
}

.side-menu li a:hover {
    background: #fff;
    border-radius: 0.4rem 0rem 0rem 0.4rem;
    color: #3f7a82;
    padding-bottom: 0;
}

.side-menu li a.active {
    background: #fff;
    border-radius: 0.4rem 0rem 0rem 0.4rem;
    color: #437b83;
    padding-bottom: 0;
    display: flex;
    padding: 5px 0 5px 15px;
    align-items: center;
}

.search-area label {
    display: block;
    font-size: 24px;
    color: #275b63;
    font-weight: 500;
}

.direct_message {
    padding: 5px;
    border-radius: 6px;
    background-color: #629ba4;
    color: white;
    border: none;
}

.search-area input {
    width: 100%;
    border: 1px solid #ddd;
    padding: 8px 16px;
    outline: none;
    border-radius: 6px;
}

button.sort-btn {
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 5px;
    color: grey;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    color: #3c8b96;
    font-size: 18px;
    background: #fff;
    font-weight: 500;
    padding: 15px 27px;
}

.table {
    background: #fff;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border: 1px solid #dee2e6;
}

.table td {
    background: #fff;
    color: #737373;
    padding: 0px 12px;
    font-size: 15px;
}

.grey-area {
    background: #eceded;
    padding: 23px;
    border-radius: 7px;
}

.ck-content {
    height: 66px;
}

a.mng {
    color: #737373;
    margin-right: 12px;
    text-decoration: none;
}

a.green-btn {
    background: #76b3bc;
    color: #fff;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 28px;
    text-decoration: none;
}

#program-popup label {
    display: block;
    font-weight: 500;
    color: #7ab8c1;
    margin-bottom: 1px;
    font-size: 15px;
}

#program-popup input,
#program-popup select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #C6CCD1;
    background: #F8F8F8;
    color: #C6CCD1;
    outline: none;
    border-radius: 6px;
}

#program-popup input::placeholder {
    color: #C6CCD1;
}

button.prm-btm {
    background: #6db0b9;
    border: none;
    padding: 9px 24px;
    border-radius: 40px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.mycheckbox input {
    display: none;
}

.mycheckbox label {
    border: 1px solid #C6CCD1;
    padding: 12px 55px;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
}

.banner-header:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../image/layer.png);
}

.banner-header .banner-content {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
    padding-left: 2rem;
    padding-bottom: 3rem;
    border-radius: 13px;
    overflow: hidden;
}

.banner-header {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-position: -8px 0px !important;
}

.banner-content {
    color: #fff;
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.form-sec label {
    display: block;
    font-size: 18px;
    color: #7AB8C1;
    font-weight: 600;
    margin-bottom: 1px;
}

.banner-content p {
    background: #00000040;
    display: initial;
    padding: 7px 27px;
    border-radius: 20px;
}

.form-sec input {
    width: 100%;
    padding: 14px 22px;
    border-radius: 6px;
    border: none;
    outline: none;
    background: #F8F8F8;
    margin-bottom: 15px;
}

h2.widget-hdg {
    font-size: 26px;
    font-weight: 500;
    color: #737373;
}

.form-sec {
    background: #fff;
    padding: 18px;
    border: 1px solid #C6CCD1;
    border-radius: 9px;
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
}

.services-list label span {
    width: 35px;
    height: 35px;
    background: #fff;
    display: block;
    position: absolute;
    left: 8px;
    top: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #C6CCD1;
}

#program-popup label input:checked~span {
    background: #7AB8C1;
    border: 1px solid #7AB8C1;
    -webkit-animation: bubble 150ms ease-in-out;
    animation: bubble 150ms ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@-webkit-keyframes bubble {
    0% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1.1);
    }
}


/* ------------programm section -----------------*/

.heade-sec.pg2 {
    text-align: left;
}

.time-section1 {
    display: flex;
    align-items: baseline;
    color: #a3a3a3;
    font-size: 0.8rem;
}

.time-section1 i {
    margin-right: 0.2rem;
}

button.infoClient p {
    margin-bottom: 0;
}

button.infoClient {
    font-size: 0.4rem;
    padding: 0.3rem 0.2rem;
    border-radius: 0.5rem;
    border: 1px solid #509a53;
    background: #fff;
}

.pro-info {
    margin-left: auto;
    position: relative;
}

button.infoClient a {
    color: #509a53;
}

button.infoClient i {
    font-size: 1rem;
}

.active-client {
    position: absolute;
    right: -7px;
    top: -9px;
    background: #ecd84d;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    text-align: center;
    color: #f00909;
}

.progile2 {
    background: #96cf98;
    padding: 0.5rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.card-03 {
    background: #ccd9f8;
    color: #465f98;
    height: 130px;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
}

td.action-sec a {
    color: #7d777a;
}

td.action-sec a:hover {
    text-decoration: none;
}

button.EDIT {
    border: 1px solid #000;
    padding: 0rem 0.3rem;
    border-radius: 0.2rem;
    margin: 0.5rem;
}

button.linkExtr {
    border: 0;
    background: none;
}

button.elieps {
    font-size: 1rem;
    border: 0;
    background: none;
}

button.linkExtr i {
    margin-right: 0.2rem;
    font-size: 1.1rem;
}

button.elieps i {
    font-size: 1.4rem;
}

div#example_paginate .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #a7d0d6;
    border-color: #a7d0d6;
}


/* The container */

.container8 {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default checkbox */

.container8 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: -4px;
    left: -2px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #bbc3c8;
    /* border-radius: 50%; */
    border: 1px solid #bbc3c8;
}


/* On mouse-over, add a grey background color */

.container8:hover input~.checkmark {
    background-color: #ccc;
}


/* When the checkbox is checked, add a blue background */

.container8 input:checked~.checkmark {
    background-color: #a5d0d6;
}


/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.container8 input:checked~.checkmark:after {
    display: block;
}


/* Style the checkmark/indicator */

.container8 .checkmark:after {
    left: 5px;
    top: 1px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.raido-sec .form-group {
    border: 1px solid #bbc3c8;
    border-radius: 11px;
    margin-bottom: 1rem;
    padding: 7px;
}

.ptyment-section a#dropdownMenuLink {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: #000;
    border: 1px solid #bbc3c8;
}

.ptyment-section .form-group {
    margin-bottom: 0.5rem;
}

.ptyment-section {
    background: #f8f8f8;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #bec5ca;
}

.frpr8 form input {
    background: #f8f8f8;
}

button.btn.btnBOB {
    background: #4a6568;
    color: #fff;
}

.section-st {
    font-weight: 700;
    font-size: 18px;
    background-color: #6aa1a9;
    border-radius: 10px !important;
    color: white;
}

.frpr8 label,
.ptyment-section label {
    color: #3a97a4;
}

.datesdule .form-group {
    border: 1px solid #bbc3c8;
    height: 100%;
    border-radius: 0.3rem;
}

label.container8.rrr9 {
    height: 100%;
    font-size: 0.7rem;
    padding: 1rem 0rem 1rem 6rem;
    text-align: left;
}


/* .container8 .rrr9 .checkmark:after{
left: 18px;
top: 15px;
width: 18px;
height: 32px;
border: solid white;
border-width: 0 4px 4px 0;
transform: rotate(45deg);
} */

span.checkmark.check1 {
    position: absolute;
    top: 4px;
    left: 6px;
    height: 74px;
    width: 61px;
    border: none;
    border-radius: 0;
}

.container8 .rrr9 {
    display: block;
    position: relative;
    padding-left: 65px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container8.rrr9 .checkmark:after {
    left: 21px;
    top: 11px;
    width: 20px;
    height: 36px;
    border: solid #a5d0d6;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.datesdule label.col-form-label.nebel {
    color: #a5d0d6;
}

.contatp {
    margin-top: 1.5rem;
}

.numbr8 {
    color: #a5d0d6;
}

.frpr8 textarea#recipient-name,
.contatp input {
    background: #f8f8f8;
}

.modal-body.md-d {
    padding: 0.5rem 2rem;
}

button.btn.btnBOB {
    margin-right: 1.2rem;
}

.form-group.active {
    border: 1px solid #a5d0d6;
    color: #a5d0d6;
}

.container8.rrr9 input:checked~.checkmark {
    background-color: #fff;
}


/* .form-group:hover span.checkmark {
    background: #fff;
} */


.custom-shadow2 {
    box-shadow: rgb(7 2 2 / 42%) 0px 2px 8px 0px;
    background: #fff;
    /* padding: 25px 120px; */
    border-radius: 10px;
}

.signup-main-heading a {
    text-decoration: none;
}

.signup-card select>option:hover {
    background-color: #efefef;
}

.back-btn-text {
    font-size: 1.1rem;
    vertical-align: middle;
    color: #000;
    text-decoration: none;
}

.back-btn-text:hover {
    text-decoration: none;
}

.signup-main-heading .back-btn-text {
    font-size: 1.4rem;
    vertical-align: middle;
    color: #ffffff;
    text-decoration: none;
}

.signup-main-heading .back-btn-text:hover {
    text-decoration: none;
}

.widgets-login {
    padding: 32px 0px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.login {
    padding: 3rem 0;
    width: 80%;
    margin: 0px auto;
}

.signup {
    padding: 3rem 0 80px;
    width: 80%;
    margin: 0px auto;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1600px;
}

.form-logo span {
    font-size: 2.4rem;
    margin-bottom: 0;
    font-family: 'Abril Fatface';
    font-weight: 600;
    color: #349bac;
}

.signupbody {
    height: 100%;
    min-height: calc(100dvh - 160px);
    display: flex;
    align-items: center;
}
.form-logo {
    text-align: center;
}

.form-logo img {
    max-width: 161px;
    width: 100%;
}

.login-card {
    border-radius: 10px;
    background-color: #f3f9fb;
    padding: 40px;
    position: relative;
}

.form-main-heading {
    margin-bottom: 50px;
}

.form-main-heading h1 {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
}

.form-main-heading span {
    font-size: 1rem;
    color: #385a64;
}

.store-input {
    position: relative;
    width: 100%;
    margin-bottom: 27px;
}

.eye-pd {
    padding: 0px 40px 0px 36px;
    width: 100%;
    height: 50px;
    border-radius: 0.5rem;
    outline: unset;
    border: 1px solid #d4eaf1;
    font-size: 0.9rem;
}

.store-field {
    padding: 0px 10px 0px 36px;
    width: 100%;
    height: 50px;
    border-radius: 0.5rem;
    outline: unset;
    border: 1px solid #d4eaf1;
    font-size: 0.9rem;
}

.email-icon {
    position: absolute;
    margin-top: 15px;
    left: 15px;
    color: #9eccd3;
}

.lock {
    position: absolute;
    margin-top: 15px;
    left: 15px;
    color: #9eccd3;
    font-size: 1.2rem;
}

.fon {
    font-size: 13px;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
}

.parsley-errors-list {
    margin: 2px 0 3px;
    padding: 0;
    list-style-type: none;
    font-size: 0.9em;
    line-height: 0.9em;
    opacity: 0;
    color: #B94A48;
    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
    opacity: 1;
}

p.parsley-error {
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
}

.password-style {
    margin: 8px 0px 0px 2px;
    padding: 2px 8px 3px 13px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.phone-icon {
    position: absolute;
    margin-top: 16px;
    font-size: 1.2rem;
    left: 15px;
    color: #9eccd3;
}

.user-icon {
    position: absolute;
    margin-top: 4px;
    left: 11px;
    color: #9eccd3;
    font-size: 1.4rem;
}

.input-field-icon {
    position: absolute;
    right: 13px;
    top: 13px;
    display: inline;
}

.forgot-pwd {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 25px;
}

.label-rel {
    display: block;
    position: relative;
    padding-left: 32px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.label-rel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background: #ffffff;
    border: 1px solid #91ade1;
    border-radius: 5px;
    cursor: pointer;
}

.label-rel input:checked~.checkmark {
    border: 1px solid #349bac;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.signup-main-heading h1 {
    font-size: 2rem;
    color: #000;
    font-weight: 600;
    margin: 1rem 0rem;
}

.label-rel .checkmark:after {
    left: 6px;
    top: 2px;
    width: 7px;
    height: 13px;
    border: solid #349bac;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.label-rel input:checked~.checkmark:after {
    display: block;
}

.keepme-text {
    display: block;
    padding-top: 3px;
    font-weight: normal;
    font-size: 18px;
    line-height: 15px;
    color: #000;
}

.keepme-text a {
    text-decoration: none;
    color: #329aab;
    font-size: 15px;
}

.keepme-text a:hover {
    text-decoration: underline;
}

.name-felx {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.input-col {
    width: 49%;
    position: relative;
}

.signup-card {
    border-radius: 20px;
    background-color: #f3f9fb;
    padding: 25px 40px;
    position: relative;
}

.signup-btn {
    width: 100%;
    height: 50px;
    border-radius: 0.5rem;
    outline: unset;
    border: none;
    background: rgb(167, 208, 214);
    background: linear-gradient(150deg, rgba(167, 208, 214, 1) 0%, rgba(39, 149, 167, 1) 100%);
    color: #ffffff;
    text-transform: uppercase;
}

.user-icon {
    position: absolute;
    margin-top: 13px;
    left: 11px;
    color: #93c7cf;
    font-size: 1.4rem;
}


/* dashboard css start here */

.main-wrapper {
    margin: 0rem 90%;
}

.dashboard-bg {
    background: #f6fafb;
    /* background: url(../image/price-bg.png) no-repeat top center;
background-size: 100% 47%; */
}

.header-bg {
    height: auto;
    background: #2e2e2e;
    display: flex;
    align-items: center;
    padding: 1rem 7rem;
    position: sticky;
    top: 0;
    z-index: 9999;
    min-width: 375px;
    height: 80px;
}

.header_logo span {
    font-size: 2.5rem;
    font-family: 'Abril Fatface';
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2rem;
}

.top-nav {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0px;
}

.top-nav li {
    display: flex;
    background: #57aeba;
    margin: 0 0.4rem;
    padding: 0.8rem 2rem;
    align-items: center;
    /* justify-content: center; */
    border-radius: 30px;
    width: 222px;
    height: 38px;
}

/* .head-option {
    margin-top: 10px;
} */

.top-nav li a {
    font-size: 12px;
    padding: 0px;
    text-decoration: none;
    color: #fff;
    display: flex;
    white-space: normal;
    align-items: center;
}

.top-nav i {
    font-size: 1.3rem;
    line-height: 1.5rem;
}

.top-nav li a span {
    margin-left: 6px;
    font-size: 13px;
    white-space: nowrap;
}

.banner {
    position: relative;
    /* background: url(../image/img.png) no-repeat; */
    background-size: cover;
    /* height: 300px; */
    background-position: center;
    z-index: -1;
}

.banner-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #8b8b8be0;
    padding: 0.4rem 8rem;
}

.dates {
    display: flex;
    align-items: center;
}

.dates i {
    color: #fff;
    margin-right: 0.7rem;
    line-height: 2rem;
}

.dates span {
    color: #fff;
}

.copy-ent {
    width: 135px;
    border: 1px solid #fff;
    padding: 4px 8px;
    border-radius: 5px;
}

.copy-ent i {
    color: #fff;
    margin-right: 0.7rem;
}

.copy-ent span {
    color: #fff;
}

.banner-head {
    position: absolute;
    top: 6rem;
    left: 8rem;
}

.banner-head h1 {
    color: #fff;
    font-size: 2rem;
}

.log_bdr {
    position: relative;
    display: inline-block;
}

.log_bdr:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 15px 0px 0px 0px;
    width: 40%;
    height: 3px;
    background: #a5d0d6;
}

.main-content-area {
    padding: 0rem 7rem;
    width: 100%;
    margin-top: -4rem;
    margin-bottom: 5rem;
}

.middle-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.3rem;
    border-color: #a5d0d6;
    border-style: solid;
    border-width: 1px 1px 1px 6px;
    margin-bottom: 1rem;
    min-width: 400px;
}

.card-height {
    height: 700px;
    overflow: scroll;
}

.card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_head h2 {
    color: #1a9db1;
    font-size: 1rem;
    text-transform: capitalize;
}

.addentry {
    background: #a5d0d6;
    color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    background-color: #56959d;
}

.addentry span {
    font-size: 1.8rem;
    font-weight: 100;
    line-height: 1rem;
    margin-right: 0.3rem;
}

.card_footer {
    display: flex;
    justify-content: space-between;
    /* align-items: flex-end; */
    border-top: 1px solid #dcdcdc;
    margin-top: 5px;
    align-items: center;
}

.info-section {
    margin-top: 1rem;
}

.info-section p {
    margin: 0rem;
    color: #4e4e4e;
    font-size: 13px;
}

.info-section span {
    font-size: 0.8rem;
    color: #b8b8b8;
}

.edit {
    font-size: 0.8rem;
    background: #efefef;
    padding: 0.4rem;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
}

.edit a {
    color: #000;
}

.posted_entry {
    text-align: center;
}

.posted_entry i {
    font-size: 1.5rem;
    color: #d1d1d1;
}

.posted_entry span {
    display: block;
    color: #ccc;
}

.summary {
    background: #fff;
    border-radius: 1rem;
    padding: 1.3rem;
    border-color: #a5d0d6;
    border-style: solid;
    border-width: 1px 1px 1px 6px;
    margin-bottom: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-width: 400px;
}

.daily_summary {
    display: flex;
    justify-content: space-between;
}

.daily_summary h3 {
    color: #7ab8c1;
    font-size: 1rem;
}

.summary_bdr {
    position: relative;
    display: inline-block;
}

.summary_bdr:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0px 0px 0px 0px;
    width: 32%;
    height: 2px;
    background: #a5d0d6;
}

.entery-value h2 {
    margin: 3rem 0rem 0rem 0rem;
    font-size: 4rem;
    color: #7e7e7e;
    line-height: 3rem;
}

.inner_content h2 {
    color: #616161;
    font-size: 0.9rem;
}

.inner_content img {
    margin: 1rem auto;
    display: flex;
}

.nutrient {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
}

.nutrient_name:nth-child(odd) {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 5px;
}

.nutrient_name:nth-child(even) {
    background: #f8f8f8;
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.nut_name,
.nut_value {
    font-size: 0.8rem;
    color: #9f9f9f;
}

.custom-cal {
    background: #a5d0d6;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-width: 349px;
}

.custom-cal img {
    margin: 0rem auto;
    display: flex;
    width: 365px;
    padding: 1rem 0rem;
}

.water-add {
    border-radius: 0.5rem;
    background: #fff;
    padding: 1rem;
    /* background: url(../image/add-water.png) no-repeat; */
    background-size: cover;
    height: 420px;
    background-position: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    min-width: 349px;
}

.water_header {
    display: flex;
    justify-content: space-between;
}

.water_head h2 {
    color: #7ab8c1;
    font-size: 10px;
    text-transform: capitalize;
}

.addwater {
    background: #5bb9d2;
    color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    height: 35px;
    margin-top: 0px;
}

.addwater span {
    font-size: 1.4rem;
    font-weight: 100;
    line-height: 1rem;
    margin-right: 0.3rem;
}

.water_footer {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.glasses p {
    color: #1190c9;
    margin: 0px;
    font-size: 1.4rem;
}

.glasses_span {
    color: #65c1eb;
}

.glass img {
    width: 100%;
}

.site_footer {
    width: 100%;
    display: block;
    height: 60px;
    background: #fff;
    padding: 0rem 7rem;
    align-items: center;
    display: flex;
}

.site_footer ul li {
    display: inline-block;
    color: #848484;
    font-size: 0.9rem;
}

.site_footer ul li:not(:first-child) {
    padding-left: 20px;
}

.site_footer ul li a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.site_footer ul {
    margin: 0;
}

.user_info {
    display: flex;
    color: #fff;
}

.user_info h5 {
    font-size: 1rem;
    color: #fff;
    margin-right: 0.5rem !important;
}

.user_info small i {
    color: #fff;
    font-size: 1rem;
}


/* user profile dropdown css */

.v-dropdown .dropdown-menu li {
    background: #fff;
    padding: 0.2rem 0.5rem;
}

.v-dropdown .dropdown-menu li a {
    color: #349bac;
}

.v-dropdown .dropdown-toggle::after {
    display: none;
}


/* add entry modal box css */

.col-search {
    position: absolute;
    right: 12px;
    top: 3px;
    font-size: 1.5rem;
    color: #737373;
}

.searchText {
    padding: 5px 35px 5px 13px;
    height: 40px;
    background: #f8f8f8;
    border: 1px solid #cbd1d5;
    font-size: 0.8rem;
}

.watercount {
    height: 60px;
    width: 200px;
    font-size: 30px;
}

.navtab .nav-link {
    color: #c6ccd1;
}

.navtab .nav-link.active {
    color: #349bac !important;
    background-color: transparent !important;
}

.modal-changes .modal-content {
    padding: 0rem;
}

.mbody {
    padding: 0rem !important;
}

.modal-changes .modal-header {
    border-bottom: 0px;
}

.modal-changes .modal-title {
    color: #428993;
}

.modal-changes .nav {
    border-bottom: 1px solid #efefef;
}

.modal-changes .nav-link {
    padding: 0.5rem 2rem 0.5rem 0rem;
}

.fasting {
    border: 1px solid #ffbd5b;
    border-radius: 5px 8px;
    text-align: center;
    margin: 5px 8px;
    padding: 35px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.uppoto {
    border: 1px solid #f67c55;
    border-radius: 5px;
    text-align: center;
    margin: 5px 8px;
    padding: 35px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.nfood {
    border: 1px solid #4caf50;
    border-radius: 5px;
    text-align: center;
    margin: 5px 8px;
    padding: 35px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.recipe {
    border: 1px solid #039be5;
    border-radius: 5px;
    text-align: center;
    margin: 5px 8px;
    padding: 35px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.fasting,
.uppoto,
.nfood,
.recipe,
h4 {
    font-size: 1rem;
    color: #969696;
    font-weight: 400;
}

.fasting,
.uppoto,
.nfood,
.recipe,
img {
    margin-bottom: 1rem;
}

.grow img {
    transition: all .3s ease-in-out;
}

.grow:hover img {
    transform: scale(1.2);
}

.recent-entries {
    background: #f8f8f8;
    padding: 1rem;
}

.recent-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.r_ent {
    text-transform: uppercase;
    font-size: 0.8rem;
}

.add_m {
    text-transform: capitalize;
    font-size: 0.9rem;
    color: #4aa6b5;
}

.d-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d6d6d6;
}

.d-product:last-child {
    border-bottom: 0px;
}

.pro {
    display: flex;
}

.pro span {
    display: block;
    font-size: 1.9rem;
    color: #bebebe;
}

.p_head {
    margin-left: 1rem;
    line-height: 1.11rem;
    margin-top: 0.5rem;
}

.p_head span {
    font-size: 0.95rem;
    color: #b4b4b4;
}

.add-arrow {
    font-size: 2.5rem;
    color: #bebebe;
}

.modal-changes .modal-footer {
    border-top: 0px;
}

.btn-entry {
    background: #488891;
    color: #fff !important;
    border-radius: 20px;
    padding: 7px 21px;
}

.btn-entry-plus {
    background: #737373;
    color: #fff !important;
    border-radius: 50%;
    font-size: 0.8rem;
    padding: 8px 12px;
}

.reply-st {
    background-color: #c8d9db;
    padding: 10px;
    border-radius: 8px;
}


/* pricing screen css */

.price_bg {
    padding: 2rem 7rem;
    background: #2e2e2e;
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0px;
    left: 0px;
}

.pricing-bg {
    background-color: #fff;
    background: url(../image/price-bg.png) no-repeat top center;
    background-size: 100% 70%;
}

.item-end {
    display: flex;
    justify-content: flex-end;
}

.pricing-nav .navbar-light .navbar-nav .nav-link.active {
    color: rgb(11 84 94) !important;
}

.pricing-nav .navbar-nav .nav-link {
    color: rgb(255 255 255) !important;
    padding: 0px 25px;
}

.btn-login {
    background: #fff;
    border-radius: 20px;
    padding: 6px 25px;
    color: #71a6ad;
    margin-right: 1rem;
}

.btn-signup {
    background: #ff5555;
    border-radius: 20px;
    padding: 6px 25px;
    color: #ffffff;
}

.banner-heading {
    text-align: center;
    padding: 3rem 0rem;
    height: calc(100% - 10rem);
    margin-top: 10rem;
}

.banner-heading h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 400;
}

.banner-heading span {
    color: #fff;
    font-size: 1.3rem;
}

.jump-start {
    position: relative;
    background: #7ab8c1;
    width: 50%;
    border-radius: 2.2rem;
    color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 7rem;
}

.jump-start h2 {
    font-size: 1.5rem;
    padding: 1.5rem;
}

.empowered h2 {
    font-size: 2rem;
    padding: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: #296e78;
    word-wrap: break-word;
}

.empowered span {
    text-align: center;
    display: block;
    padding: 1.5rem 0rem;
}

.plr {
    padding: 0rem 2rem;
}

.jump-start span {
    text-align: center;
    display: block;
    margin: 0rem 2.5rem 0rem 1.5rem;
}

.jump-start p {
    margin: 0 auto;
}

.empowered {
    position: relative;
    margin: -2rem 0rem 0rem -1rem;
    height: 100%;
    min-height: 470px;
    background: #fff;
    width: calc(32.5% - 0.5rem);
    margin: 0rem 0.5rem 1rem 0.5rem;
    border-radius: 2rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.user_profile-dropdown .w3-black,
.w3-hover-black:hover {
    color: #fff !important;
    background-color: unset !important;
}

.user_profile-dropdown .dropdown-menu li {
    background: #065560 !important;
    padding: 0.2rem 0.5rem;
    border-bottom: 1px solid #ffffff5c;
    border-radius: 0px;
}

.user_profile-dropdown .dropdown-menu li:last-child {
    border-bottom: 0px !important;
}

.user_profile-dropdown .w3-border {
    border: 0px solid #ccc !important;
}

.user_profile-dropdown ul.dropdown-menu.w3-dropdown-content.w3-bar-block.w3-border {
    background: #065560;
    position: absolute !important;
    inset: auto !important;
    margin: 0px !important;
    left: inherit !important;
    right: 0px !important;
    transform: translate(0px, 0px) !important;
}

.user_profile-dropdown .dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #065560;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 3 !important;
    left: -51px;
}

.user_profile-dropdown h5 {
    font-size: 1.3rem;
    color: #fff;
    margin-right: 0.5rem !important;
}

.pricing-content {
    margin: 0 auto 3rem auto;
    width: 70%;
    display: flex;
    position: relative;
    flex-wrap: wrap;
}

.jump-btn {
    background: #fff;
    padding: 10px 50px;
    border-radius: 20px;
    color: #00525e;
    margin-top: 2rem;
}

.empower-btn {
    background: #7ab8c1;
    padding: 10px 50px;
    border-radius: 20px;
    color: #fff;
    margin-top: 2rem;
}

.jump-footer {
    text-align: center;
    background: url(../image/emp-footer.png) no-repeat top center;
    background-size: 100% 100%;
    height: 165px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emp-footer {
    text-align: center;
    background: url(../image/jump-footer.png) no-repeat top center;
    background-size: 100% 100%;
    height: 165px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.jump-start ul li {
    list-style: disc !important;
    padding: 0.6rem 0rem;
    font-size: 1rem;
}

.empowered ul li {
    list-style: disc !important;
    padding: 0.6rem 0rem;
    font-size: 1.2rem;
}

.pricing_footer {
    width: 100%;
    /* display: block; */
    height: 60px;
    background: #f8f8f8;
    padding: 0rem 7rem;
    align-items: center;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
}

.girl-fit {
    position: absolute;
    top: -197px;
    right: -47px;
    z-index: 9;
}

.girl-fit img {
    width: 100%;
    max-width: 130px;
    margin: 91px 52px 0px 0px;
}

.separator {
    display: flex;
    align-items: center;
    margin: 1rem 2.5rem 1rem 1.5rem;
}

.separator .line {
    height: 1px;
    flex: 1;
    background-color: #fff;
}

.separator .line2 {
    height: 1px;
    flex: 1;
    background-color: #000;
}

.separator p {
    padding: 0 2rem;
    margin: 0;
    font-weight: 600;
}

.fooddata {
    height: 400px;
    width: 100%;
    border: 1px solid #b9b2b2;
    overflow: scroll;
    overflow-x: hidden;
    z-index: 9999;
    position: fixed;
    background-color: white;
    padding: 10px;
    margin: -16px 0px 0px 30px;
}


/* #addmanual {
display: none;
} */

#getdata {
    overflow: scroll;
    height: 600px;
    overflow-x: hidden;
}

.api_field {
    cursor: pointer;
}

.api_field:hover {
    cursor: pointer;
    background-color: #d4d7da;
    color: white;
}

.glasses_span:hover {
    cursor: pointer;
}

.api_item_id {
    display: none;
}

.api_item_name {
    display: none;
}

#loader {
    display: none;
}

#getdata {
    display: none;
}

.align {
    text-align: right;
}

.glass_icon {
    color: #1191b3;
}

.watermsg {
    font-size: 15px;
    color: green;
    display: none;
}

.ent_data {
    text-align: right
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}


/* calender */

.ui-datepicker-header {
    background-color: #a5d0d6;
    color: white;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Roboto';
    padding: 0px;
    height: 40px;
    border-radius: 8px 8px 0px 0px;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
    display: none;
}

.ui-datepicker-prev:after {
    content: "<";
    font-size: 1.6rem;
    float: left;
    margin-left: 0px;
    cursor: pointer;
    background: #81b0b6;
    line-height: 1.7rem;
    width: 25px;
}

.ui-datepicker-next:after {
    content: ">";
    float: right;
    font-size: 1.6rem;
    margin-right: 0px;
    cursor: pointer;
    background: #81b0b6;
    line-height: 1.7rem;
    width: 25px;
}

.ui-datepicker-calendar th {
    padding: 10px 10px 0px 10px;
    color: #78acb3;
    font-weight: 400;
    border: 0px;
    font-size: 0.85rem;
    text-align: center;
}

.ui-datepicker-calendar {
    text-align: center;
    margin: 0 auto;
    padding: 8px;
    background: #fff;
    border-radius: 10px;
}

.ui-datepicker-title {
    padding: 0px 10px;
    font-family: arial;
    font-size: 1rem;
}

.ui-datepicker-calendar td {
    padding: 8px 0px;
    text-align: center;
    border: 0px;
}

.ui-datepicker-calendar .ui-state-default {
    text-decoration: none;
    color: #5a5a5a;
    background: #f4f4f4;
    padding: 9px 0px;
    font-size: 0.8rem;
    width: 65%;
    display: block;
    margin: auto;
}

.ui-datepicker-calendar .ui-state-active {
    color: #ffffff;
    background: #a5d0d6;
}

.add-child {
    background: gray;
    color: white !important;
    padding: 5px 14px;
    margin: 0.2rem;
    border-radius: 10px;
    border: 1px solid #dddddd;
}

.chatbox table th {
    font-weight: 600;
    font-size: 0.9rem;
    color: #686868;
}

.chatbox table td p {
    margin-bottom: 0rem;
}

.dflex {
    display: flex;
    align-items: center;
}

.dflex img {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
}

select.form-control:not([size]):not([multiple]) {
    font-size: 0.8rem;
}

.summ {
    font-weight: 400;
    font-size: 13px !important;
    color: black !important;
}

.custom-cal #calendar {
    margin: 0.5em;
    position: relative;
}

.senior-coach {
    margin-left: 20px;
    margin-top: 7px;
    display: flex;
    flex-wrap: wrap;
}


/* ====Changes CSS==== */

.panel.panel-default.credit-card-box {
    border-radius: 10px;
    box-shadow: 0px 8px 33px #bcbbbb;
}

.panel-default>.panel-heading {
    border-radius: 10px 10px 0px 0px;
    padding: 18px;
}

.panel-body {
    padding: 30px !important;
}

.cust-cl .form-control {
    height: 44px !important;
}

.cust-cl .cust-btn1 {
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-top: 14px;
}

.cust-cl .card {
    background: none;
    grid-gap: 0;
}

.credit-card-box .cust-pnl .panel-title {
    color: #16abc0;
    font-weight: 600;
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
}

.cust-crd {
    box-shadow: 0px 8px 20px #cccccc;
    border: none !important;
    border-radius: 10px !important;
    padding: 0 !important;
}

.cust-crd .card-header {
    padding: 1rem !important;
    color: #16abc0;
    font-weight: 600;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
}

.cust-crd .card-body {
    padding: 2rem 1.5rem !important;
}

.custCrd-btn {
    margin-top: 10px;
}

.cust-crd #payment-form .form-group label {
    font-weight: 600 !important;
}

.cust-crd #payment-form .form-group {
    margin-bottom: 2rem;
}

.cust-crd #payment-form input {
    height: 44px;
}

.cust-crd #payment-form button[type="submit"] {
    height: 44px;
}

#lab {
    color: black;
}

.checkinput {
    width: 20px;
    height: 14px;
}

.mandatory {
    color: red;
}


/* =========New Page CSS========== */

section.empower-sec {
    padding: 2rem 0;
    height: 100%;
}

section.empower-sec h1 {
    font-weight: 700;
    position: relative;
    margin: 2rem 0 4rem 0;
}

section.empower-sec h1::after {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 47%;
    top: 3.2rem;
}

.inner-container {
    width: 89%;
    margin: auto;
}

.task-crd {
    background: #dafdff47;
    padding: 2rem;
    border-radius: 35px;
    position: relative;
    min-height: 464px;
    margin-bottom: 20px;
}

.empower-sec {
    background-color: #92bcbe;
    height: 1038px;
}

.vid-crd {
    margin-top: 0.6rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(27, 27, 27);
}

.ply-btn {
    height: 100px;
    width: 100px;
    /* background: dimgrey; */
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ply-btn span {
    font-size: 7rem;
    color: #007bff;
}

.tab-btn {
    width: 100%;
    height: 70px;
    background: #fff;
    border-radius: 38px;
    position: relative;
    padding-right: 1.3rem;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin: 1rem 0;
}

.round1 {
    position: relative;
    margin-top: 1rem;
    width: 100%;
    max-width: 70px;
}

.round1 label {
    border: 2px solid #a1ccd2;
    border-radius: 50%;
    cursor: pointer;
    height: 45px;
    width: 45px;
}

.round1 label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 10px;
    left: 29px;
    opacity: 0;
    position: absolute;
    top: 14px;
    transform: rotate(-45deg);
    width: 20px;
}

.round1 input[type="checkbox"] {
    visibility: hidden;
}

.round1 input[type="checkbox"]:checked+label {
    background-color: #a1ccd2;
    border-color: #a1ccd2;
}

.round1 input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

.tab-btn p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.tab-btn span {
    font-size: 1.8rem;
}

.tab-btn .glss {
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.tab-btn .glss img {
    width: 80%;
}

.copyryt {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    color: #f4f4f4;
}

.proceedbtn {
    background-color: #409795;
    width: 250px;
    color: white;
    padding: 10px;
    border-radius: 15px;
    border: none;
}

label.onetime {
    font-weight: 400;
}

input#fixed {
    margin: 0px;
}

label.onetime {
    font-weight: 400;
    margin-bottom: 0rem;
    margin-left: 1rem;
}

.fix {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem !important;
}

.flex {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem !important;
}

.sub {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem !important;
}

.installmentemi {
    margin-top: 1rem;
}

#purchasepack p {
    font-weight: 500;
    font-size: 1.5rem;
}

.addmore {
    border: 1px solid black;
    background-color: gray;
    padding: 6px;
    color: white;
    border-radius: 19px;
}

.add {
    cursor: pointer;
}

.flexibutton {
    border: 1px solid black;
    border-radius: 8px;
    padding: 5px;
    background-color: #c4e3e0;
}

.fa-minus-circle:before {
    content: "\f056";
    cursor: pointer;
}

.depo {
    border: 1px solid #8bb9c1;
    padding: 5px 10px;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    text-align: left;
    background: #ffffff;
}

.payment .modal-title {
    font-weight: 600;
    color: #409795;
    font-size: 1.8rem;
}

.payment .price {
    margin: 0rem 0rem 1.5rem 0rem;
}

.payment .submit {
    margin: 2rem 0rem 0.5rem 0rem;
}

form#purchasepack {
    background: #3f95931a;
    border: 1px solid #e6f5f5;
    border-radius: 1rem;
    padding: 2rem;
}

.price b {
    font-size: 1.6rem;
    color: #000000a1;
    font-weight: 200;
}

.depo span {
    text-transform: capitalize;
    color: #409795;
}

.totalamount {
    color: #3a8390;
}

.price {
    background-color: #ebf4f4;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #00000012;
}


/* all save cards */

.credit-card {
    margin: auto;
    margin-top: 20px;
    /* margin-bottom: 20px; */
    border-radius: 7px;
    width: 100%;
    /* max-width: 250px; */
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 2px 4px 0 #cfd7df;
    min-height: 150px;
    padding: 13px;
    background: #1a1b1c;
    color: #efefef;
    height: 165px;
}

.credit-card.selectable:hover {
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}


/*  NUMBER FORMATTING */

.credit-card-last4 {
    font-family: "PT Mono", Helvetica, sans-serif;
    font-size: 24px;
}

.credit-card-last4:before {
    content: "**** **** **** ";
    color: #4f4d4d;
    font-size: 20px;
}

.credit-card.american-express .credit-card-last4:before,
.credit-card.amex .credit-card-last4:before {
    content: "**** ****** *";
    margin-right: -10px;
}

.credit-card.diners-club .credit-card-last4:before,
.credit-card.diners .credit-card-last4:before {
    content: "**** ****** ";
}

.credit-card-expiry {
    font-family: "PT Mono", Helvetica, sans-serif;
    font-size: 18px;
    position: absolute;
    bottom: 8px;
    left: 15px;
}


/* BRAND CUSTOMIZATION */

.credit-card.visa {
    background: #4862e2;
    color: #eaeef2;
}

.credit-card.visa .credit-card-last4:before {
    color: #8999e5;
}

.credit-card.mastercard {
    background: #4f0cd6;
    color: #e3e8ef;
}

.credit-card.mastercard .credit-card-last4:before {
    color: #8a82dd;
}

.credit-card.american-express,
.credit-card.amex {
    background: #1cd8b3;
    color: #f2fcfa;
}

.credit-card.american-express .credit-card-last4:before,
.credit-card.amex .credit-card-last4:before {
    color: #99efe0;
}

.credit-card.diners,
.credit-card.diners-club {
    background: #8a38ff;
    color: #f5efff;
}

.credit-card.diners .credit-card-last4:before,
.credit-card.diners-club .credit-card-last4:before {
    color: #b284f4;
}

.credit-card.discover {
    background: #f16821;
    color: #fff4ef;
}

.credit-card.discover .credit-card-last4:before {
    color: #ffae84;
}

.credit-card.jcb {
    background: #cc3737;
    color: #f7e8e8;
}

.credit-card.jcb .credit-card-last4:before {
    color: #f28a8a;
}

.credit-card.unionpay {
    background: #47bfff;
    color: #fafdff;
}

.credit-card.unionpay .credit-card-last4:before {
    color: #99dcff;
}


/*   LOGOS  */

.credit-card::after {
    content: " ";
    position: absolute;
    bottom: 10px;
    right: 15px;
}

.credit-card.visa::after {
    height: 16px;
    width: 50px;
    background-image: url('data:image/png;base64,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');
}

.credit-card.mastercard::after {
    width: 40px;
    height: 25px;
    background-image: url('data:image/png;base64,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');
}

.credit-card.amex::after,
.credit-card.american-express::after {
    width: 50px;
    height: 14px;
    background-image: url('data:image/png;base64,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');
}

.credit-card.diners::after,
.credit-card.diners-club::after {
    width: 30px;
    height: 24px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAYCAYAAADtaU2/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAED2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgICAgICAgICAgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiCiAgICAgICAgICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgICAgICAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iPgogICAgICAgICA8eG1wTU06RG9jdW1lbnRJRD54bXAuZGlkOkFDMEM4Rjk2NTQzRDExRTQ5MzZBQzlERDRCNDEwQzZDPC94bXBNTTpEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06RGVyaXZlZEZyb20gcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICA8c3RSZWY6aW5zdGFuY2VJRD54bXAuaWlkOkFDMEM4RjkzNTQzRDExRTQ5MzZBQzlERDRCNDEwQzZDPC9zdFJlZjppbnN0YW5jZUlEPgogICAgICAgICAgICA8c3RSZWY6ZG9jdW1lbnRJRD54bXAuZGlkOkFDMEM4Rjk0NTQzRDExRTQ5MzZBQzlERDRCNDEwQzZDPC9zdFJlZjpkb2N1bWVudElEPgogICAgICAgICA8L3htcE1NOkRlcml2ZWRGcm9t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');
}

.credit-card.discover::after {
    width: 50px;
    height: 14px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAOCAYAAABth09nAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAVlpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDUuNC4wIj4KICAgPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICAgICAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgICAgICAgICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iPgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KTMInWQAAA/tJREFUSA19ll2IVVUUx73jmEYgiUpYiIREkFqQD0FhKiVIoPaSRaEPQlATZmk9JERBQVCSldjHk9iDqE8KQaTQB0lFoljDSGKiFI3VWJZZfo6n32+fta5nrrcW/O/6r8+999n77HNbVVWNHnVZqlardSlNYj1yffAWVFt9qSNPX/axxzB2kehhfERdjNs5njmO4RyyBlok52W80pNziLmVpPaPA8fgnT4btyWL0bmAdixJt1inr9FnRP/s8X+aWuda6lqQmZHsUxxklX9qR8J0Ob7vwzcDPQHsx/cPOb3oixG7A309OIjvELEetDt5Nb5ZwAV/h++kdXB7/Yp9HBvlVKqx+G4Bx4H8WnAejAH6zoCJwB05Rc0faOd6lT8X7BByHv0OuCYSDsA/D64/ZQgyO/yz4P0ZCH1fxJZiH2nEfoGvjNg+eH9wF+ZcHo/ce9EfBE+1FvJkGL+jz4G3wFTQZ7GyHcwFG4CyOxoPwHeB2TqRl8EU8CKYDCaCU+Bv8DBwUW+AuWAeSHFnRMqDkAfCmONYCvZBcDS4D/EwuAvcDyaBV4GyGDxXWFU9gx6fC3m+dKqbZcIcEvaAj4Bc2ZB5Mdibtbu6vemP2LcRO4POhZwN3zH0DeA02B75Tlh5KuxD8E/lKdivm9CwNd8ttgx5pRG8sXZVK9Efg6+Mod8Pv5NaD3zR9oIjEdf2XJtrD3dJGa5V+zd35mY87YnB346MSdHj67B/Cv0Q2uOlrAFbCquqheaXsylpyLjgvkiuvuTwYi2ncD32KuBTGwJeDNcBxdxyXaPz+tTfFHOEN42Lfg88Td8X0EvBVsY5gVYcdxC8BBxjL/AiUNbVatQ88j+jvieP1toIaG8CimfyC2DiOOCNVATuEfHlfxYod2ZMjT0aeMaVbkfLm8rbz1z7p9ytT8ExAD6srfoXeyOwtg8oSyK31wLlS+CknLjSFwlH4Z8Aj5LX7QrgApRHI+fn2iz1C+Bu+T1gfvi7qcfqqZUJPxIJe9IXfV2It9Nq8Bq4DawD7qjz3iZHbi11kH5wGHgWXciiEqiTd2BvAtPBNyBlM8Tvgw2nAS+EFHdrfsSWwX/IANpFPxExvyvWjwe/gXx46d+Jz8vgBFBWBdyRMWACGAQ77dOCWNj5VyE/Zp55eX70bsI+i/0j2kk0P4hTcHlcjhF397JHfhDtNUDsL7S10FY+3am4hrB9CMWP9lvm3IaB79Q5YA/frdMkeWn4oXTMk+Cy2ARccQHgK08pMyOvvNjGtDPW1Pi79ept5v8Xb/bpxqkr42fMiafDR1GeUAZzEP3BSy62T6ktzRjOK3YXX44x4s9mNqDeB2WsPT6+rGmnBSGt/mObOdr/Ap6tK4eqKaaFAAAAAElFTkSuQmCC');
}

.credit-card.jcb::after {
    width: 30px;
    height: 15px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAPCAYAAADzun+cAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACXBIWXMAAAsTAAALEwEAmpwYAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAgICAgICAgIDx0aWZmOk9yaWVudGF0aW9uPjE8L3RpZmY6T3JpZW50YXRpb24+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgpMwidZAAACsklEQVQ4EX2U32uOYRjH32c2zIjyKyc7IDkRZw4cMEcjxIHSyoH4C6yNNJRJOZKWAyeEQqI4wQnlhE0phCHmR1NsI43ttdnm8fk8nktPWu+3Prvu676v57qv+3rve0kJpWk6FbMdVkICRemfS5LkiZPEbsSsgRpdUNpauEbc7WwiTVdjjXW+GDcd/4GJauAiVJJFGXusUhBrh/O4XYzHKsReryZwEzTBOFiZJ9ROgLIbgyRZgm11Ao1AsTPGzoAfxBl/CMxdzi3mX07jhl00YSjaZ1LHod8M6qEKxsB2TSbjFsG8fNFNJlPixkXFiT8y2Q1usAqmwC9QFvQUXoNdshhPth5cc3PVBf2gH9/OZtwIVX4UctP46AqXxIDN8BZMGK0/ztoK/Gb4Brb9IbyHOIixu4nbgu2BpXAH3+LaoM5AN1QmHwVPJ8obadstyPFnOADqLDSA2vHXlC5j4zDT8rlZ2DqYmftztG7sZbCtc2EhqPjIFsVls5gvVP2TC7SA8WJQFhWbZRP88TBx+nuM++A+qPkw4QdWdBc2wDN4BadBNcAy8ELZjeVsupbN/e3a4SvYbn/zIbC4uCfOq21wEHaC6oDUqgzYD1beAgOO2WAfdi/Es/F3U+dZO4J9B0fBFr6EPWCn3NgDbSXuObYTXsAbfA/n3fjuP4UWCA0z6IVyTOS2Ebvuvzld361vfEgHNUM9hO/cCBg3rpPrQvwOFJG10ncXby+eitVLyHm7IHFhohu2OjrEMHtudiE64Z3xTlWb0NYox7bbxCYqJvA2x+YRrzUuYFj6AM6bJxTrzsW3PSazAuVz0rcLVi76Z7hMj7BxOuNiPaw5bsFVKHatmMtYT/4YOlzoBRMPQpyKYVb1TewJHfQJboD/MIqyM51wigK9lGXGl6AWPG3IjbvhpK/iD/ZAl+AbzJMOAAAAAElFTkSuQmCC');
}

.credit-card.unionpay::after {
    width: 50px;
    height: 30px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAeCAYAAABuUU38AAAKZklEQVRYhd2YeXBV1R3HP3d5+5rlkQAhhCUD4sKiFRDZFFeoyIxVmcpMx62ldjpTZlprq7W2bq06rdjK1CpDVapOVWCKZVNLxUgwIMgOAUISwpaNl7e/d+89nXtvwPdCEtD/2t/Mb+459557zvn+9nP4fyEpH4dgQQ9YMqBxLHIIXcksknFOBRw9seckmYpsEg14ouIy/jxgBAlJBkPvXUzmqlkBBlDlgEoVFKCP4YX/Coi07uG1ex9l57jc2ddq/pi0u7HHTxJC4EKWNiM7xlsL9yABFGsZErLKjFFT2VlSCcko6Jr1f6+kdb8c54IKFeKG/a6P4QUkJOgsms20TaPZydxegZwKt58nOSHJjyvCM1425O5tn0/hbIofDLuKnZFhEGs7J4Q+KS2gulsTZ4xza100pd1QfvK2/PEFQGTNc764FXm+pfY+QHgMg4TTzbpABDLJi5Bo96ph2Tavb0KKDmnXxr6ByD1XlCoMmao+MFgU0nPs8gQ46vKBnr3wrnQBHgm8JpBvhsPyk6x7Q8He8zuKyGfZ1PZkC4NugJHnIGZfWEBxWkBC4PSCfhHeavqCCcJtRgndntc4O9/XIFn/JH9wgUYMWSuYyFBdk8loaG2nkBQ3avlAjEQX+pkOlFAxkt8HwmCbNwyK2qf5FZCJNazaiKIJ2wxMELkc+HwQ8IF2AYEIKYmq1fUJRPSQqNHVNVGKlFC+5k30M120fm8hzmGXEHl7MYkV60kvW0bOX0qtCaSvUFuwAN1hNsbIsuG8ePcshpUUIQnBpsZmntiwkZa2dvB4+p5DMkB3bCPtyuS/LvQKyfkVyy6Pluqc4BwzEs/N01GHV5LNtOCeNQXPTdMQsQTBzCn25CS2Sh7Qc9DUCq1RcKqQykIi3T2xgGQGulJgZMFIMLe6mltHjeT1HbtYV3+EB64az8Mzp8LJ07aJ6t1ml812a0wDTbMloWi1+BL0CUSWpG6WkSTpakHK7bzyMutb/NV3rKf7usnWM7lyLUF1CIeGVoE/CPEECx+azdzbJ8GXDTgDHgKRELTHLFCyz40vFEQp94BHZvbwEWQ0nWd//Xv+8Nnn1pzr6w/b2khnrPAtmWbncNh9BGVFIRtg1llLxlUApNC0hJ7XlqdLuHFNn2j1MzXbUXDinjmZ5IZPcU4cB+8uYbYkczClcctPl/LIXVN5acVmbrj1Kl59coG1+I9fWk06q7H8l3da/tGhpRi7eAkDvD5cqsKaJc9z8+VjeHPHLiqCAfY/8xjHuuLUt7WzubmFR2dM4aHV61g6bw4Prl7HmqbPwVe2GaMw8RSalpAsNkxOpq5RS4bgmTUFvStOYu9aVIaghIOk3l9L+O65RGWVpnU1DBpUzNhRg8npBo2tUda/8iNe+MenNJ2O8vT9N/LD2ydxJp5i/dZ6qiMlDCqNMCgYoLa5hbZEkvmvvsHizXUsmXsrj3z0CdePqKIs4GdfWzvVpSWsXnAXaV1nzaZaCPr34E2cIBDrG4gimSxQJWSRyV0th3ymiaEE/YS++yDln75jOWxy5Xo8D97N0dUbrTxSezLOFVVlDB9UTGlJ0JqrNZrk2suGsml3I7dNHs2bH+3EK1RqWlu4vLSYIo+bn/xrAwt++xxvv/9PFl07yfrv4OlW6/nu3v3UHW6w2k5FYfpf/waymQK8m+gKQjTYj0bMskKWEbJ0hVQULNJPHqfj4WfJHTjCgNdeRg4FaLn6FkQmC00tnKjdxb7ywaxbV4fX7WBtXT1vr9rCpl1HeereWfxpZS3PvPUJB5rbqN3TjC/gYmntDgaHguxrbWOPuelR1TBsKMu/2MmRjk7enX8HjWeifHKkERJ2pbB0+y6O7zkApaVm+VGLKwvOXAGQAkNrjozrhqcsFIrzZQwN7eQxZG8RsseN1t5q2b1j2HAqjjXyu4rL+PklUyHaAR6nHanM6KIqdr9mHwyNQHEAjkZhuApXKKApdv4oLYH2Tjsud8XB47bZFGg0xgPzbuWV22fjffQpUrE4BAJmUhiFzEErlD/5WO/OLhuS9V1I0iQhDCRk1PIhiHQGoWmokQGgOmxJKQp14VI7yzsUG4AiQygIDacwo8oLby6i5kALq1dtYd591xEc7UeNOHHrsiX9VbVbue/GmQwvLuJgaysVoRAuh4PXt+3g0NEmC8Rzn20h1dQMw4ZAjhOk/AetCrhHkVkIxDxDSKDJ0jQ7SduZWnLnhTph4EYQDYT5wl9s262qfPU9mqRkQIjFv5rPDRNGcGlRgAqngxcWzWV3ooNUUzuTLx3Fsu07LSCvzpvNX+q+YNkdc2no6ETTNK6tHMzJRJKtLSf42TsroazMrggUoxZ/vNdSudBHFIEhixECqUrqp9wI6zn2uf00uP32uSOf2roYP/VSy8HfWL+d3YdPUFlVhoFgxabtHE6lrMGL1nzIty4fY7VPx5M0R6M8X7OFjYePUhkOMa68jL9/ucsuXVxOu1DMOWrIOiHrsLkvIIYuzNA7ud+zhKlGq1AMgtNzfmkS9NK0u5FEOsuiO68l3tbFpOpBCENQHQzi9Xn44EA9nfsP8sz109nY0MjAgI+I14eWSoPTwYjiIg51drL9aLPVP1fDGfJ/0FTOcV9AEGZXnnzB0k9AnbcI5B6FoukvssR3brmSsN/NjsbTnNB0BhcFefqjGsKlRUwoL2NDQ5NVIE6vquR4V5ypQyt5b+9+jp9u4/4JYzkei1Nz4BD7ojEz8JzdZhRvcgfBLs5xX0AkM5HI0sT+SmqnMEg7XNT6wueblSzBmThJAS6HyrR7F9Mmy1RVFrNix35uHD2SNfWHWbXuY74/+0ZURebDww2MipTw3u79tOSyVt4a4PXwxy3bONV0DAJ+kHRTA3XEApqVQ85yn0AEQYEY259hhXSNepePve6AXSgWTCBZZwx3t/P/4p4ZjBlcgqEbPDVnJl3JNFXhEEdzOcYUhfn4QD2PzZhCTtd5ZPo1fPzQ/dyx7C1aE0me//bNtqCsityMUqIW1QzteZy/dH6nOXLlTUJR1/Z3rhiSSbC8pJJ7qqeAljn/QKQbqE6VSNiH3+umoaGNAVUB1LEe2mNJhoZC7Os4g4gnIJnCESkh4HRQ6vMSz+Q4frgB7+CBVh3WaY5RuiOibMxBEh8UrPWbx881CzxGksQ0Q7IDRG9kR2Sd7eaJ0MwnufT5o5wqWirLibYuu5zPKhxvPQ3tXkgZ7O2Igs9rRyKXk1wyRUcsToeZGE2xlg8gGYuRNH3DDPtGt0YS3lrbh3unwupXUq/vzz8cQpBTnGzxFRUefXtoxALg9HcfpAQM8YJHLdTe2choAsonc163235htiVLgntQ9fb+Lr56AGFif/7hFjptqovdZui92BOhuYJfprc7sQuSaRomxwJvWfmjH+rp7P/uL/SmJZmyXJpxqSiYtyYX3Ih5wQDEDHB9nYurPDJk06SeRdU5j/OoMKso8hxJ158AhltxsAeZV6MxRWF5w1YWGgYfhgfKKUMXwhJbLyIwZ3BKcDBnfy5TzIJBXMwdBZLIoamfIaQXKTv1zYTwP0fAfwGNu1G2zKQzagAAAABJRU5ErkJggg==');
}

a.ui-state-default.ui-state-highlight {
    background: #a5d0d6;
    border-radius: 30px;
}

a.ui-state-default.ui-state-active {
    background: #aeb4b5;
    border-radius: 30px;
}


@media(max-width:1366px) {


    table#juniorcoachesdata tbody tr td:nth-child(3) select {
        width: 76%;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1770px) {
    .ui-datepicker-calendar td {
        padding: 3px 0px;
        text-align: center;
        border: 0px;
    }

    .ui-datepicker-calendar .ui-state-default {
        text-decoration: none;
        color: #5a5a5a;
        background: #f4f4f4;
        padding: 3px 0px;
    }

    .ui-datepicker-calendar th {
        padding: 10px 4px 0px 4px;
        font-size: 0.65rem;
    }

    .top-nav li {
        padding: 8px 12px;
    }

    .top-nav li a span {
        margin-left: 0.5rem;
        font-size: 1rem;
    }

    .top-nav i {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .user-wrapper img {
        border-radius: 50%;
        margin-right: 0.5rem;
        margin-bottom: 0rem;
        height: 29px;
        width: 30px;
    }

    .user_info {
        display: flex;
        color: #fff;
        align-items: center;
    }

    .user_info h5 {
        font-size: 0.8rem;
        color: #fff;
        margin-right: 0.5rem !important;
    }

    .user_info small i {
        color: #fff;
        font-size: 0.7rem;
    }

    .header_logo span {
        font-size: 2rem;
    }
}

.signup-btn:hover {
    cursor: pointer;
}

.w3-btn,
.w3-button {
    padding: 0px 3px !important;
}

.prof {
    background-color: #ffffff;
    padding: 50px;
    border: 1px solid #a5d0d6;
    border-radius: 20px;
    border-width: 2px 2px 2px 9px;
}

.profil {
    background-color: #ededed;
    padding: 50px;
}

.bac {
    background-color: #f6fafb;
}

.but {
    color: #000000;
    background-color: #a5d0d6;
}

.active {
    line-height: 30px;
}

.new td {
    font-size: 15px;
}


/* -===========09Aug============ */


/* -===========10 Aug============ */

a.canvasjs-chart-credit {
    display: none;
}

.downlod {
    background-color: #a5d0d6;
}

.subb {
    background-color: #8fa988;
    color: black;
}

.serv {
    color: #242222;
}

.serv:hover {
    cursor: pointer;
}

.cmm {
    display: none;
}

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}


/* The Modal (background) */

.modals {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}


/* Modal Content (image) */

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 800px;
}


/* Caption of Modal Image */

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}


/* Add Animation */

.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}


/* The Close Button */

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

.module_name {
    border: 1px solid #e0e0e0;
    padding: 7px;
    border-radius: 7px;
}

.markcom {
    float: right;
}

.markview {
    float: right;
    margin-right: 70px;
    color: #3794a1;
    margin-top: -7px;
}

.gobackbtn {
    padding: 6px;
    border-radius: 10px;
    background-color: #5ba0a0;
    color: white;
}

.left_arrow {
    font-size: 20px;
}

.compltd {
    width: 160px;
    padding: 25px;
    color: #3794a1
}

.mac {
    border: none;
    outline: none;
    font-weight: 600;
}

.mac:hover {
    cursor: pointer;
}

.notification-drop {
    font-family: 'Ubuntu', sans-serif;
    color: #444;
}

.notification-drop .item {
    padding: 10px;
    /* font-size: 18px; */
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.notification-drop .item:hover {
    cursor: pointer;
}

.notification-drop .item i {
    margin-left: 10px;
}

.notification-drop .item ul {
    display: none;
    position: absolute;
    top: 100%;
    /* background: #fff; */
    left: -200px;
    right: 0;
    z-index: 1;
    border-bottom: 4px solid #92bcbe;
}

.notification-drop .item ul.scroll-div {
    height: auto;
    max-height: 555px;
    border: 2px solid #417e87;
}

.notification-drop .item ul.scroll-div .loader {
    display: none;
}

.notification-drop .item ul li {
    transition: 0.2s;
    font-size: 15px;
    min-height: 60px;
    margin: 0px;
    padding: 11px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
    background: #f9f9f9;
}

.com_name {
    background-color: #3d4247;
    padding: 4px;
    border-radius: 4px;
    width: 340px;
}

li.notfications {
    color: #221f1f;
    background: transparent !important;
}

.notification-drop .item ul li:hover {
    color: rgb(114 155 169);
    border-left: 4px solid #a5d0d6 !important;
}

@media screen and (min-width: 500px) {
    .notification-drop {
        display: flex;
        justify-content: start;
    }

    .notification-drop .item {
        border: none;
    }
}

.notification-bell {
    font-size: 20px;
}

.btn__badge {
    background: #FF5D5D;
    color: white;
    font-size: 14px;
    position: absolute;
    top: 0;
    right: 4px;
    padding: 3px 8px;
    border-radius: 50%;
}

.pulse-button {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    -webkit-animation: pulse 4.0s infinite;
}

.pulse-button:hover {
    -webkit-animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    70% {
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(255, 0, 0, 0);
    }

    100% {
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.notification-text {
    font-size: 14px;
    font-weight: bold;
}

.notification-text span {
    float: right;
}

.noti {
    margin: 6px 9px 0px 0px;
}

.notif_button {
    width: 225px;
}

.notfications {
    background-color: #a5d0d6 !important;
    height: 25px;
    border: none;
    /* border-bottom: 1px solid #ffffff57; */
}

li.notfications span {
    color: #ffffff;
    font-size: 13px;
}

.user-text {
    margin-bottom: 1px;
    font-weight: 600;
    font-size: 12px;
    text-transform: capitalize;
}

.ondate {
    font-size: 11px;
    float: right;
}

.feild-height {
    min-height: 50px;
}

.w3-display-topright {
    position: absolute;
    right: 20px !important;
    top: 12px !important;
    font-size: 30px;
}

button.btn.question_save_button {
    padding: 10px 40px;
    border-radius: 30px;
    background: #707070;
    color: #fff;
    transition: 0.2;
}

button.btn.question_save_button:hover {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
}

button.btn.toto_save_button {
    padding: 10px 40px;
    border-radius: 30px;
    background: #707070;
    color: #fff;
    transition: 0.2;
}

button.btn.toto_save_button:hover {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
}

.coach_notifi {
    background-color: #2e2e2e;
    padding: 5px;
    border-radius: 0px;
    margin-top: 7px;
    display: none;
    padding-bottom: 0px;
    border-radius: 20px;
}

.glasspic {
    width: 37px;
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 40px !important;
    right: 0px !important;
    left: auto;
}

ul.dropdown-menu.w3-dropdown-content.w3-bar-block.w3-border {
    background: #2e2e2e;
    position: absolute !important;
    inset: auto !important;
    margin: 0px !important;
    left: inherit !important;
    right: 0px !important;
    transform: translate(0px, 0px) !important;
}

.v-dropdown .dropdown-menu li a {
    color: #ffffff;
    padding: .40rem 1.5rem;
}

.v-dropdown .dropdown-menu li {
    background: #2e2e2e;
    padding: 0.2rem 0.5rem;
    border-bottom: 1px solid #ffffff5c;
    border-radius: 0px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #64626298;
}

.w3-black,
.w3-hover-black:hover {
    color: #fff !important;
    background-color: #2e2e2e !important;
}

.foodtitle {
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 18px;
    border: 3px solid #a5d0d6;
    border-width: 2px 2px 2px 8px;
    letter-spacing: 5px;
    /* min-width: 400px; */
}

.fooduser {
    letter-spacing: 0px;
}

.foodcommenttitle {
    background-color: white;
    color: black;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid #a5d0d6;
    border-width: 2px 2px 2px 8px;
    letter-spacing: 5px;
    min-width: 400px;
}

#video-demo-container {
    width: 400px;
    margin: 40px auto;
}

#main-video {
    display: none;
    max-width: 400px;
}

#thumbnail-container {
    display: none;
}

#get-thumbnail {
    display: none;
}

#video-canvas {
    display: none;
}

#upload-button {
    width: 300px;
    display: block;
    margin: 20px auto;
}

#file-to-upload {
    display: none;
}

#thumnailsec {
    background-color: white;
    border: 1px solid #dfd8d8;
}

.checkthumnail {
    margin: 65px 3px 50px 73px;
    height: 25px;
    width: 25px;
}

.workoutthumb {
    width: 100%;
    border-radius: 35px;
    height: 444px;
    /* height: 326px; */
    /* margin-top: 30px; */
}

.thumbnailicon {
    /* position: absolute;
margin: -84px 0px 0px 151px;
font-size: 110px; */
}

.waterin:hover {
    cursor: pointer;
}

.waterout:hover {
    cursor: pointer;
}

.vid-crd:hover {
    cursor: pointer;
}

.waternum {
    font-size: 35px;
}

.wpplaybtn {
    position: absolute;
    /* margin: 20px 4px 4px 69px; */
    font-size: 36px;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wpallvideo {
    width: 100%;
    height: 200px;
    border: 5px solid gray;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fasting {
    background: #878b8b;
    color: #fff;
    border-radius: 30px;
    padding: 0.375rem 0.75rem;
}


/* ====== */

/* .vids-sec { */
/* display: flex; */
/* flex-wrap: wrap; */
/* justify-content: start; */
/* } */

.vid-crd {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 35px;
}

.vid-icon {
    position: absolute;
    font-size: 100px;
}

.post-text {
    position: relative;
    min-width: 400px;
    height: 100%;
}

.post-text .pointerr {
    position: absolute;
    width: 7rem;
    bottom: 26px;
    right: 124px;
    cursor: pointer;
}

.post-text .postpointer {
    position: absolute;
    width: 7rem;
    bottom: 26px;
    right: 22px;
    cursor: pointer;
}

.post-text .pointer2 {
    position: absolute;
    width: 7rem;
    bottom: 26px;
    right: 14px;
    height: 60px;
    cursor: pointer;
}

textarea.form-control.flentry {
    padding-right: 16rem;
}

textarea.form-control.flentry2 {
    padding-right: 9rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #54939d;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.we {
    color: black !important;
    font-weight: 700;
    font-size: 17px !important;
}

.hvbutton:hover {
    background-color: green;
    color: white !important;
}

.custom-box {
    align-items: center;
}

.custom-box div select {
    font-size: 1rem !important;
}

.design-box {
    background: #a5d0d6cc;
    padding: 1rem;
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
}

.service_st {
    margin-left: 0px;
}

.dataTables_filter label input {
    padding-left: 6px;
}

#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    background-image: url("https://media.tenor.com/1No9rO6uaZsAAAAM/xm-loader-xcelerate-media.gif");
    /* background: rgba(0, 0, 0, 0.75) url("/your_loading_image.gif") no-repeat center center; */
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-position: center;
    z-index: 99999;
}

.aclr {
    color: #206c42;
}


/* Popup container - can be anything you want */

.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* The actual popup */

.popup .popuptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    /* text-align: center; */
    border-radius: 6px;
    padding: 13px 10px 14px 16px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}


/* Popup arrow */

.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}


/* Toggle this class - hide and show the popup */

.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}


/* Add animation (fade in the popup) */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.expire_alert {
    padding: 15px;
    border-radius: 10px;
}

.help-btn {
    background: #349bac;
    border-radius: 20px;
    padding: 6px 25px;
    color: #f9fcfc;
    margin-right: 10px;
}

.top-nav i {
    margin-bottom: 4px !important;
    font-size: 18px !important;
}

.glass_one {
    width: 100%;
    max-width: 180px;
}

#waterlog img {
    margin-bottom: 5px;
}

.glass {
    position: relative;
}

.water-lable {
    font-size: 60px;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    font-weight: 700;
}

.waterout {
    position: absolute;
    top: 37%;
    left: 40px;
    font-size: 65px;
    background-color: #ebebeb;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    line-height: 41px;
    z-index: 3;
    font-weight: 700;
}

.waterin:hover {
    background-color: #afc9cd;
}

.waterout:hover {
    background-color: #afc9cd;
}

.waterin {
    position: absolute;
    top: 37%;
    right: 40px;
    font-size: 65px;
    background-color: #ebebeb;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    line-height: 41px;
    z-index: 3;
    font-weight: 700;
}


/* notification CSS start here */

.show-notification:after {
    content: "";
    position: absolute;
    top: -10px;
    right: 30px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 10px solid #fff;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-box-shadow: -10px -9px 23px 1px rgb(0 0 0 / 10%);
    box-shadow: -10px -9px 23px 1px rgb(0 0 0 / 10%);
}

.show-notification {
    background: #fff;
    -webkit-box-shadow: 0 2px 30px 6px rgb(0 0 0 / 10%);
    box-shadow: 0 2px 30px 6px rgb(0 0 0 / 10%);
    position: absolute !important;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 28rem;
    /* right: -15px !important; */
    top: 50px !important;
    left: auto !important;
    overflow: visible;
    border: none;
}

.show-notification.notification-view li:first-child:hover {
    background-color: transparent !important;
}

.show-notification li:first-child h6 {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.show-notification li:last-child {
    border: 0px;
}

.label {
    border-radius: 4px;
    font-size: 75%;
    padding: 4px 7px;
    margin-right: 5px;
    font-weight: 400;
    color: #fff !important;
}

.show-notification li {
    background-color: transparent;
    height: fit-content !important;
    margin: 0px;
    padding: 10px 15px !important;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start !important;
    border-radius: 0px;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
    border-bottom: 1px solid #d5eaed;
}

.show-notification li:first-child label {
    float: right;
}

.media {
    display: flex;
    align-items: flex-start;
}

.show-notification li img {
    width: 40px;
    margin-right: 10px;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
    border-radius: 50%;
}

.media-body {
    -ms-flex: 1;
    flex: 1;
}

.show-notification .notification-user {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.show-notification .notification-msg {
    margin-bottom: 1px;
    text-align: left;
    font-size: 15px;
}

.show-notification .notification-time {
    font-size: 12px;
    color: #919aa3;
}

.media-body p {
    font-size: 0.9rem;
    color: #505050;
    margin-bottom: 1px;
}

/* a.viewBTn {
    color: #57aeba !important;
    margin-left: auto;
    font-size: 0.75rem;
    border: 1px solid #a5d0d6;
    width: 100%;
    max-width: 75px;
    text-align: center;
    padding: 0.2rem;
    border-radius: 0.3rem;
    display: block !important;
} */

a.viewBTn {
    text-align: end;
    font-size: 0.75rem;
    border: 1px solid #a5d0d6;
    width: 100%;
    max-width: 75px;
    text-align: center;
    padding: 0.2rem;
    border-radius: 0.3rem;
}

.media-body a {
    color: #57aeba !important;
    margin-left: auto;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
    padding: 0.2rem;
    border-radius: 0.3rem;
    display: block !important;
}

.scroll-div {
    overflow-y: auto;
    height: 555px;
}

.client_assign_admin_noti a {
    background: #e6f5f7;
    display: flex;
    margin: 0.3rem 0rem;
    border-radius: 0.3rem;
    border: 1px solid #e1f4f7;
}

.profileprogrm {
    background: #e6f5f7;
    display: flex;
    margin: 0.3rem 0rem;
    border-radius: 0.3rem;
    border: 1px solid #e1f4f7;
}

.replybutton {
    color: #48a8b5;
    font-weight: 500;
}

.replybutton:hover {
    cursor: pointer;
    color: green;
}

.rply-plane {
    margin: 9px 13px 0px 0px;
}

.rply-plane:hover {
    color: green;
}

/* 03/01/2023*/

body.modal-open {
    padding: 0 !important;
}

.entryModal .modal-header button.btn {
    border: 0;
}

.entryModal .modal-header button.btn {
    border: 0;
    position: static;
    color: #000000;
    font-weight: 400;
    font-size: 30px;
}

.serachSection input.form-control {
    background-color: #ededed;
    border-radius: 3px;
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    padding-right: 4rem;
}

.serachSection i {
    position: absolute;
    right: 36px;
    top: 78px;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.54);
}

.enteryModalBody .form-group .form-control {
    background-color: #fbfbfb;
    border-color: #ededed;
    min-height: 33px;
}

.bgSection h4 {
    color: #1ba3b5;
    font-size: 16px;
    font-weight: 600;
}

.bgSection {
    background-color: #f9f9f9;
    padding: 1rem;
}

.bgSection ul li {
    display: flex;
    justify-content: space-between;
}

.bgSection ul li {
    display: flex;
    justify-content: space-between;
    padding: 5px 14px 5px;
    border-bottom: 1px solid #f0f0f0;
}

.snone {
    display: none;
}

.bgSection ul li span {
    font-weight: 500;
}

.bgSection ul li span:last-child() {
    font-weight: 600;
}

.nonbgSection {
    margin: 2rem 0;
}

.nonbgSection h4 {
    color: #000000de;
}

.nonbgSection ul li {
    display: flex;
    justify-content: space-between;
}

.nonbgSection ul li {
    display: flex;
    justify-content: space-between;
    padding: 5px 14px 5px;
    border-bottom: 1px solid #f0f0f0;
}

.nonbgSection ul li span {
    font-weight: 500;
}

.nonbgSection ul li span:last-child() {
    font-weight: 600;
}

.nonbgSection h4 {
    color: #000000de;
    font-size: 16px;
    font-weight: 600;
}

.footerBtn a {
    text-decoration: none;
    font-weight: 500;
}

.footerBtn button.btn {
    padding: 8px 30px;
}

.footerBtn {
    background-color: #f9f9f9;
}

.enteryModalBody form {
    max-height: 550px;
    overflow: auto;
}

.enteryModalBody form>.row {
    margin: 0;
}

.modal-content.entryModal {
    padding: 0rem;
    max-width: 666px;
    margin-top: 100px;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    background: #00000040;
}

.all_count.tooltipArrow span.notification-data::after {
    content: "";
    position: absolute;
    right: 30px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 10px solid #fff;
    border-right-color: transparent;
    border-bottom-color: transparent;
    -webkit-box-shadow: -10px -9px 23px 1px rgb(0 0 0 / 10%);
    box-shadow: -10px -9px 23px 1px rgb(0 0 0 / 10%);
    bottom: -34px;
    z-index: 9999;
}

.credit-cards {
    width: 360px;
    height: 400px;
    margin: 60px auto 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, .10);
}

.form-header {
    height: 60px;
    padding: 20px 30px 0;
    border-bottom: 1px solid #e1e8ee;
}

.form-body {
    height: 340px;
    padding: 30px 30px 20px;
}


/* Title */

.title {
    font-size: 18px;
    margin: 0;
    color: #5e6977;
}


/* Common */

.card-number,
.cvv-input input,
.month select,
.year select {
    font-size: 14px;
    font-weight: 100;
    line-height: 14px;
}

.card-number,
.month select,
.year select {
    font-size: 14px;
    font-weight: 100;
    line-height: 14px;
}

.card-number,
.cvv-details,
.cvv-input input,
.month select,
.year select {
    opacity: .7;
    color: #86939e;
}

.card-number {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 20px;
    border: 2px solid #e1e8ee;
    border-radius: 6px;
}


/* Date Field */

.month select,
.year select {
    width: 145px;
    margin-bottom: 20px;
    padding-left: 20px;
    border: 2px solid #e1e8ee;
    border-radius: 6px;
    background: url('caret.png') no-repeat;
    background-position: 85% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.month select {
    float: left;
}

.year select {
    float: right;
}


/* Card Verification Field */

.cvv-input input {
    float: left;
    width: 145px;
    padding-left: 20px;
    border: 2px solid #e1e8ee;
    border-radius: 6px;
    background: #fff;
}

.cvv-details {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    float: right;
    margin-bottom: 20px;
}

.cvv-details p {
    margin-top: 6px;
}

.edit_icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.edit_icon button {
    cursor: pointer;
    margin-left: 0.8rem;
    font-size: 1.4rem;
}

.edit_icon i {
    color: #ff5555;
}


/* Buttons Section */

.paypal-btn,
.proceed-btn {
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    border-color: transparent;
    border-radius: 6px;
}

.proceed-btn {
    margin-bottom: 10px;
    background: #7dc855;
}

.paypal-btn a,
.proceed-btn a {
    text-decoration: none;
}

.proceed-btn a {
    color: #fff;
}

.paypal-btn a {
    color: rgba(242, 242, 242, .7);
}

.paypal-btn {
    padding-right: 95px;
    background: url('paypal-logo.svg') no-repeat 65% 56% #009cde;
}

@media (max-width:1680px) {
    section.main-content-area.Main-pading-new {
        padding: 0 15px;
    }

    .water-add {
        min-width: 100%;
    }

    h4.foodtitle,
    .foodcommenttitle,
    .post-text {
        min-width: 100%;
    }

    .middle-card {
        min-width: 100%;
    }

    .post-text {
        min-width: 100%;
    }

    .summary {
        min-width: 100%;
    }

    .custom-cal {
        min-width: 100%;
    }

    .pricing-content {
        width: 88%;
    }
}

@media (min-width:1200px) and (max-width:1400px) {
    .top-nav {
        justify-content: inherit;
    }

    .round1 label:after {
        height: 7px;
        left: 28px;
        top: 13px;
        width: 14px;
    }

    .round1 label {
        height: 35px;
        width: 35px;
    }

    .tab-btn {
        padding: 0;
    }

    .tab-btn p {
        font-size: 14px;
    }

    .task-crd {
        padding: 10px;
    }

    canvas.canvasjs-chart-canvas {
        width: 100% !important;
        height: 248px !important;
    }

    .water_footer {
        bottom: 0;
        top: 74px;
        left: 0;
        padding: 11px;
    }

    .glasses p {
        font-size: 1rem;
    }
}

@media (max-width:1300px) {
    .header-bg {
        padding: 1rem 0rem;
    }
}
@media (max-width:1593px) {
table#juniorcoachesdata tbody tr td:nth-child(3) select {
    width: 100%;
}
}
@media (max-width:1280px) {

    table#juniorcoachesdata tbody tr td:nth-child(3) select {
        width: 100%;
    }

    /* table#seniorcoachesdata td.sorting_1 {
        display: flex;
    } */
    .glass_one {
        width: 100%;
        max-width: 120px;
    }
}

@media (max-width:1200px) {
    section.empower-sec {
        padding: 2rem 0 5rem;
        height: 100%;
    }

    @media (max-width:575px) {



        /* .menuBTN {
            margin-top: -44px;
        } */
        .menunoti {
            top: -3.75rem !important;
        }
    }
}

@media (max-width:1080px) {
    .menuBTN {
        display: flex !important;
        justify-content: end;
    }

    .menunoti {
        display: inline-block !important;
        position: absolute;
        top: -.75rem;
        right: 5rem;
        font-size: 1.75rem;
    }

    .notification-drop .item ul {
        margin-left: 196px;
        display: none;
        position: absolute;
        top: 100%;
        left: -190px !important;
        /* background: #fff; */
        /* left: -200px; */
        /* right: 0; */
        z-index: 1;
        /* border-bottom: 4px solid #92bcbe; */
        border: 2px solid #57aeba;
    }

    .user-text {
        margin-bottom: 0px;
        font-weight: 600;
        font-size: 10px;
        text-transform: capitalize;
    }

    .com_name {
        margin-left: -14px;
        background-color: #3d4247;
        padding: 5px;
        border-radius: 4px;
        width: 257px;
    }

    li.notfications span {
        color: #ffffff;
        font-size: 11px;
    }

    .mb-1 {
        /* margin-top: -13px; */
        margin-left: -32px !important;
        white-space: nowrap;
        width: 267px !important;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mbv {
        margin-bottom: -12px;
    }

    .custom-shadow2 {
        box-shadow: rgb(7 2 2 / 42%) 0px 2px 8px 0px;
        background: #fff;
        padding: 10px 10px;
        border-radius: 10px;
    }

    .img-fluid {
        margin-left: 75px;
        max-width: 45%;
        height: auto;
    }

    #mobile-hide img {
        margin-left: 0;
    }

    .form-logo span {
        font-size: 1.8rem;
    }

    .signup-card {
        border-radius: 20px;
        background-color: #f3f9fb;
        padding: 8px 18px;
        position: relative;
    }

    .notification-drop .item ul li {
        transition: 0.2s;
        font-size: 15px;
        /* min-height: 70px; */
        margin: 0px;
        padding: 11px;
        display: flex;
        justify-content: space-between;
        align-items: end;
        border-radius: 0px;
        font-family: 'Poppins', sans-serif;
        margin-top: 5px;
    }

    .mb-view {
        display: none !important;
    }

    .desk-view {
        display: block !important;
    }

    .prof {
        background-color: #ffffff;
        border: 1px solid #a5d0d6;
        padding-top: 20px;
        border-radius: 20px;
        border-width: 2px 2px 2px 9px;
        padding: 14px !important;
    }

    .module_name {
        border: 1px solid #e0e0e0;
        padding: 7px;
        border-radius: 7px;
        font-size: 10px;
    }

    .compltd {
        width: 160px;
        padding: 2px !important;
        color: #3794a1;
    }

    #desk-view {
        display: block !important;
    }

    .water_header {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .top-nav {
        position: fixed;
        background: hsl(0deg 0% 18%);
        height: 100vh;
        display: block;
        padding: 15px;
        width: 320px;
        left: -320px;
        top: 0px;
        transition: all 0.3s ease-in-out;
    }

    .menuBar {
        left: 0;
    }

    .glasses {
        margin-top: 250px;
    }

    .addwater-modal .w3-modal-content header .glasses {
        margin-top: 0px;
    }

    .addwater-modal .water_header .water_head .glasses {
        margin-top: 0px;
    }

    .waterin {
        font-size: 50px;
        font-weight: 600;
        border-radius: 50px;
        padding: 0px;
        margin: 0px 0px 0px 15px;
    }

    .waterin:hover {
        cursor: pointer;
    }

    .waterout {
        font-size: 50px;
        font-weight: 600;
        border-radius: 50px;
        padding: 0px;
        margin: 0px 20px 0px 0px;
    }

    .top-nav li {
        margin-bottom: 15px;
    }

    .pricing_footer span {
        font-size: 14px;
    }

    .pricing_footer {
        width: 100%;
        height: 20px;
    }

    /* .phoneNoti {
        width: 100% !important;
        margin: 0px !important;
    } */

    .phoneNoti li {
        margin: -3px 9px 11px 6px !important;
    }

    .coach_notifi li {
        padding: 10px;
        width: 93% !important;
        margin: -14px 0px 1px 5px !important;
    }

    ul.dropdown-menu.w3-dropdown-content.w3-bar-block.w3-border {
        left: -136px !important;
        top: 35px !important;
        right: initial !important;
    }

    /* =====anuj css here =====

*/

    .side-bar {
        display: unset;
    }



    .col-lg-3.anchr {
        margin-top: 20px;
    }


    .main-content {
        margin-left: 0px;
        width: calc(100vw - 0px);
    }

    .user-wrapper {

        padding-right: 0px;
    }

    .test-program {
        padding: 0px !important;
    }
}

@media (max-width:1024px) {
    table#juniorcoachesdata tbody tr td:nth-child(3) select {
        width: 100%;
    }

    .main-content.custm-sidebar {
        margin-left: 105px;
        width: calc(100% - 105px);
        transition: .3s all;
        padding: 1rem;
        height: 100%;
    }

    /* .main-content.custm-sidebar{

        width: calc(100% - 105px);
    } */

    .top-nav {
        justify-content: inherit;
    }

    .round1 label:after {
        height: 7px;
        left: 24px;
        top: 8px;
        width: 14px;
    }

    .round1 label {
        height: 25px;
        width: 25px;
    }

    .tab-btn {
        padding: 0;
    }

    .tab-btn p {
        font-size: 14px;
    }

    .task-crd {
        padding: 10px;
    }

    canvas.canvasjs-chart-canvas {
        width: 100%;
        height: 100%;
    }

    .water_footer {
        bottom: 0;
        top: 74px;
        left: 0;
        padding: 11px;
    }

    .glasses p {
        font-size: 1rem;
    }

    .inner-container {
        width: 100%;
        margin: auto;
    }

    .header-bg {
        padding: 0px 0px;
    }
}

@media(max-width: 1240px) {
    table#seniorcoachesdata tbody tr td:nth-child(2) select {
        width: 100%;
    }

    input.commission_button.btn.btn-info {
        width: 100% !important;
        margin: 0;
        margin-top: 10px;

    }
}

@media only screen and (min-width:1024px) and (max-width:1100px) {
    .custom-cal {
        padding: 0.2rem;
    }

    .ui-datepicker-calendar th {
        padding: 10px 4px 0px 4px;
        font-size: 0.55rem;
    }

    .custModal-entry .cursor #foodlogdata {
        width: 100% !important;
        max-width: calc(100% - 0%) !important;
        position: absolute;
        top: 40px;
        left: 0;
        margin: 0;
    }
}

@media (min-width: 992px) {

    /* table#seniorcoachesdata td.sorting_1 {
        display: flex;
    } */
    .pricing-nav .navbar-nav .nav-link {
        color: rgb(255 255 255) !important;
        padding: 0px 10px;
    }

    .empowered {
        width: calc(31.5% - 0.5rem);
    }

}

@media (min-width: 850px) and (max-width: 912px) {
    .empowered {
        width: calc(45.5% - 0.5rem);
    }
}

@media (width:820px) {
    .empowered {
        position: relative;
        margin: -2rem 0rem 0rem -1rem;
        height: 100%;
        background: #fff;
        width: calc(48.5% - 0.5rem);
        margin: 0rem 0.5rem 1rem 0.5rem;
        border-radius: 2rem;
        box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    }

    .custModal-entry .cursor #foodlogdata {
        width: 100% !important;
        max-width: calc(100% - 0%) !important;
        position: absolute;
        top: 40px;
        left: 0;
        margin: 0;
    }
}

@media only screen and (max-width:1080px) {
    .markcom {
        float: right;
        width: 115px;
        text-align: right;
    }

    .markview {
        float: right;
        margin-right: 20px;
        color: #3794a1;
        width: 55px;
        text-align: left;
    }

    .margin0mark {
        margin: 0px 18px 0px 0px !important;
    }

    .margin0mark a b i.bi.bi-unlock-fill {
        font-size: 16px !important;
    }

    .price_bg {
        padding: 2rem 0rem;
    }

    /*26/06/2021*/
    .backmodule-outer .module_name .markcom {
        margin-top: -10px !important;
    }

    .backmodule-outer .module_name .markview a b {
        align-items: start !important;
    }

    .margin0mark a b i.bi.bi-unlock-fill {
        margin-top: -8px;
    }
}

.recipe-modal {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.w3-modal {
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .bg-text {
        width: 90%;
    }

    .back-wrap {
        padding: 20px !important;
        margin-bottom: 50px;
    }

    .modal-popup-header {
        padding: 5px 10px !important;
    }

    .w3-modal .w3-modal-content {
        min-width: calc(100% - 40px);
    }

    /* table#seniorcoachesdata tbody tr td:nth-child(2) {
        display: flex;
    } */
    /* .w3-modal {
        margin-top: 20% !important;
        display: block;
    } */
    .mobileViewHeaderModal.mt-0 {
        margin-top: 0 !important;
    }

    .empowered {
        position: relative;
        width: 100%;
        margin: -2rem 0rem 0rem -1rem;
        height: 100%;
        background: #fff;
        margin: 0rem 0.5rem 1rem 0.5rem;
        border-radius: 2rem;
        box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    }

    .food-info-container {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .food-info-container p {
        font-size: 13px;
    }

    .sort-styl {
        font-size: 10px;
    }

    .glass img {
        width: 100%;
        margin: 0;
    }

    .pricing-content {
        margin: 0 auto 3rem auto;
        width: 68%;
        display: flex;
        position: relative;
        flex-wrap: wrap;
    }

    section.main-content-area {
        padding: 15px;
    }

    .water-add {
        min-width: 100%;
    }

    h4.foodtitle,
    .foodcommenttitle,
    .post-text {
        min-width: 100%;
    }

    .middle-card {
        min-width: 100%;
    }

    .post-text {
        min-width: 100%;
    }

    .summary {
        min-width: 100%;
    }

    .middle-card button {
        margin: 0;
        font-size: 13px;
    }

    .middle-card .btn-toolbar {
        flex-wrap: nowrap;
        margin-left: 15px;
    }

    button.Buttom-submit-price {
        margin: 15px 0px 0px !important;
    }

    .pricing_footer {
        width: 100%;
        height: 20px;
        text-align: center;
        padding: 20px 0;
    }

    /* .mobileViewHeaderModal {
        margin-top: 15px !important;
    } */

    .mobileViewHeaderModal h3 {
        font-size: 18px;
    }

    .feild-height {
        min-height: 40px;
    }

    .w3-display-topright {
        top: 3px !important;
    }

    .markcom {
        float: right;
        width: 105px;
        text-align: right;
    }

    .markview {
        float: right;
        margin-right: 20px;
        color: #3794a1;
        width: 55px;
        text-align: left;
    }

    .margin0mark {
        margin: 0px 18px 0px 0px !important;
    }

    .girl-fit {
        display: none;
    }

    /*26/06/2024*/
    .backmodule-outer .module_name .markcom {
        width: 115px;
    }

    /* 18 FEB */

    .custModal-entry .cursor #foodlogdata {
        width: 100% !important;
        max-width: calc(100% - 0%) !important;
        position: absolute;
        top: 40px;
        left: 0;
        margin: 0;
    }

}


@media(max-width:991px) {
    .add-page {
        margin-top: 10px;
        width: 100%;
    }

    ul.top-nav.menuBar .mobNoti {
        display: none;
    }

    ul.top-nav.menuBar li.mob-chat {
        display: none;
    }

    .w50 {
        width: 50%;
    }

    .head-option {
        position: relative;
    }

    .mob-chat {
        position: fixed;
        top: 78px;
        left: 30%;
        width: 130px !important;
    }

    .menuBTN {
        display: flex !important;
        justify-content: end;
        align-items: flex-start;
    }

    .header-bg {
        height: 125px;
        align-items: self-start;
        padding-top: 1rem;
    }

    .pricing-content {
        width: 90%;
    }

    /* .menuBar li:nth-child(4) {
        display: none !important;
    }
    .menuBar .phoneNoti {
        display: none;
    } */
    /* .top-nav {
        position: static;
        display: flex;
        height: 65px;
        padding: 0px;
        width: 100%;
    } */
    .menuBar {
        left: 0;
        width: 320px;
        position: fixed !important;
        height: 100vh !important;
        display: block !important;
        padding: 15px !important;
        z-index: 99;
    }


    /* 08/06/2023  start*/
    span.close-side {
        position: absolute;
        right: 15px;
        top: 10px;
        color: white;
        font-size: 20px;
    }

    @media screen and (max-width:576px) {
        .profile {
            display: block;
        }

        .moduleContainer .previewBlock img {
            width: 100%;
        }

        .moduleContainer .view,
        .moduleContainer .addentry {
            width: 100%;
            margin-top: 5px;
        }

        .toDo-ans .w3-modal-content {
            overflow: hidden;
            margin-top: 5rem;
        }

        .toDo-ans .resp-main-content {
            height: 365px;
            overflow-y: auto;
        }

        .id01-modal .w3-modal-content {
            margin-top: 6rem;
        }

        .id04-modal .w3-modal-content {
            margin-top: 6rem;
        }

        .custFoot {
            justify-content: center;
        }

        .custFoot button {
            padding: 8px 22px !important;
        }

        .custModal-entry .data_section .resp-main-content {
            height: 330px;
        }

        .custModal-entry .modal-content {
            margin-top: 8.5rem !important;
        }

        .receipeSave .addfood-input {
            position: relative;
        }

        .receipeSave .addfood-input i {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            padding: 0;
        }

        .receipeSave .addfood-input #foodlogdatarecipe1 {
            width: 100%;
            max-width: calc(100% - 1%);
            margin: 0;
            position: absolute;
            top: 36px;
            left: 0;
        }

        .custModal-entry .cursor #foodlogdata {
            width: 100% !important;
            max-width: calc(100% - 0%) !important;
            position: absolute;
            top: 40px;
            left: 0;
            margin: 0;
        }

        /* add  new css 15th sep 2025 */
         form.model-popup-design-all{
            max-height: 300px;
            overflow-y: auto;
            overflow-x: hidden;
        }
        .enteryModalBody .recipe-search input.form-control {
                width: calc(100% - 32px);
                margin: 16px auto;
        }
       div#mylf-recipes-data.search-design-display{
            max-height: 300px !important;
        }
        div#my-recipes-data.search-design-display1{
            max-height: 254px !important;
        }


    }

    .zoom-btn {
        display: none;
    }

    /* @media (max-width: 576px){
    li.bg-primary.show-tab {
        display: none;
    }
    } */
    @media (max-width: 576px) {
        .show-tab {
            display: block;
            position: fixed;
            top: 10px;
            right: 70px;
            width: 150px;
        }

        .workout-search {
            width: 150px !Important;
        }

    }

    /* @media screen and (min-width:577px){
        .close-pc {
            display: none;
        }        
    } */

    /* 08/06/2023 end */
    /* 09/06/2023 start */
    @media (max-width: 576px) {
        ul.top-nav.menuBar .show-tab {
            display: none;
        }

        .mob-chat {
            position: fixed;
            top: 78px;
            left: 110px;
            width: fit-content !important;
        }

        .top-nav li {
            margin: 0 0.4rem;
            padding: 0.8rem 1rem;
        }

        .notification-drop .item {
            padding: 0px !important;
        }

        .mobNoti {
            right: 3px !important;
            width: 148px !important;
        }

        .show-tab {
            top: 78px;
            /* right: 124px;*/
            width: 120px !important;
            left: 50%;
            transform: translate(-53%);
        }

        .notification-drop .item {
            font-size: 12px !important;
        }
    }

    .table-wrap {
        overflow-x: scroll;
    }

    @media (max-width: 991px) {
        .side-menu li a.active {
            width: 100%;
        }

       
    }

    .side-bar.custm-menu ul li span:last-child {
        display: unset;
    }


    /* 09/06/2023 end */



    /* .mobviewHide {
        display: none!important;
    } */
    .menuBar .mobviewHide {
        display: block !important;
    }

    /* .top-nav li:nth-child(4){
        display: flex;
        align-items: center;
        max-width: 100px;
        padding: 8px;
        position: relative;
    } */
    /* .top-nav li:nth-child(1),
    .top-nav li:nth-child(2) {
        display: none;
    }
    .menuBar li:nth-child(1),
    .top-nav li:nth-child(2) {
        display: block;
    } */

    .menuBar li {
        display: flex;
        align-items: center;
    }

    .top-nav li a span {
        font-size: 12px;
    }

    .menuBar li a span {
        font-size: 12px;
    }

    .mobNoti {
        display: block;
        position: fixed;
        top: 81px;
        right: 10px;
        width: 150px;
    }

    /* .top-nav li i {
        font-size: 12px !important;
    } */
    .menuBar li i {
        font-size: 18px !important;
    }

    .mbBadge {
        font-size: 12px;
        margin: 0;
        position: relative;
        /*top: -10px; */
        font-size: 10px !important;
    }

    .mobNoti .notification-drop .item {
        padding: 6px;
    }

    .chatBadge {
        /* position: absolute; */
        top: 5px;
        font-size: 12px !important;
        font-weight: 400;
        right: 23px;
    }

    .drkBdge {
        position: absolute;
        top: 5px;
        font-size: 12px !important;
        font-weight: 400;
        right: 4px;
    }

    .mbFlx {
        display: flex !important;
    }

    /* .top-nav li {
        margin-bottom: 1px;
    } */
    .phoneNoti li {
        margin: -3px 9px 0 6px !important;
    }

    .menuBar li {
        margin-bottom: 15px;
    }

    .show-notification {
        width: 366px;
    }

    .top-nav {
        position: fixed;
        background: hsl(0deg 0% 18%);
        height: 100vh;
        display: block;
        padding: 15px;
        width: 320px;
        left: -320px;
        top: 0px;
        transition: all 0.3s ease-in-out;
    }

    .menuBar {
        left: 0;
    }


}


@media (max-width:280px) {
    .header_logo span {
        font-size: 1.6rem;
    }

    .banner-strip {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #8b8b8be0;
        padding: 0.4rem 0;
        text-align: center;
    }

    div#calendar {
        display: block;
        overflow: scroll;
    }

    .menunoti {
        right: 3.5rem !important;
        top: -3.2rem !important;
    }

    .menuBTN {
        margin-top: -37px !important;
    }

    .top-nav li {
        width: 218px;
        height: 30px;
    }

    .top-nav {
        width: 260px !important;
    }

    .foodtitle {
        font-size: 16px;
        letter-spacing: 7px;
    }

    .banner-head {
        left: 0;
        text-align: center;
        width: 100%;
    }

    .dates {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.foodlock {
    height: 661px;
    overflow: scroll;
    overflow-x: hidden;
}

@media (min-width:992px) and (max-width:1366px) {
    .foodlock {
        height: 380px;
        overflow: scroll;
        overflow-x: hidden;
    }

    .modal-content.entryModal {
        margin-top: 80px;
    }
}

@media (min-width:1367px) and (max-width:1750px) {
    .foodlock {
        height: 500px;
        overflow: scroll;
        overflow-x: hidden;
    }

    .modal-content.entryModal {
        margin-top: 80px;
    }
}

@media(max-width:768px) {
    table#juniorcoachesdata tbody tr td:nth-child(3) select {
        width: 100%;
    }

    .add-page {
        margin-top: 10px;
        width: 100%;
    }

    .add-btn-sec {
        width: 100%;
        margin-top: 10px;
    }

    #upload-button {
        width: 100%;
    }

    .canvasjs-chart-container {
        position: unset;
    }

    .phoneNoti li {
        width: fit-content !important;
        margin: -3px 9px 11px 6px !important;
    }

    .notification-drop .item ul {
        margin-left: 0;
        left: unset !important;

    }
}

@media (min-width:768px) and (max-width:992px) {

    .bg-text {
        width: 60%;
    }

    input.commission_button.btn.btn-info {
        width: 100%;
        margin-top: 15px;
    }

    .add-btn-sec {
        width: 100%;
        margin-top: 10px;
    }

    select.btn.btn-info.coach_commission7,
    select.btn.btn-info.coach_commission2 {
        width: 78%;
    }

    .w3-modal-content.w3-animate-zoom.w3-card-4 {
        width: 70% !important;
    }

    .phoneNoti li {
        width: fit-content !important;
        margin: -3px 9px 11px 6px !important;
    }
}



.user-wrapper.usereGain {
    background: unset !important;
}

h5.notification-user span {
    margin-left: 0 !important;
}

p.rplying {
    text-align: left;
}

p.rplying span {
    margin-left: 0 !important;
}

.Ifrmae-area {
    width: 35%;
}

span.close-side {
    display: none;
}

@media(min-width:768px) and (max-width:820px) {
    .card-height {
        height: auto;
        overflow: scroll;
    }

    .Ifrmae-area {
        width: 100% !important;
    }

    span.close-side {
        display: block;
    }

    .id01-modal .resp-main-content {
        max-height: calc(100vh - 48vh);
        overflow-y: auto;
    }
}

@media (max-width:767px) {
    .Ifrmae-area {
        width: 100% !important;
    }

    span.close-side {
        display: block;
    }

    .card-height {
        height: 580px;
        overflow: scroll;
    }

    button.form-control {
        width: 100% !important;
    }

    .header-notification-hide,
    body.dashboard-bg.modal-open li.mob-chat,
    body.dashboard-bg.modal-open .mobNoti {
        opacity: 0;
    }

    textarea.form-control.flentry {
        padding-right: 0rem;
        margin-bottom: 2rem;
    }

    .post-text .pointer2 {
        cursor: pointer;
        display: block;
        margin-top: 0.5rem;
        position: relative;
        left: 0;

    }

    .post-text .pointerr {
        display: block;
        cursor: pointer;
        position: relative;
        left: 0;

    }

    .CstmRecordVideoBtn-Wrapper {
        margin-top: 120px;
    }


    /*14/07/2025 css start here */
    /* .chat-frame .chat-frame-inner {
        position: unset;
        width: 100%;
        height: calc(100vh - 165px);
    } */
    /*14/07/2025 css end here */


}

/* 21/7 */
.banner {
    position: sticky;
    top: 80px;
    z-index: 999;
}

.banner .banner-head {
    top: 0;
}

.log_bdr {
    font-size: 2rem !important;
    top: -2rem;
    color: #7ab8c1 !important;
}

.full-none .ux-first-sec {
    margin-top: 6.8rem;
}

.banner .banner-strip {
    background: #666666c4;
}

.ux-first-sec .log_bdr:after {
    margin: 9px 0px 0px 0px;
}

.banner-strip .day-btn {
    border: none;
}

.day-btn {
    background-color: #2e2e2e;
    color: #fff;
    padding: 6px 20px;
    border: none;
    border-radius: 30px;
    width: 175px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.previous-btn i {
    margin-right: 10px;
    margin-bottom: 5px;
}

.next-btn i {
    margin-left: 10px;
    margin-bottom: 5px;
}

/* Styles for the Previous day button */
.day-btn.previous-btn {
    margin-right: 15px;
}

/* Styles for the Next day button */
.day-btn.next-btn {
    margin-left: 15px;
}

/* Hover effect */
.day-btn:hover {
    background-color: #699399;
    border: 1px solid white !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Active (clicked) state */
.day-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

@media screen and (max-width:576px) {
    .day-btn {
        width: 155px;
        height: 30px;
        font-size: 14px;
        white-space: nowrap;
    }



    .banner {
        top: 125px;
    }

    .banner-strip {
        padding: 0.4rem 0rem;
        height: 80px;
    }

    .previous-btn {
        position: absolute;
        left: 40px;
        top: 35px;
    }

    .next-btn {
        position: absolute;
        right: 10px;
        top: 35px;
    }

    .ux-log-food {
        margin-top: 50px;
    }

    .ux-date-sec {
        justify-content: center;
        position: absolute;
        top: 0;
    }

    .ux-calender {
        display: none;
    }
}

@media (min-width:576px) and (max-width:991px) {
    .mobNoti {
        width: 220px !important;
    }
}

/* 25/7 */
/* .ux-login-img{
    background-image: url('/assets/images/login_image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
} */
.login-img-wrap {
    padding: 0;
}
.ux-form-wrap {
    width: 100%;
    /* height: 764px; */
    height:auto; /* for height in big screens(31/07/25)*/
    border-radius: 0px;
    background-color: #a5d0d6;
    padding: 25px 80px;
}

.login-logo {
    /* width: 60%; */
    margin: 50px auto 20px;
}

.ux-sign-up-head h1 {
    color: #243249;
}

.ux-sign-up-head p {
    font-weight: 500;
    font-size: 18px;
    color: #374a5e;
}

.ux-label span {
    color: #374a5e;
    font-weight: 600;
    font-size: 20px;
}

.store-button .ux-submit-btn {
    background: #3e6d74 !important;
    border-radius: 25px;
    width: 200px;
    border: none;
    height: 48px;
    font-size: 20px;
    color: #fff;
}

.ux-store {
    display: flex;
    justify-content: center;
}

.mt-6 {
    margin-top: 60px;
}

.forgot-link {
    font-weight: 500;
    font-size: 14px;
    color: #374a5e;
}

.ux-reg {
    color: #374a5e;
}

.chart-btn {
    position: absolute;
    left: 220px;
    top: 39px;
}

.chart-btn-coach-side {
    left: 220px;
}

.ux-bg-gray {
    background: #707070;
}



@media (min-width:530px) and (max-width:576px) {
    .mt-6 {
        margin-top: 40px;
    }

}

@media (min-width:576px) and (max-width:991px) {
    .ux-contain-custom {
        padding: 15px 32px;
    }
    .ux-form-wrap {
        padding: 8px 18px;
    }

    .link-text {
        position: absolute;
        bottom: 20px;
        right: 5%;
    }

    .img-fluid {
        margin-left: 0px;
        max-width: 100%;
    }
}

@media (min-width:991px) and (max-width:1200px) {

    .ux-contain-custom {
        padding: 15px 32px;
    }

    .ux-form-wrap {
        padding: 8px 18px;
    }
}

.sespond-btn {
    position: relative;
}

.chooseprogram-modal .w3-modal-content footer.w3-container.w3-teal {
    background-color: #6aa8b1 !important;
    border-bottom-left-radius: 25px;
    /* margin-top: 10px; */
    border-bottom-right-radius: 25px;
}

.logout-button {
    border: none;
    padding: 5px 0;
}


/* -----------------Captcha Css start ------------ */

#image {
    margin-top: 0%;
    box-shadow: 5px 5px 5px 5px gray;
    width: 100px;
    padding-block: 15px;
    padding-inline: 16px;
    font-weight: 400;
    /* padding-bottom: 0px; */
    height: 24%;
    user-select: none;
    text-decoration: line-through;
    font-style: italic;
    font-size: x-large;
    /* border: red 2px solid; */
    /* margin-left: 15px; */

}

.inline {
    display: inline-block;
}

#user-input {
    /* margin-left: 1rem; */
    box-shadow: 5px 5px 5px 5px gray;
    width: auto;
    /* margin-right: 18px; */
    /* padding-block: 26px; */
    padding-block: 15px;
    padding-inline: 10px;
    /* padding-bottom: 10px; */
    height: 19%;
    border: red 0px solid;
}

input {
    border: 1px black solid;
}

/* adding cursor pointer to the copy icon in the table */

.copy-pointer {
    cursor: pointer;
}

/* 13-09-2023 */
div#user-input input#submit {
    height: 35px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border: none;
    padding-left: 8px;
    border-radius: 8px;
}

/* .mylf-services { */
/* margin-bottom: 80px; */
/* } */

/* 19/10/2023 */

.fooddata1 {
    height: 400px;
    width: 100%;
    border: 1px solid #b9b2b2;
    overflow: scroll;
    overflow-x: hidden;
    z-index: 9999;
    position: fixed;
    background-color: white;
    padding: 10px;
    margin: -16px 0px 0px 10px;
}

.custom_bsc {
    position: relative;
    margin-top: 10px;
}

.pencil-icon {
    position: absolute;
    right: 0;
    top: 0;
}

#my-recipes-data hr {
    margin: 0;
}

#favorite-recipes-data hr {
    margin: 0;
}

#mylf-recipes-data hr {
    margin: 0;
}

.scroll-box {
    max-height: 230px;
    overflow-y: auto;
    overflow-x: hidden;
}

.control-check {
    margin: 0px 10px;
}

#myTabContent {
    overflow-y: auto !important;
}

/* dev add css 18/12/2023 */
#bar-code-scan-div {
    justify-content: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    box-sizing: border-box;
    text-align: center;
}

#bar-code-scan-div {
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
}

#bar-code-scan-div h1 {
    color: #ffffff;
}

.section123 {
    background-color: #ffffff;
    /* padding: 50px 30px; */
    /* border: 1.5px solid #b2b2b2; */
    border-radius: 0.25em;
    /* box-shadow: 0 20px 25px rgba(0, 0, 0, 0.25); */
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem;
    padding-top: 0;
}
/* 24-09-2025 */
.qr-code-reader-width{
    width: 90%;

}
.scandit.scandit-container{
    max-height: 220px;
}

#my-qr-reader {
    /* padding: 20px !important; */
    padding: 4px !important;
    border: 1.5px solid #b2b2b2 !important;
    border-radius: 8px;
}

#my-qr-reader img[alt="Info icon"] {
    display: none;
}

#my-qr-reader img[alt="Camera based scan"] {
    width: 100px !important;
    height: 100px !important;
}

#html5-qrcode-button-camera-stop {
    padding: 10px 20px;
    border: 1px solid #b2b2b2;
    outline: none;
    border-radius: 0.25em;
    color: white;
    font-size: 15px;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 10px;
    background-color: #008000ad;
    transition: 0.3s background-color;
}

#html5-qrcode-button-camera-start {
    padding: 10px 20px;
    border: 1px solid #b2b2b2;
    outline: none;
    border-radius: 0.25em;
    color: white;
    font-size: 15px;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 10px;
    background-color: #008000ad;
    transition: 0.3s background-color;
}

#html5-qrcode-button-camera-stop:hover {
    background-color: #008000;
}

#html5-qrcode-anchor-scan-type-change {
    text-decoration: none !important;
    color: #1d9bf0;
}

video {
    width: 100% !important;
    border: 1px solid #b2b2b2 !important;
    border-radius: 0.25em;
}

/* 28 Dec CSS */
.cstm-recipes_blade_pg {
    padding-bottom: 70px;
}

img.desk_img-login {
    display: block;
}

img.mobile_img-login {
    display: none;
    width: 100%;/* 31/07/2025*/
}

span#upload_name-img {
    display: none;
}

#three-tabs-for-nutrients.cstm-tabsmng li.nav-item {
    margin: 0;
}

#three-tabs-for-nutrients.cstm-tabsmng {
    gap: 4px;
}

#three-tabs-for-nutrients.cstm-tabsmng li.nav-item button.nav-link {
    min-width: 120px;
    line-height: unset !important;
}

.banner-cstm-changes {
    position: static;
    top: unset;
}

.banner-cstm-changes .banner-strip {
    position: static;
}

@media(max-width:991px) {
    body:has(.signupbody) header.header-bg {
        height: unset !important;
    }

    .side-bar {
        display: none;
    }

    span.close-side {
        display: unset;
    }

    .main-content.custm-sidebar {
        width: 100%;
        margin-left: 0;
    }

    .custm-menu {
        /* left: 320px; */
        left: 0;
    }

    .side-bar {
        z-index: 1;
    }

    /* .menuBar {
        left: -320px;
    } */

}

@media(max-width:767px) {
    .pricing_footer{
        position: unset;
    }
    span#upload_name-img {
        display: block;
    }

    input#upload_profile_pic {
        display: none;
    }

    /* img.desk_img-login {
        display: none;
    } */

    label.upload_mobile_pic {
        display: block;
        border: 1px solid black;
        border-radius: 3px;
        padding: 2px 6px;
    }

    .log-img img.mobile_img-login {
        width: 100%;
        height: unset;
        object-position: unset;
        display: block;
    }

    .signup {
        width: calc(100% - 40px);
    }

    .minus-resp-paddings {
        margin-left: -15px;
        margin-right: -15px;
    }

    .resp-overflow-x {
        overflow-x: auto;
        padding-top: 20px !important;
    }

    .cstm-respo-changes-login .mt-6 {
        margin-top: 40px !important;
    }

    .mobile_mng-resp-pdng {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .cstm-navtab-mobile-foodlog li.nav-item button {
        width: 170px !important;
    }

    .cstm-navtab-mobile-foodlog {
        gap: 6px;
        padding: 0 13px;
    }

    .resp-margin-cstm-mdl {
        margin-top: auto !important;
    }
}


/* 06 Jan 2024 */

.cstm-card-mobile-mng .card.back-wrap.bac {
    padding: 0;
}

.cstm-card-mobile-mng .card.back-wrap.bac .container.profil {
    /* padding: 40px 18px; */
    padding: 40px 18px 75px 18px;
}

.bac.cstm-card-mobile-mng {
    padding: 0;
}

.cstm-calender-mobilemng #calendar {
    display: none;
}

body:has(.cstm-calender-mobilemng) .banner-strip,
body:has(.cstm-calender-mobilemng) .banner-head {
    display: none;
}

body:has(.cstm-calender-mobilemng) section.main-content-area.Main-pading-new {
    margin-top: 20px;
}

.modal-content.entryModal.resp-margin-cstm-mdl div#button_add_my_recipe input#add-my-recipe {
    margin-left: auto !important;
    margin-right: 16px;
}

body.dashboard-bg.modal-open .join_zoom-btnheader {
    opacity: 0;
}

form#manual-save-food {
    max-height: 450px;
    overflow-y: auto;
}

body:has(.foodlog-cstm-btn-mobile) .banner-strip {
    display: none;
}

.foodlog-cstm-btn-mobile {
    margin-top: 30px !important;

}

@media(max-height:700px) {

    div#myTabContent div#mylf-recipes-data,
    div#myTabContent div#my-recipes-data {
        max-height: 170px;
    }

    form#manual-save-food {
        max-height: 320px;
    }
}

/*15/02/2024*/
.addfood-input input {
    position: relative;
}

.addfood-input i {
    position: absolute;
    right: 22px;
    top: 6px;
}

div#button_add_my_recipe {
    padding: 0px 10px;
    display: flex;
    justify-content: end;
}

.attachment-btn {
    display: none;
    background-color: none;
    border: none;
}

@media(max-width:425px) {
    div.dataTables_wrapper div.dataTables_filter input {
        margin-left: .5em;
        display: inline-block;
        width: auto;
        max-width: 130px;
    }
    
    
    .workout-search {
        width: 130px !Important;
    }

    .profil {
        padding: 15px;
    }

    .prof .tab button {
        font-size: 15px;
    }

    .resp-main-content {
        height: 375px;
        overflow-y: auto;
    }


    div#seniorcoachesdata_filter label input,
    div#juniorcoachesdata_filter label input,
    div#customersdata_filter label input,
    div#past_coache_commision_filter label input,
    div#datatable_2_filter label input,
    div#example_filter label input {
        width: 185px;
    }


    .attachment-btn {
        display: block;
        background: none;
        border: none;
    }

    .Cstmgroup-participants {
        background: #fff;
        z-index: 99999;
        position: absolute;
    }

}

@media(max-width:767px) {


    div[data-name="settings"] {
        z-index: 9999;
    }
}


/* 05/06/2024 */

#mobile-hide {
    width: 100%;
    display: flex;
    justify-content: center;
}

#mobile-hide img {
    max-width: 100%;
    height: 620px;
}

/*07/06/2024*/

.addwater-modal .w3-modal-content header {
    background-color: transparent !important;
}

.addwater-modal .w3-modal-content header {
    color: #57aeba !important;
    display: flex;
    justify-content: space-between;
}

.addwater-modal .w3-modal-content header::before {
    content: unset;
}

.addwater-modal .w3-modal-content header::after {
    content: unset;
}

.addwater-modal .w3-modal-content header .glasses {
    display: flex;
    align-items: center;
}

.addwater-modal .w3-modal-content header .glasses p .waternum {
    font-size: 24px;
}

.addwater-modal .w3-modal-content header .glasses h3 {
    font-size: 22px;
    margin-right: 20px;
    margin-bottom: 0px;
}

.addwater-modal .w3-modal-content header .w3-display-topright {
    right: -8px !important;
    top: -8px !important;
    background: #57aeba;
    width: 30px;
    height: 30px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50%;
    color: #fff;
}

.addwater-modal .w3-modal-content header .w3-display-topright:hover {
    background: #57aeba !important;
    color: #fff !important;
}

.addwater-modal .w3-modal-content header button {
    background-color: #57aeba;
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 24px;
    font-weight: 400;
}

.radiocounter .waterout {
    position: unset;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.3);
    color: #57aeba;
    background-color: #fff;
    width: 45px;
    height: 45px;
}

.radiocounter .waterin {
    position: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57aeba;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    width: 45px;
    height: 45px;
}

.radiocounter {
    display: flex;
    justify-content: center;
}

.radiocounter .water-lable {
    font-size: 18px;

}

.addwater-modal .w3-modal-content .w3-container .glass .glas {
    display: inline-flex;
    margin: 30px auto;
    height: 10px;
    width: 100%;
    position: relative;
    border: 1px solid #57aeba !important;
    border-radius: 12px;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.3);
}

.addwater-modal .w3-modal-content .w3-container .glass .glas .water {
    border-radius: 12px;
    background-color: #57aeba;
}

.addwater-modal .w3-modal-content {
    border: 1px solid #57aeba;
}

/*10/06/2024*/
.addwater-modal .water_header .water_head {
    display: flex;
    align-items: center;
}

.addwater-modal .water_header .water_head .glasses {
    display: flex;
    align-items: baseline;
}

.addwater-modal .water_header .water_head .glasses p .waternum {
    font-size: 20px;
}

.addwater-modal .water_header .water_head .glasses p {
    font-size: 14px;
}

.addwater-modal .water_header .water_head h2 {
    margin-bottom: 0px;
    margin-right: 10px;
}

.addwater-modal .water_header .water_head .glasses .glasses_span {
    margin-left: 6px;
}

.addwater-modal .water_header .water_head h2 {
    font-size: 20px;
}

.addwater-modal .glass .glas {
    display: inline-flex;
    margin: 30px auto;
    height: 10px;
    width: 100%;
    position: relative;
    border: 1px solid #57aeba !important;
    border-radius: 12px;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.3);
}

.addwater-modal .glass .glas .water {
    border-radius: 12px;
    background-color: #57aeba;
}

/*11/06/2024*/
.wateradd1 {
    height: auto;
}

.waterintake .modal-header {
    flex-direction: column;
}

.waterintake {
    border-radius: 14px;
    border: none;
}

.waterintake form .modal-body .watercount {
    width: 100%;
    height: 50px;
    border: 1px solid #393939;
    background-color: #f9f9f9;
}

.waterintake .modal-footer {
    justify-content: space-between;
}

.waterintake-outer {
    padding: 0px !important;
}

.test-program {
    background-color: #f6fafb;
}

.test-program .inner-container .task-card-inner {
    background-color: #fff;
    padding: 0.5rem;
}

.task-crd-outer {
    background-color: #fff;
    box-shadow: 0px 1px 6px rgb(87 174 186);
    border-radius: 34px;
}

.task-crd-outer .servicee {
    padding-top: 15px;
    margin-bottom: 0px;
}

.test-program .inner-container .task-card-inner .tab-btn {
    border: 1px solid #d9d9d9;
}

.custom-heading {
    color: #6aa8b1;
    font-weight: 600 !important;
    margin: 0rem !important;
}

.notification-icon {
    margin-left: 10px;
}

.custom-heading::after {
    content: none !important;
}

.program-head {
    text-align: center;
    margin-bottom: 50px;
}



.chooseprogram-modal .recipe-modal .w3-modal-content header,
.chooseprogram-modal .w3-modal-content header {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6aa8b1 !important;
}

.chooseprogram-modal .w3-modal-content header::before {
    content: none;
}

.chooseprogram-modal .w3-modal-content header::after {
    content: none;
}

.chooseprogram-modal .w3-modal-content header h3 {
    font-size: 16px;
    margin: 0px;
}

.chooseprogram-modal .w3-modal-content header .w3-display-topright {
    position: unset;
}

.chooseprogram-modal .w3-modal-content header .w3-display-topright:hover {
    background-color: transparent !important;
}

.chooseprogram-modal .w3-modal-content form footer {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6aa8b1 !important;
}

.chooseprogram-modal .w3-modal-content form footer .chnage_prog_btn {
    background: #ffffff;
    color: #57aeba;
    padding: 10px 40px;
    border-radius: 30px;
    border: unset;
}

.chooseprogram-modal .w3-modal-content center h5 {
    color: #6aa8b1;
    font-weight: 400;
}

.chooseprogram-modal .w3-modal-content center a:hover {
    text-decoration: none;
}

.chooseprogram-modal .w3-modal-content form footer center {
    padding: 7px 0px;
}

.chooseprogram-modal .w3-modal-content form .w3-container select {
    font-size: 16px;
    padding: 8px 10px;
    height: unset;
}

.chart-tab ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-tab ul li button {
    min-width: 110px !important;
}

/*13/06/2024*/
.mobNoti {
    width: 202px;
}

/* .chat-btn{
    position: relative;
}
.chat-btn .chatBadge{
    position: absolute;
    top: 0px;
    right: 10px;
    padding: 8px;
    background-color: #ff5d5d;
    font-size: 14px;
    font-weight: 400
} */

.foodtitle-cstm {
    text-transform: uppercase;
    border-width: 2px 8px 2px 8px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.middle-custm {
    box-shadow: 0px 1px 4px rgb(87 174 186);
    border-color: none;
    border-style: none;
    border-width: none;
}

.card-footer1 .edit {
    background-color: transparent;
}

.card-footer1 .edit a {
    padding: 7px;
    background-color: #56959d;
    border-radius: 6px;
    line-height: 0px;
}

.card-footer1 .edit a i {
    color: #fff;
    font-size: 18px;
}

.middle-custm .card_header .card_head h2 {
    font-size: 16px;
    font-weight: 600;
}

.card-footer1 .info-section p {
    color: #878b8b;
    font-size: 16px;
    font-weight: 500;
}

.card-footer1 .info-section span {
    font-size: 16px;
}

.addentry-outer li button {
    background-color: #fff;
    padding: 10px 20px !important;
    font-size: 16px;
    border: unset !important;
    color: #6aa8b1;
}

.addentry-outer li button.active {
    background-color: #6aa8b1 !important;
    color: #fff !important;
}

.addentry-outer li.nav-item {
    margin-bottom: unset !important;
}

.addentry-outer {
    margin: 0px 12px;
    justify-content: space-between;
}

/*19/06/2024*/
.recipes-list .api_field {
    color: #6aa8b1;
    text-decoration: underline;
    padding: 5px 0px 12px 20px !important;
}

.recipe-search input {
    background-color: transparent;
}

.manual-entry-outer .manual_data_section .modal-body .enteryModalBody label {
    font-weight: 600;
}

.manual-entry-outer .manual_data_section .modal-body .enteryModalBody input {
    background-color: transparent;
    border: 1px solid #d9d9d9;
}

.manual-entry-outer .manual_data_section .modal-body .enteryModalBody select {
    background-color: transparent;
    border: 1px solid #d9d9d9;
}

.manualentry-footer {
    justify-content: space-between;
}

.manualentry-footer .text-dark {
    color: #000 !important;
    font-weight: 600;
}

.manualentry-footer .b-show2 {
    padding: 12px 25px;
}

.NutrientBreakdown-modal .modal-dialog .modal-content .modal-header {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6aa8b1 !important;
}

.NutrientBreakdown-modal .modal-dialog .modal-content .modal-header button {
    opacity: 1;
    color: #fff;
}

.NutrientBreakdown-modal .modal-dialog .modal-content {
    border-radius: 26px;
}

.NutrientBreakdown-modal .modal-dialog .modal-content .modal-body {
    overflow: auto;
}

.dailysummary-outer i {
    font-size: 30px;
    color: #449ba7;
    line-height: 0px;
}

.food-calculator-main {
    margin-top: 6rem !important;
}

.backmodule-outer {
    box-shadow: 0px 1px 4px rgb(87 174 186);
    border-color: none;
    border-style: none;
    border-width: none;
    padding: 15px;
    height: calc(100vh - 230px);
    overflow: auto;
}

.backmodule-outer::-webkit-scrollbar {
    display: none;
}

.backmodule-outer a button {
    background-color: #6aa8b1;
    padding: 10px;
    color: #fff;
    height: unset;
    border: none;
}

.backmodule-outer .section-st {
    background-color: transparent !important;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
    color: #6aa8b1;
    border-radius: 6px 6px 0px 0px !important;
    border-bottom: 1px solid #6aa8b1;
}

.backmodule-outer .module_name {
    padding: 10px;
    font-weight: 500;
}

.backmodule-outer .module_name b {
    font-weight: 500;
}

.backmodule-outer .module_name .markview a b {
    display: flex;
    align-items: end;
}

.backmodule-outer .module_name .markcom input {
    background-color: transparent;
    font-weight: 500;
    color: gray;
}

.backmodule-outer .module_name .markcom i {
    color: gray;
    font-size: 20px;
}

.backmodule-outer .module_name .markcom {
    margin-top: -5px;
}

.markcom-cutom {
    color: #177400 !important;
}

.back-module-card {
    padding: 30px 0px !important;
    height: calc(100vh - 140px);
}

.backmodule-outer .module_name .markview {
    margin-top: 0px;
}



/* 03/07/2024-------------------------------------- */
#juniorcoachesdata tbody tr td .profile,
table#seniorcoachesdata tbody tr td .profile {
    border-bottom: none;
}

.prof .tab {
    display: flex;
}


.side-menu {
    height: calc(100vh - 150px);
    overflow-y: auto;
}

.new-customer-table {
    width: 100%;
    overflow-x: auto;
}

.back-wrap {
    padding: 50px;
}
div .back-wrap20{
    padding: 20px;
    grid-gap: 0rem;
}
.modal-popup-header {
    padding: 15px;
}


.userweeklybackphotos a img,
.userweeklysidephotos a img,
.userweeklyallphotos a img {
    height: 60px;
    width: 60px;
    border: 2px solid #3c919d;
}

.payment-table-sec,
.resp-table div#AllRecipes_wrapper .col-12 {
    width: 100%;
    overflow-x: auto;
}

/* .resp-table div#AllRecipes_wrapper table#AllRecipes thead th {
    white-space: nowrap;
} */
.side-menu ul li a {
    display: flex;
    align-items: center;
}

.calendar-sec {
    padding: 0 20px;
}


.weekly-image-gallary label {
    min-width: 150px;
}

.weekly-image-gallary img {
    height: 80px;
    width: 80px;
    border: 2px solid #3c919d;
}


.prodetails p,
.commentonfoodlog p {
    /* word-break: break-all; */
}

.workout-search {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #7f7f7f;
    height: 35px;
    width: 240px;
}

/* style="margin-top: -20px;margin-bottom: 0rem!important;width: 10%;max-width: 100px; height: 80px;border: 2px solid #3c919d;"
style="margin-top: -20px;margin-bottom: 0rem!important;width: 10%;max-width: 100px; height: 80px;border: 2px solid #3c919d;"
style="margin-top: -20px;margin-bottom: 0rem!important;width: 10%;max-width: 100px; height: 80px;border: 2px solid #3c919d;" */




.media-body a .notification-msg span {
    white-space: unset;
}


.select-list {
    font-size: 14px !important;
    font-weight: 500;
    color: #6f6f6f;
}

.nevermind-btn {
    background-color: #878b8b;
    border-radius: 30px;
}

.nutrient-cross {
    font-size: 25px;
    cursor: pointer;
}


.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
    float: unset !important;
}

.fc-content-skeleton table tr td {
    text-align: center;
}

.dataTables_filter input[type="search"]:focus {
    outline: unset !important;
}

.future-program-popup {
    border-radius: 30px;
    color: #57aeba;
}





/*-----------------------Responsive part start-------------------------*/

@media (max-width: 1080px) {

    .side-bar {
        z-index: 2;
    }

    /* span.close-side{
        display: unset;
    } */
    .custom-heading {
        margin: 1rem 0rem 0rem 0rem !important;
        font-size: 32px !important;
        font-weight: 500 !important;
    }

    .macros-modal .w3-modal-content {
        width: 70% !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1080px) {
    .side-bar {
        width: 105px;
        transition: .3s all;
    }

    .side-bar ul li span:last-child {
        display: none !important;
    }

    .main-content {
        margin-left: 105px;
        width: calc(100% - 105px);
    }

    .header-tittle h3 label#nav-toggle {
        display: none;
    }

}

@media (max-width: 992px) {
    .macros-modal .w3-modal-content {
        margin-top: 160px;
    }

    .macros-modal .w3-modal-content form .w3-container .height_feet {
        margin-bottom: 15px;
    }
}

@media screen and (max-width:576px) {
    
    .login-img-wrap {
        padding: 0 15px;
    }

    .log-img {
        max-width: 100%;
        overflow: hidden;
    }

    .ux-form-wrap {
        height: 575px;
        padding: 25px 16px;
    }

    .login-logo {
        width: 100%;
        margin: 10px auto 0px;
    }

    .login-logo img {
        margin:0;
        margin-bottom: 0;
        max-width: 180px;
    }

    .signup-left img {
        height: 100%;
        max-height: 400px;
        object-fit: cover;
    }

    .addwater-modal .w3-modal-content .w3-container .glass .glas {
        margin: 5px auto !important;
    }

    .addwater-modal .glass .glas {
        margin: 15px auto !important;
    }

    .addwater-modal .water_header .water_head h2 {
        font-size: 16px !important;
    }

    .addwater-modal .water_header .water_head .glasses p {
        font-size: 12px !important;
    }

    .addwater-modal .addwater {
        font-size: 12px;
    }

    .addwater-modal .water_header {
        flex-wrap: nowrap;
    }

    /* .test-program .inner-container .vid-crd{ */
    /* min-height: 170px; */
    /* max-height: 100%; */
    /* } */
    .test-program .inner-container .task-card-inner {
        min-height: 100%;
    }

    .test-program .inner-container .task-card-inner .tab-btn {
        height: 60px;
    }

    .all-prog {
        margin-bottom: 30px;
    }

    .program-head {
        margin-bottom: 30px;
    }

    .zoom-joined span {
        display: none;
    }

    .zoom-joined {
        width: auto !important;
        left: unset !important;
        right: 160px;
        transform: unset;
        width: 38px !important;
        justify-content: center;
    }

    .chooseprogram-modal .w3-modal-content center h5 {
        margin: 0px 8px;
        font-size: 16px;
    }

    .chooseprogram-modal .w3-modal-content form footer {
        margin-top: 0px;
    }

    .middle-custm .card_header {
        align-items: start;
        flex-direction: column;
    }

    .middle-custm .card_header span {
        width: 100%;
    }

    .middle-custm .card_header span .btn-toolbar {
        margin-left: 0px;
        justify-content: space-between;
        border-top: 0.5px solid #097584;
        padding-top: 10px;
    }

    /*19/06/2024*/
    .addentry-outer {
        justify-content: unset;
        flex-wrap: unset;
        gap: 0px;
        padding: 0px;
    }

    .addentry-outer li button.nav-link {
        width: 112px !important;
        padding: 10px !important;
        font-size: 14px !important;
    }

    #addEntry {
        padding-right: 0px !important;
    }

    .NutrientBreakdown-modal {
        padding-right: 0px !important;
    }

    /*21/06/2024*/
    .food-calculator-main {
        overflow: hidden;
        padding: 0px 15px !important;
    }

    .full-none .ux-first-sec {
        margin-top: 8.8rem;
    }

    .chart-tab ul li button {
        min-width: 82px !important;
    }

    .macros-modal .w3-modal-content {
        width: 96% !important;
        margin: 160px 8px 0px 8px !important;
    }

    .calendar-sec {
        padding: 0 5px;
    }

    .lets-calculate-macro-modal .mobileViewHeaderModal {
        padding: 10px 15px !important;
    }

    .letscalaculatemodal-inner .w3-container .form-group {
        margin: 0px !important;
    }

    .letscalaculatemodal-inner .w3-container .form-group:last-child {
        margin-bottom: 10px !important;
    }

    .letscalaculatemodal-inner .w3-container .macro_btn {
        padding: 5px 40px !important;
        margin: 0px !important;
    }

    .lets-calculate-macro-modal .w3-modal-content {
        margin: 130px 8px 0px 8px !important;
    }

    .logFood_modal .modal-content {
        margin-top: 8.5rem !important;
    }

    .logFood_modal .footerBtn {
        justify-content: center;
    }

    .logFood_modal .footerBtn button {
        padding: 8px 20px;
    }
}

@media (max-width:430px) {
    .id01-modal .resp-main-content {
        max-height: calc(100vh - 54vh);
        overflow-y: auto;
    }
}

@media (max-width: 400px) {
    .zoom-joined {
        right: 160px;
    }

    .chooseprogram-modal {
        margin-top: 0;
        padding: 0;
    }
}

@media (max-width:375px) {
    .menuBTN {
        margin-top: -10px;
        margin-right: 00px !important;
    }

    .head-option {
        margin-top: 10px;
    }

    header.header-bg {
        min-width: 100%;
    }

    .header_logo span {
        font-size: 1.5rem;
    }

    .menunoti {
        right: 3.5rem;
        top: -3.2rem !important;
    }

    .main-content-area {
        padding: 0rem;
    }

    .card_header {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-direction: column;
    }

    .card_header button {
        margin: 0 !important;
    }

    .card_header .btn-toolbar {
        margin: 0 !Important;
    }

    .custom-cal {
        min-width: 100%;
        width: 100%;
        padding: 5px;
    }

    .zoom-joined {
        right: 145px;
    }


}



table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc {
    background-image: none !important;
}

/* 17/12/2024 */
.custom-add-card .card-content {
    position: relative;
    height: 100%;
}

.custom-client-box {
    position: absolute;
    bottom: 10px;
    right: 0;
    transition: .3s;
    width: 100%;
    font-size: unset;
    display: flex;
    align-items: center;
    justify-content: end;
}

.client-drop-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-client-box .conunt-box-icon i {
    font-size: 50px;
}

.custom-client-box .conunt-box-dropdown a button {
    padding: 0;
    border: none;
    border-radius: unset;
}

.CstmVideoModalScroll {
    max-height: 400px;
    overflow-y: auto;
}

@media (max-width: 600px) {
    .wpallvideo {
        min-height: 355px !important;
    }
}

/* 17 FEB----- */
.moduleContainer .gobackbtn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.moduleContainer .gobackbtn .left_arrow {
    margin-bottom: 6px;
    font-size: 28px;
}

.moduleContainer .previewBlock img {
    max-width: 100%;
    width: auto;
}

.id01-modal .resp-main-content {
    max-height: calc(100vh - 30vh);
    overflow-y: auto;
}

.custModal-entry .cursor #foodlogdata {
    width: 100% !important;
    max-width: calc(100% - 0%) !important;
    position: absolute;
    top: 40px;
    left: 0;
    margin: 0;
}

.receipeSave .addfood-input {
    position: relative;
}

.receipeSave .addfood-input #foodlogdatarecipe1 {
    width: 100% !important;
    max-width: calc(100% - 0%) !important;
    position: absolute;
    top: 36px;
    left: 0;
    margin: 0;
}

/* Food Log CSS */
.logFood_modal .inputBox {
    position: relative;
}

.logFood_modal .inputBox i,
.reciepeAdd .addfood-input i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 0;
}

.logFood_modal .inputBox i svg,
.reciepeAdd .addfood-input i svg {
    margin-top: 0 !important;
}

.logFood_modal .inputBox #foodlogdata,
.reciepeAdd .addfood-input #foodlogdatarecipe1 {
    width: 100% !important;
    max-width: calc(100% - 0%);
    position: absolute;
    left: 50%;
    margin: 0;
    /* top: 40px; */
    transform: translateX(-50%);
}

.reciepeAdd .addfood-input {
    position: relative;
}


/* .custModal-entry .serachSection .cursor input.form-control{
    --webkit-appearance: none;
    appearance: none;
} */
.custModal-entry .serachSection .cursor input[type=text] {
    -webkit-appearance: textfield;
    appearance: textfield;
}

/* 21/02/2025 */

/*06/05/2025*/
.respond-box {
    border: 1px solid #5c8f96;
    padding: 8px 8px 9px 8px !important;
    border-radius: 6px;
    margin-top: 2px;
}
.respond-box #app{
    text-align: center;
}
.respond-box #loom-record-sdk-button {
    border-radius: 3px;
    padding: 6px;
    border: none;
    margin: 0px;
    font-size: 12px;
}
/*0705/2025*/
.pdfmodal-outer .modal-content{
    border-radius: 30px;
    border: none;
}
.pdfmodal-outer .modal-content .modal-header{
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border: none;
}
.pdfmodal-outer .modal-content .close{
    opacity: 1;
}
/*15/05/2025*/
.sentemail-table .dataTables_scroll .dataTables_scrollHeadInner{
    width: 100% !important;
}
.sentemail-table .dataTables_scroll .dataTables_scrollHeadInner table{
    width: 100% !important;
}
.sentemail-table .dataTables_scroll .dataTables_scrollBody table{
    width: 100% !important;
}
.choseprogram-anchor span {
    text-decoration: underline;
    color: #153ce1;
    font-weight: 600;
}
h5.choseprogram-anchor:hover {
    text-shadow: 0px 4px 9px rgb(87 174 186 / 59%);
}
/*21/05/2025*/
.cstmweeklycard-outer{
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0px 50px;
}
.cstmweeklycard-outer .weeklycard-inner{
    width: 400px;
}
.cstmweeklycard-outer .weeklyimg-card{
    width: 250px;
}
@media(max-width: 1280px){
.cstmweeklycard-outer .weeklycard-inner{
    width: 100%;
}
.cstmweeklycard-outer .weeklyimg-card{
    width: 100%;
}
}
@media(max-width: 1024px){
    .cstmweeklycard-outer{
        flex-wrap: wrap;
    }
.cstmweeklycard-outer .weeklycard-inner{
    width: 400px;
}
.cstmweeklycard-outer .weeklyimg-card{
    width: 400px;
}
}
@media(max-width: 992px){
     .cstmweeklycard-outer{
        margin: 0px;
    }
.cstmweeklycard-outer .weeklycard-inner{
    width: 350px;
}
.cstmweeklycard-outer .weeklyimg-card{
    width: 350px;
}
}
@media(max-width: 820px){
    .respond-box{
        margin: 10px 0px;
    }

}
@media(max-width: 600px) {

    .cstm-nav-tabs {
        display: flex;
        justify-content: center;
    }

    .cstm-nav-tabs ul {
        margin: 0;
    }
    .pdfmodal-outer{
        padding-left: 0px !important;
    }
    .pdfmodal-outer .modal-dialog{
    width: calc(100% - 55px);
}
}



@media(max-width: 480px) {

    .chat-frame {
        height: auto !important;
        border-right: 0 !important;
        border-left: 0 !important;
    }

    iframe.chat-frame-inner {
        position: unset;
        width: 100%;
        height: calc(100vh - 250px) !important;
    }
}

@media (max-width:991px) {
    .CstmRecordVideoBtn-Wrapper {
        padding: 15px !important;
    }
}

@media screen and (min-device-width:1202px) and (max-device-width:1331px) {
    .chart-tab ul li button {
        min-width: 50px !important;
    }
}

@media screen and (min-device-width:1332px) and (max-device-width:1412px) {
    .chart-tab ul li button {
        min-width: 70px !important;
    }
}

@media screen and (min-device-width:1412px) and (max-device-width:1660px) {
    .chart-tab ul li button {
        min-width: 80px !important;
    }
    .check-card .col-md-6 {
        width: 25% !important;
        max-width: 25% !important;
        flex: unset;
    }
    .respond-box p{
        margin-bottom: 0px;
    }
       
}

.CstmRecordVideoBtn-Wrapper {
    padding: 0;
}

@media screen and (min-device-width:992px) and (max-device-width:1300px) {
    .CstmRecordVideoBtn {
        white-space: pre-wrap;
        padding: 2px 0px !important;
    }


}

@media (max-width: 360px) {
    .zoom-joined {
        right: 145px;
    }

    div ul.top-nav .HomeMobileICone {
        position: fixed;
        left: 0px;
        width: fit-content;
        padding: 10px;
    }

    ul.top-nav .mob-chat {
        position: fixed;
        top: 78px;
        left: 45px;
        padding: 13px;
    }
}

@media (max-width: 320px) {
    .zoom-joined {
        right: 144px;
        padding: 0.5rem 0.7rem !important;
    }
}

@media screen and (max-device-width:489px) {
    ul.top-nav .HomeMobileICone {
        position: fixed;
        left: 0px;
        width: fit-content;
        padding: 10px 20px;
        margin-right: 20px;
    }

    ul.top-nav .HomeMobileICone a span {
        display: none;
    }

    .mob-chat {
        position: fixed;
        top: 78px;
        left: 64px;
    }
}

@media screen and (min-device-width:490px) and (max-device-width:991px) {

    ul.top-nav .HomeMobileICone a span {
        display: none;
    }

    ul.top-nav .HomeMobileICone {
        position: fixed;
        left: 40px;
        width: fit-content;
        padding: 10px 20px;
        margin-right: 20px;
    }
}



ul.top-nav.menuBar .HomeMobileICone {
    display: none;
}

.previewBlock p iframe {
    max-width: 100%;
}

@media (max-width: 576px) {
    .show-notification {
        width: 320px;
    }

    .CstmPaddingTop {
        /* padding-top: 70px; */
                padding-top: 130px;
    }
     .CstmPaddingTop:has(#iframe-id){
        padding-top: 70px;
     }
    .signup{
        padding:0;
    }
    .header-bg {
        position: fixed;
        width: 100%;
    }

    .cstm-chat-frame {
        width: 100vw;
    }
    .nutrient-breakdown-modal {
        height: calc(100vh - 180px);
        overflow: auto;
        margin-top: 130px !important;
    }
    .recipe-modal .w3-modal-content{
        height: calc(100vh - 180px);
        overflow: auto;
        margin-top: 130px !important;
    }
    #microbreakdowngraph{
        padding-right: 0px !important;
    }
}


.Cstmmodule-Wrap .row div .form-group label {
    color: #3a97a4;
}

.CstmDarkLabelw {
    color: #3a97a4 !important;
}

@media (max-width: 620px) {
    div.dataTables_wrapper div.dataTables_paginate {
        margin: 0;
        white-space: wrap !important;
    }
}

@media (max-width: 1200px) {
    .CstmMobileWidth {
        width: 100%;
        margin-top: 10px;
    }
}
@media (max-width: 1563px) {
    .commission_buttonInfo {
        width: 100%;
        margin-top: 10px;
    }
}
div#datatable_3_wrapper {
    overflow: auto;
}
.CstmTableScrollW{
    overflow: auto;
}

/* 07/14/2025 */
.check-hide {
        display: none;
    }

    .inner-container {

        min-height: 650px;
    }
    .pagination_wrapper .pagination {
    justify-content: end;
    gap: 10px;
}
.pagination_wrapper .pagination button {
    background-color: #6aa8b1;
    color: white;
    width: 30px;
    height: 30px;
    border: unset;
    border-radius: 4px;
}
.id04-modal .w3-modal-content.w3-animate-zoom.w3-card-4 {
    border-radius: 44px 44px 0 0 !important;
}
.pagination_wrapper {
    padding: 10px 20px;
    border-top: 1px solid #eee;
}
.pagination_wrapper .pagination button.pagination-btn.disabled {
    background: #ccc;
    color: #6b6b6b;
}

/* add new css 24th july 2025 */
h2.empowered-head {
    margin-bottom: 0;
    padding-bottom: 4px;
        padding-top: 0;
}
p.sub-title-empowered {
    padding-right: 28px;
    color: #296e78;
}
#div-id{
    border: 8px solid #efefef;
    border-radius: 7px;
    width    : 100%;
    /* height: 790px; */
    position : relative;
    overflow : hidden;
     height: calc(100vh - 120px);
}
 .my-new-class-css{
    position : absolute;
    width    : 100%;
    height   : 100%;
} 
/* 31/07/25 */
.form-card.log-img{
    width: 100%;
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.form-card.log-img img {
    width: 100%;
    height: 100%;
}
/* .login-img-wrap {
    max-height: 74vh;
} */
/* .form-card.log-img {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    display: flex;
} */

.login-logo {
    width: 100%;
    max-width: 361px;
    text-align: center;
}
@media(max-width:1023px){
    .signup{
        width:calc(100% - 20px)
    }
}
@media (max-width:767px){
    .ux-contain-custom{
        max-height: 100%;
    }
    .form-card.log-img {
        min-height: 380px;
    }
}
@media (min-width:768px) and (max-width:819px){
.ux-form-wrap{
    height: 764px;
}
.login-logo {
    width: 60%;
}
}
@media (min-width:820px) and (max-width:911px){

.ux-form-wrap{
    height: 764px;
}
.login-logo {
    width: 60%;
}
}
@media (min-width:912px) and (max-width:1024px) and (orientation:portrait){

.ux-form-wrap{
    height: 764px;
}
.login-logo {
    width: 60%;
}
}
@media (min-width:852px) and (max-width:853px) and (orientation:portrait){
.ux-form-wrap{
    height: 829px;
}
}
@media (min-width:1024px) and (max-width:1365px) and (orientation:landscape){
.ux-contain-custom {
    max-height: 95vh;
    overflow: hidden;
}
.login-img-wrap {
    max-height: 95vh;
}
.ux-form-wrap{
    height: 764px;
}
.login-logo {
    width: 60%;
}
}
@media (min-width:1279px) and (max-width:1280px){
.login-img-wrap {
        max-height: 89vh;
    }
}
@media (min-width:1366px) and (max-width:1919px) and (orientation:landscape){
.ux-form-wrap{
    height: 764px;
}
.login-logo {
    width: 100%;
}
}
/* 05 Aug 2025 */
.pb-80px{
    padding-bottom: 80px;
    overflow-x: hidden;
}
@media(max-width:767px){
    body:has(.pb-80px){
        overflow-x: hidden;
    }
    canvas#myChart {
        min-height: 400px;
    }
    body:has(.pb-80px) .header-bg{
        height: unset;
    }
}
.empowered h2 ,
.text-position-bx.empowered h2.empowered-head{
    font-size: 2rem;
    padding: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    color: #296e78;
    text-align: left;
    position: relative;
    padding-top: 13px;
    hyphens: auto;
    word-break: break-all;
}
.text-position-bx.empowered h2.empowered-head span.sub-title-empowered,
.empowered span {
    text-align: center !important;
    display: block;
    padding: 1.5rem 0rem;
    float: none !important;
    margin-top: 0px !important;
    position: absolute;
    top: -4px;
    right: 10px;
    padding: 0px !important;
    font-size: 12px;
}

/* 26-08-2025 for pdf popup open */
 /* Modal background */
.pdf-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

/* Wrapper */
.pdf-wrapper {
  position: relative;
  width: 100%;
  height: 90%;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.5);
  overflow: hidden;
}

/* Sidebar */
.pdf-thumbnails {
  width: 200px;
  min-width: 150px;
  background: #f8f8f8;
  border-right: 1px solid #ddd;
  overflow-y: auto;
  padding: 10px;
}
.thumb-title {
  text-align: center;
  font-family: sans-serif;
  margin: 5px 0;
  font-size: 14px;
}

/* Main pages */
.pdf-pages {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  background: #fff;
  text-align: center;
}
.pdf-pages canvas {
  margin: 15px auto;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 4px;
  max-width: 100%;
  height: auto;
}

/* Close button */
.pdf-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  background: red;
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 50%;
  cursor: pointer;
}

/* Thumbnail canvas */
.pdf-thumbnails canvas {
  display: block;
  margin: 10px auto;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s ease;
}
.pdf-thumbnails canvas:hover {
  transform: scale(1.05);
  border-color: #007bff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pdf-wrapper {
    flex-direction: column;
    width: 350px;
  }
  .pdf-thumbnails {
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  .pdf-thumbnails canvas {
    height: 100px;
    width: auto;
    margin: 5px;
  }
  .pdf-pages {
    height: calc(100% - 120px);
    overflow-y: auto;
  }
  .foodlock.resp-main-content{
    height:330px;
  }
}

@media (max-width: 768px) {
  .pdf-wrapper {
    flex-direction: column;
  }

  /* Hide thumbnails by default in mobile */
  .pdf-thumbnails {
    display: none;
    width: 100%;
    height: 120px;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid #ddd;
  }

  /* Main PDF pages full height */
  .pdf-pages {
    flex: 1;
    height: 100%;
    overflow-y: auto;
  }

  /* Show toggle button for thumbnails */
  .thumb-toggle {
    display: block;
    background: #007bff;
    color: #fff;
    padding: 6px 12px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
  }
}


.btn-control-pdf-zooming {
    position: absolute;
    top: 10%;
    right: 90px;
    z-index: 9;
}
.btn-control-pdf-zooming button {
    border: 1px solid #bbbbbb;
    color: #404040;
    padding: 2px;
    border-radius: 3px;
    background: whitesmoke;
}
.btn-control-pdf-zooming button:hover {
    background: white;
}
@media (min-width: 769px) {
  .thumb-toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .pdf-wrapper {
    height: 100%;
  }
  .btn-control-pdf-zooming {
    top: unset;
    right: 30px;
    bottom: 20px;
  }
    iframe#iframe-id {
        height: calc(100dvh - 130px) !important;
    }
    .CstmPaddingTop:has(#div-id.chat-frame.cstm-chat-frame) {
        padding-top: 116px;
    }
    iframe#iframe-id.chat-frame-inner {
        height: calc(100dvh - 185px) !important;
    }
     .update_data_section canvas.canvasjs-chart-canvas {
        width: 318px !important;
        height: 180px !important;
        object-fit: cover;
        margin: 0 auto;
    }
}




@media(min-width:768px) and (max-width:1024px){
  .update_data_section canvas.canvasjs-chart-canvas {
        width: 420px !important;
        height: 230px !important;
        object-fit: cover;
        margin: 0 auto;
    }
}


.middle-custm ul.dropdown-menu li {
    padding: 8px 10px !important;
    border-bottom: 1px solid #ddd;
}

.middle-card.middle-custm .card_footer .w3-dropdown-hover ul.dropdown-menu {
    padding: unset;
    border-radius: 0;
    width: 100px !important;
    min-width: 103px;
    left: unset !important;
        top: 25px !important;
        right: 0 !important;
}

.middle-custm ul.dropdown-menu li:last-child{
    border: 0;
}

/* 09-12-2025 */
#videoModalPlayVideo .modal-dialog {
    max-width: 900px;
}
#videoModalPlayVideo .modal-dialog iframe#videoFrame.vimeo-video {
    height: calc(100dvh - 250px);
}
#videoModalPlayVideo .modal-dialog iframe#videoFrame.youtube-video {
    height: 480px;
}
#videoModalPlayVideo .modal-dialog .modal-content {
    margin: 0;
    width: 100% !important;
    max-width: 100%;
    margin-top: 60px;
}
@media(max-width:767px){
    #videoModalPlayVideo .modal-dialog iframe#videoFrame.vimeo-video {
        height: calc(100dvh - 250px);
    }
    #videoModalPlayVideo .modal-dialog iframe#videoFrame.youtube-video {
        height: 320px;
    }
    #videoModalPlayVideo .modal-dialog .modal-content {
        margin-top: 120px;
    }
}

table.add-service-table tbody tr {
    cursor: grab;
}
table.add-service-table button.btn-edit {
    border: 0;
    background: transparent;
    color: green;
    padding: 2px 6px;
}
table.add-service-table a[title="Delete"] {
    font-size: 18px;
    padding: 2px 4px;
}
table.add-service-table button.btn-edit svg {
    width: 20px;
    height: 20px;
}
table.add-service-table .btn-preview-modal,
table.add-service-table .video-btn-preview-modal {
    border: 0;
    background: transparent;
    color: blue;
    padding: 2px 6px;
}
table.add-service-table .btn-preview-modal svg {
    width: 20px;
    height: 20px;
}
table.add-service-table .video-btn-preview-modal svg {
    width: 20px;
    height: 20px;
}
img#prev_img_service {
    width: 100%;
}

.modal#previewModalService .modal-dialog {
    max-width: 1200px;
    width: 1200px;
}

.modal#previewModalService .modal-dialog .modal-content {
    width: 100%;
    max-width: 100%;
}

#videoModalCenter .modal-dialog {
    max-width: 880px;
    width: 100%;
}
#videoModalCenter .modal-dialog .modal-content {
    width: 100%;
    max-width: 100%;
}
#videoModalCenter .modal-dialog .modal-body #videoContainer,
#videoModalCenter .modal-dialog .modal-body {
    height: calc(100dvh - 120px);
}
table#workout-data-table {
    padding: 0;
    max-width: calc(100% - 2px) !important;
}
table#workout-data-table thead tr th {
    border-top: 0;
}
table#workout-data-table thead tr th,
table#workout-data-table tbody  tr td {
    width: fit-content !important;
    max-width: fit-content !important;
    min-width: fit-content !important;
    text-align: center;
}
table#workout-data-table thead tr th:nth-child(2),
table#workout-data-table tbody  tr td:nth-child(2){
    text-align: left;
}
table#workout-data-table tbody tr td:nth-child(5) b input {
    margin: 0;
}
.youtube_mdl  iframe#previewVideoPlayer {
    height: 480px !important;
}
.youtube_mdl#videoModalCenter .modal-dialog .modal-body #videoContainer,
.youtube_mdl#videoModalCenter .modal-dialog .modal-body {
    height: fit-content;
}
#workoutModelPop .modal-content .modal-body,
#updateWorkoutModelPop .modal-content .modal-body {
    padding: 0.5rem 1rem;
}
#workoutModelPop .modal-content .modal-body form#add_workout_form input[type="file"],
#updateWorkoutModelPop .modal-content .modal-body form#add_workout_form input[type="file"] {
    width: 100%;
}
#workoutModelPop .modal-content .modal-body  input.btn.btn-primary.submit-button.float-right,
#updateWorkoutModelPop .modal-content .modal-body  input.btn.btn-primary.submit-button.float-right {
    float: none !important;
    width: 140px !important;
}
#workoutModelPop .modal-content .modal-body input.btn.btn-secondary.float-right,
#updateWorkoutModelPop .modal-content .modal-body input.btn.btn-secondary.float-right {
    width: 140px !important;
    margin: 0 !important;
}


/* 05 jan 2026 */
.program-modal-btn {
    cursor: pointer;
    background: #57adb9;
    padding: 0;
    width: fit-content;
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 4px 14px;
    color: white;
    font-weight: 600;
}
.program-modal-btn span.csmt-icon-program {
    display: flex;
    /* align-items: center; */
    align-items: flex-end;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* border: 1.5px solid white; */
    margin-right: 6px;
}
.program-modal-btn span.csmt-icon-program svg {
    width: 14px;
    height: 14px;
}
.purchase-extend-program {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 14px 10px;
    justify-content: center;
}
.purchase-extend-program a {
    padding: 10px 20px;
    text-align: center;
    background: #6aa7b0;
    color: white;
    flex:1;
    max-width:calc(100% - 180px);
    height: 100%;
    border-radius: 8px;
}
.purchase-extend-program a.purchase-another-program {
    background: #6aa7b0;
}
.purchase-extend-program a.purchase-another-program:hover{
    background: #569099;
    text-decoration: none;
}
.purchase-extend-program a.extend-current-program {
    background: #5ba23c;
}
.purchase-extend-program a.extend-current-program:hover {
    background: #417e27;
    text-decoration: none;
}
.program_detail-payment {
    padding-bottom: 4px;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 6px;
}
.program_detail-payment p {
    font-weight: 600;
    display: flex;
    font-size: 16px;
    gap: 10px;
    margin: 0;
}
.program_detail-payment p span {
    display: inline-block;
    width: calc(100% - 180px);
}
.program_detail-payment span.expire-date {
    font-weight: 600;
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}
.container.new_card .panel.panel-default.credit-card-box {
    margin-bottom: 80px;
}

/* 05 jan 2026 End */
 @media(max-width:768px) {
    .program-modal-btn{
        padding:6px 8px;
    }
    .program-modal-btn span{
        font-size:14px;
    }
    .purchase-extend-program a{
        padding:10px;
        max-width:calc(100% - 40px);
    }
    .main-content:has(#workout-data-table) {
        padding: 0;
    }
    body:has(#workout-data-table) .card-header.custom-flex-new {
        display: flex;
        justify-content: space-between;
    }
    .youtube_mdl#videoModalCenter .modal-dialog .modal-body #videoContainer {
        height: 290px !important;
    }
    .youtube_mdl#videoModalCenter .modal-dialog .modal-body {
        height: unset !important;
    }
    #videoModalCenter .modal-dialog {
        max-width: calc(100% - 16px);
    }
}
.card_footer i.bi-card-list.mr-4 {
    margin-right: 8px !important;
}
.card_footer .w3-dropdown-hover i.bi-three-dots {
    display: flex;
    align-items: center;
    height: 30px;
    width: 30px;
    justify-content: center;
    margin-top: 8px;
}
div#addEntry{
    z-index: 1024;
}
@media(max-width:576px){
    .middle-card.middle-custm .card_footer .w3-dropdown-hover ul.dropdown-menu{
        top:34px !important;
    }
    .banner .banner-head{
        display: none;
    }
     .banner {
        top: 130px;
    }
    .banner-strip{
        top:-5px;
    }
}


/* ========== 30 jan 2026 ========== */
.flex-recipes-list-dt {
    width: 100%;
    justify-content: space-between;
}
.flex-recipes-list-dt .api_field {
    width: calc(100% - 40px);
}
.flex-recipes-list-dt span.btn-trash-dt {
    width: 40px;
    text-align: center;
    margin-top:0 !important;
}
.flex-recipes-list-dt span.btn-trash-dt i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-recipes-list-dt span.btn-trash-dt i:hover {
    background: #fe5d5d;
    color: white;
}

/* 31 jan 2026 */
table.table.table-weight-graph {
    border: 0;
}
table.table.table-weight-graph thead tr th {
    background: #e7e7e7;
    color: black;
    padding: 6px 12px;
    font-size:16px;
    position: sticky;
    top: -1px;
    border: 0;
    padding: 4px 12px;
    font-size: 16px;
    color: white;
    background: #3c8b96;
}

table.table.table-weight-graph tbody tr td {
    order: 0;
    padding: 4px 10px;
    color: #333;
    background: transparent;
    /* border: 0; */
    border: 1px solid #e9e9e9;
}

.wrp-weight-box {
    max-height: calc(100dvh - 675px);
    overflow: auto;
    border-bottom: 1px solid #ebebeb;
    margin-top: 14px;
    position: relative;
    min-height: 200px;
}

.container.pb-80px:has(.wrp-weight-box) {
    padding-bottom: 10px;
}

body:has(.wrp-weight-box) footer.pricing_footer {
    height: fit-content;
    padding: 10px 0px;
    background: white;
}
body:has(.wrp-weight-box) .row.custom-box {
    margin-bottom: 10px;
}

body:has(.wrp-weight-box) .row.custom-box .design-box {
    padding: 8px;
}

/* End 31 jan 2026 */
.gap-6px{
    gap:8px;
}


/* 02 Feb 2026 */

.cart-box-report-chart {
    display: flex;
    gap: 20px;
}

.cart-box-report-chart a.generate_weight_graph {
    text-decoration: none;
    color: black;
    padding: 2px 20px;
}

.cart-box-report-chart a.generate_weight_graph p {
    margin: 0;
}

.cart-box-report-chart button {
    /* background: #56949c; */
    background: #abd9df;
    border: 1px solid #56949c;
    padding: 6px 26px;
    border-radius: 4px;
    line-height: 18px;
    color: white;
}
#nutritionChart{
    width:100%;
}
.overflow-chart{
    overflow-x: auto;
    overflow-y: hidden;
}



/* 10 Feb 2026 */
#macros-table-container table thead tr th ,
#admin-macros-table-container table thead tr th {
    padding: 4px 12px;
    font-size: 16px;
    color: white;
    background: #3c8b96;
}

button.chart-weight-btn.btn-active ,
#generate-chart-micros.btn-active ,
.cart-box-report-chart button.btn-active{
    background: rgb(86, 148, 156);
}

select#dynamic_val_select {
    width: 190px;
    font-size: 16px;
    height: 36px;
}

select#dynamic_val_select_macros {
    width: 190px;
    font-size: 16px;
    height: 36px;
}

body.swal2-shown:not(.swal2-no-backdrop,.swal2-toast-shown) {
    padding-right: 0 !important;
}
.cstm-flex-select-form{
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding-left: 20px;
}
div#dynamic_disp {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

div#dynamic_disp_macros {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

#myWeightChart {
    min-height: 400px;
}
/* 10 Feb 2026 End*/

/* 02 Feb CSS End */

@media(max-width:767px){
    #addEntry .cstm-navtab-mobile-foodlog.addentry-outer {
        flex-wrap: wrap;
        border: 0;
    }
    #addEntry .cstm-navtab-mobile-foodlog.addentry-outer li.nav-item {
        width: 50%;
    }
    #addEntry .cstm-navtab-mobile-foodlog.addentry-outer li.nav-item button {
        width: 100% !important;
        border-bottom: 1px solid #d9d9d9 !important;
    }
    #addEntry .cstm-navtab-mobile-foodlog.addentry-outer li.nav-item button:nth-child(odd) {
        border-right: 1px solid #d9d9d9 !important;
    }
    #mylf-recipes-data.recipes-list.search-design-display {
        max-height: calc(100dvh - 360px) !important;
        height: calc(100dvh - 360px) !important;
    }
    .recipes-list.search-design-display1#my-recipes-data {
        max-height: calc(100dvh - 410px) !important;
        height: calc(100dvh - 410px) !important;
    }
    #favorite-recipes-data.recipes-list.search-design-display {
        max-height: calc(100dvh - 426px);
        height: calc(100dvh - 426px) !important;
    }
    
    form#manual-save-food {
        max-height: calc(100dvh - 290px);
    }
    div:has(#myTabContent #mylf-recipes-data.active) .modal-content.entryModal.resp-margin-cstm-mdl > div:has(button#submit-selected-recipes) {
        margin: 0 !important;
    }
    div:has(#myTabContent #mylf-recipes-data.active) .modal-content.entryModal.resp-margin-cstm-mdl > div:has(button#submit-selected-recipes) #submit-selected-recipes {
        margin: 10px 0;
    }

    div#addEntry .modal-content.entryModal.resp-margin-cstm-mdl input#add-my-recipe {
        margin-top: 10px !important;
        margin-right: 0;
    }
    #addEntry .modal-content.entryModal.resp-margin-cstm-mdl > form.mt-3 {
        margin-top: 0 !important;
    }
    #addEntry .modal-content.entryModal.resp-margin-cstm-mdl .enteryModalBody .mySearch.positon-relative.recipe-search.p-2 input#my-search {
        margin-top: 5px;
        margin-bottom: 5px;
        width: 100%;
    }
    #addEntry .cstm-navtab-mobile-foodlog.addentry-outer li.nav-item button{
        line-height:21px;
    }
    form#myrecipe-save-food.receipeSave.model-popup-design-all {
        max-height: calc(100dvh - 360px);
        height: 100%;
    }
    form#myrecipe-save-food {
        max-height: calc(100dvh - 360px);
    }
    form#myrecipe-save-food.model-popup-design-all {
        max-height: calc(100dvh - 280px);
    }
    form#myrecipe-save-food:has(.addfood-input div#foodlogdatarecipe1 .api_field) {
        height: calc(100dvh - 360px);
    }
    form#myrecipe-save-food.receipeSave.model-popup-design-all .addfood-input div#foodlogdatarecipe1 {
        max-height: 300px;
    }
    #addEntry.logFood_modal form.p-2 .enteryModalBody input#mylf-search {
        width: 100%;
        margin: 10px 0 0;
    }
    #addEntry.logFood_modal .modal-content.entryModal.resp-margin-cstm-mdl .enteryModalBody .mySearch.positon-relative.recipe-search.p-2 {
        padding: 0 !important;
        max-width: calc(100% - 20px);
        margin: 4px auto 0;
    }
    #addEntry.logFood_modal .modal-content.entryModal.resp-margin-cstm-mdl .enteryModalBody .mySearch.positon-relative.recipe-search.p-2 input#my-search {
        margin-top: 0;
    }
    #addEntry.logFood_modal .enteryModalBody .favoriteSearch.positon-relative.recipe-search input#favorite-search {
        width: 100%;
        margin: 6px 0 10px;
    }
    div#addEntry.logFood_modal .modal-content.entryModal.resp-margin-cstm-mdl > form.p-2 {
        padding-top: 0 !important;
        padding-bottom: 0px !important;
    }
    body:has(.wrp-weight-box) .row.custom-box .design-box {
        max-width: calc(100% - 30px);
        padding: 8px;
    }



    .cstm-flex-select-form {
        flex-direction: column;
        padding-right: 20px;
        gap: 10px;
        width:100%;
    }
    div#dynamic_disp {
        width: 100%;
        gap: 10px;
        flex-wrap: wrap;
    }
    div#dynamic_disp_macros {
        width: 100%;
        gap: 10px;
        flex-wrap: wrap;
    }
    .cstm-flex-select-form select#dynamic_val_select {
        width: 100%;
    }
    .cstm-flex-select-form select#dynamic_val_select_macros {
        width: 100%;
    }
    div#dynamic_disp .w-100 label.d-block {
        margin: 0;
    }
    div#dynamic_disp_macros .w-100 label.d-block {
        margin: 0;
    }
    div#dynamic_disp button.btn.btn-secondary {
        margin-left: auto;
    }
    div#dynamic_disp_macros button.btn.btn-secondary {
        margin-left: auto;
    }

    #macros-table-container table tr td {
        padding: 0px 2px;
        font-size: 14px;
    }
    #macros-table-container table thead tr th {
        padding: 0px 4px;
        font-size: 14px;
    }
    #macros-dynamic-section-search > .row {
        margin: 0px;
    }



    .wp_videos.vids-sec > .col-lg-3 {
        width: 50%;
    }
    .wp_videos.vids-sec > .col-lg-3 a {
        display: block;
    }
    .wp_videos.vids-sec > .col-lg-3 a > img {
        min-height: 160px !important;
        height: 160px !important;
    }
    .modal_video.resp-main-content.CstmVideoModalScroll {
        max-height: calc(100dvh - 50px);
        height: calc(100dvh - 250px);
        margin-bottom: 0 !important;
    }
    .chooseprogram-modal:has(.modal_video.resp-main-content.CstmVideoModalScroll){
        margin-top:0;
        padding-top: 0;
    }
}
.apexcharts-canvas { z-index: 1 !important; }
.apexcharts-tooltip { z-index: 100 !important; }




/* 10 Mar 2026 */
iframe {
    border: 0;
}
#div-id.admin-chat-page-main {
    height: calc(100dvh - 100px);
}
body:has(#div-id.admin-chat-page-main) .content-body {
    padding-bottom: 0;
}
body:has(#div-id.admin-chat-page-main) .main-content {
    padding-bottom: 0;
}
@media(max-width:767px){
    
    div#div-id.admin-chat-page-main {
        margin: 0 !important;
        height: calc(100dvh - 80px);
    }

    .main-content:has(.admin-chat-page-main) {
        padding: 0;
    }

    div#div-id.admin-chat-page-main iframe#iframe-id {
        border: 0;
        height: calc(100dvh - 100px) !important;
    }
    body:has(div#div-id.admin-chat-page-main) .content-body {
        padding-bottom: 0;
    }
    div#div-id.chat-frame.cstm-chat-frame {
        border-bottom: 0 !important;
    }
}




/* 07 Apr 2026 */
table.dataTable {
    border: 0 !important;
}


/* 28 Apr 2026 */
.profile-toggle-wrp {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 16px;
}
.add-program-btn{
    background: #004a99;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove-program-btn{
    color: red;
    cursor: pointer;
    font-weight: bold;
    border: none;
    background: none;
    font-size: 18px;
}

.add-program-field-wrp {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: white;
    border: 1px solid #00000026;
    padding: 10px;
    border-radius: 6px;
}
.add-program-field-wrp .input-group,
.add-program-field-wrp .update_input-group {
    align-items: center;
    display: flex;
    gap: 6px;
    width: calc(50% - 10px);
}
.add-program-field-wrp .input-group button.remove-program-btn,
.add-program-field-wrp .update_input-group button.remove-program-btn{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#add_program .form-control,
#update_program_details .form-control{
    height:fit-content;
}
@media(min-width:1023px){
    .profile-toggle-wrp {
        padding-top: 30px;
    }
}
/* 28 Apr 2026 End*/
@media(max-width:767px){
    .add-program-field-wrp {
        flex-direction: column;
    }
    .add-program-field-wrp .input-group,
    .add-program-field-wrp .update_input-group {
        width:100%;
    }
    .profile-toggle-wrp {
        justify-content: center;
    }
    body:has(.profile-toggle-wrp) .card.back-wrap,
    body:has(.profile-toggle-wrp) .main-content {
        padding: 0 !important;
    }
    body:has(.admin-panel-remove-extra-space) .main-content {
        padding-left: 0;
        padding-right: 0;
    }
    body:has(.admin-panel-remove-extra-space) .main-content > .content-body > .container-fluid {
        padding-left: 4px;
        padding-right: 4px;
    }
    body:has(.admin-panel-remove-extra-space) .main-content > .content-body > .container-fluid .grey-area {
        padding: 23px 10px;
    }
    body:has(.admin-panel-remove-extra-space) .main-content > .content-body > .container-fluid > .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    body:has(.admin-panel-remove-extra-space) .grey-area .col-md-3 select.form-control {
        height: fit-content;
        font-size: 20px !important;
        padding-bottom: 8px;
    }
}

.table-coaches{
    max-height:400px;
    overflow: auto;
}
.table-coaches table tr th{
    position: sticky;
    top:-1px;
    background: white;
    z-index:9;
}

.most-popular {
    display: block;
    width: 20px;
    height: 20px;
}




/* 03 June 2026 Start */
#favorite-recipes-data .flex-recipes-list-dt .api_field > span:nth-child(2) {
    width: calc(100% - 22px);
    display: block;
    margin-left: 22px;
}
#favorite-recipes-data .flex-recipes-list-dt .api_field {
    position: relative;
}
#favorite-recipes-data .flex-recipes-list-dt .api_field > span:first-child {
    position: absolute;
    left: 20px;
    top: 4px;
}
#favorite-recipes-data .flex-recipes-list-dt .api_field > span:nth-child(2) > span {
    margin-left: 0 !important;
}
/* 03 june 2026 End */

