.change-popup-bx h6{
    margin-bottom: 15px;
    margin-top: 10px;
}
.change-popup-bx .send-otp-btn{
    top: -3px;
}

.verify-in-account{
    /* position: absolute; */
    /* right: 4px; */
    /* top: 5px; */
    /* transform: translateY(-50%); */
    border: none;
    padding: 3px 8px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 5px;
    outline: none;
    color: var(--color-1);
    letter-spacing: 0.5px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-2);
    cursor: pointer;
    width: fit-content;
    margin-left: auto;
    margin-top: 7px;
}

.verify-in-account:hover {
    color: var(--white);
    background-color: var(--color-1);
    border-color: var(--color-1);
}

.breadcrumb-inner .back-btn {
    position: absolute;
    left: 20px;
    top: 15px;
    opacity: 0.8;
    color: white;
    font-size: 15px;
    font-weight: 400;
    padding: 4px 15px;
    border-radius: 50px;
    background: transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.breadcrumb-inner .back-btn .fa {
    margin-right: 5px;
}

.breadcrumb-inner .back-btn:hover {
    opacity: 1;
}



/* ---
Breadcrumb-bx css
----*/
.breadcrumb-upper {
    background-color: white;
}

.breadcrumb-bx {
    padding: 10px 0px;
    max-width: 1460px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 1;
}

.breadcrumb-bx a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-3);
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.breadcrumb-bx a .fa {
    margin-left: 5px;
    color: var(--color-1);
}

.breadcrumb-bx a:hover {
    color: var(--color-1);
}

.breadcrumb-bx a.active:hover,
.breadcrumb-bx a.active {
    color: var(--color-6);
    text-decoration: none;
}

.breadcrumb-bx.breadcrumb-white {
    padding: 10px 15px;
}

.breadcrumb-bx.breadcrumb-white a {
    color: rgb(255, 255, 255);
    font-weight: 400;
    opacity: 0.9;
}

.breadcrumb-bx.breadcrumb-white a:hover {
    color: white;
    opacity: 1;
}

.breadcrumb-bx.breadcrumb-white a .fa {
    color: white;
}

.breadcrumb-bx.breadcrumb-white a.active,
.breadcrumb-bx.breadcrumb-white a.active:hover {
    color: rgb(238, 242, 248);
    opacity: 0.8;
}

.breadcrumb-bx .back-link{
    background: transparent;
    padding: 5px 8px 7px 12px;
    border-radius: 50px;
    margin-right: 5px;
    margin-left: 0px;
    transition: all 0.3s ease-in-out;
}

.breadcrumb-bx .back-link:hover{
    background: #00000029;
}

.breadcrumb-bx .back-link .fa{
    margin-left:0px !important;
    margin-right: 5px !important;
}


/* ---
Trainner Dashboard Css
--- */
.dash-bx {
    display: flex;
    background-color: #f7f7f7;
}

/* ... Trainner Dashboard (dash-left) Css ... */
.dash-bx .dash-left {
    width: 280px;
    flex: 0 0 280px;
    background-color: #ffffff;
    position: sticky;
    top: 138px;
    height: calc(100vh - 90px - 48px);
    box-shadow: 0px -10px 10px 0px #d6d6d6;
    overflow: hidden;
    overflow-y: auto;
}

.trainer-pic-bx.tpb-2,
.dash-left .trainer-pic-bx {
    display: flex;
    align-items: center;
    padding: 30px 10px 10px;
    flex-direction: column;
}

.trainer-pic-bx.tpb-2 .trainer-pic-img.tpb-2-img,
.dash-left .trainer-pic-bx .trainer-pic-img {
    width: 80px;
    flex: 0 0 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    box-shadow: 0px 0px 0 3px var(--white), 0px 0px 0 5px var(--color-1);
}

.trainer-pic-bx.tpb-2 .trainer-pic-name.tpb-2-name,
.dash-left .trainer-pic-bx .trainer-pic-name {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-3);
    position: relative;
    top: 1.5px;
}

.dash-left .profile-menu {
    padding: 10px;
    /* height: 100%; */
    overflow: hidden;
    overflow-y: auto;
}

.profile-menu .profile-link {
    display: block;
    padding: 6px 10px 6px 20px;
    font-size: 16px;
    margin-bottom: 5px;
    position: relative;
    font-weight: 400;
    color: #777777;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s linear;

}

.profile-menu .profile-link:hover {
    color: black;
    background: linear-gradient(45deg, #0000000a, transparent);
}

.profile-menu .profile-link.active {
    color: #295ea2;
    background: linear-gradient(45deg, #295ea20a, transparent);
}

.profile-menu .profile-link::after {
    content: "";
    width: 3px;
    height: 100%;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s linear;
}

.profile-menu .profile-link:hover::after {
    background-color: gray;
}

.profile-menu .profile-link.active::after {
    background-color: #295ea2;
}

.profile-menu .profile-link .pln-num{
    position: relative;
    left: 0px;
    top: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background-color: #2d61a4;
    display: block;
    color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 10px;
}

/* ... Profile Forms (dash-right) Css ... */
.profile-group {
    position: relative;
    margin: 10px 0;
}

.profile-group textarea,
.profile-group select,
.profile-group input {
    font-weight: 500;
    display: block;
    color: #1c2b33;
    border: 0;
    font-size: 16px;
    background-color: rgb(251 251 251);
    border: 1.5px solid rgb(197, 197, 197);
    width: 100%;
    outline: none;
    font-family: var(--font-2);
    padding: 6px 10px 6px 10px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: var(--font-2);
}

.profile-group span.down-icon {
    border-style: solid;
    border-color: #1c2b3380;
    -o-border-image: initial;
    border-image: initial;
    border-width: 0px 2px 2px 0px;
    display: inline-block;
    padding: 4px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 13px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.profile-group input[type="password"] {
    padding: 6px 40px 6px 10px;
}

.profile-group select {
    padding: 7px 32px 7px 10px;
    cursor: pointer;
}

.profile-group textarea {
    resize: none;
    overflow: hidden;
    min-height: 70px;
}

.profile-group .group__label {
    pointer-events: none;
    position: absolute;
    left: 6px;
    top: 0px;
    z-index: 1;
    font-size: 16px;
    color: #1c2b3380;
    font-weight: 600;
    margin: 0;
    padding: 0 8px;
    -webkit-transform: scale(1) translateY(7px);
    -ms-transform: scale(1) translateY(7px);
    transform: scale(1) translateY(7px);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: var(--font-2);
    cursor: pointer;
}

.profile-group .group__label.up-lable {
    position: inherit;
    transition: none;
    transform: none;
    padding: 0;
    color: black;
    margin-top: -2px;
    display: block;
    font-size: 14px;
}

.profile-group .group__label .pg-optional{
    font-size: 12px;
    color: gray;
}

.profile-group .down-icon{
    border-style: solid;
    border-color: #124ca0;
    border-width: 0px 2px 2px 0px;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    position: absolute;
    right: 13px;
    top: 33px;
}

.profile-group textarea:hover,
.profile-group select:hover,
.profile-group input:hover {
    background-color: rgb(255, 255, 255);
}

.profile-group select:hover~span.down-icon {
    border-color: #124ca0;
}

.profile-group textarea:focus,
.profile-group textarea:not(:placeholder-shown),
.profile-group select:focus,
.profile-group select:not(:placeholder-shown),
.profile-group input:focus,
.profile-group input:not(:placeholder-shown) {
    border-color: #124ca0;
    background-color: rgb(255, 255, 255);
}

.profile-group textarea:not(:placeholder-shown)~.group__label,
.profile-group textarea:focus~.group__label,
.profile-group select:not(:placeholder-shown)~.group__label,
.profile-group select:focus~.group__label,
.profile-group input:not(:placeholder-shown)~.group__label,
.profile-group input:focus~.group__label {
    -webkit-transform: scale(.7) translateY(-18px);
    -ms-transform: scale(.7) translateY(-18px);
    transform: scale(.7) translateY(-18px);
    color: #124ca0;
    background-color: white;
}

.profile-group input[disabled] {
    background-color: rgb(251 251 251);
    cursor: not-allowed;
}


.location-btn{
    display: flex;
    align-items: center;
}

.lb-option{
    cursor: pointer;
    border: 1px solid rgb(197 197 197 / 41%);
    padding: 6px 12px;
    border-radius: 50px;
    font-family: var(--font-2);
    font-weight: 600;
    margin-top: 8px;
    margin-right: 10px;
    box-shadow: 0 0 10px 0px #d3d3d35e;
    background-color: #fcfcfc;
    transition: all 0.3s ease-in-out;
}

.lb-option svg{
    width: 20px;
    margin-right: 5px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.lb-option:hover{
    border-color: #295ea2;
    background-color: #295ea20a;
    color: #295ea2;
}

.lb-option.active{
    border-color: #4CAF50;
    background-color: #4caf5005;
    color: #4CAF50;
}


.lb-option-middale{
    font-size: 16px;
    font-weight: 600;
    color: black;
    padding: 0 8px;
    margin-top: 8px;
    margin-right: 5px;
    margin-left: -5px;
}

.other-icons .fa{
    position: absolute;
    left: 11px;
    top: 31px;
    font-size: 17px;
    width: 16px;
    display: flex;
    justify-content: center;
    color: #4d4d4d;
    align-items: center;
}

.other-icons select,
.other-icons input{
    padding-left: 30px;
}


@media screen and (max-width:768px) {
    .location-btn.faeghsrhsrh .lb-option{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        font-size: 14px;
        text-align: center;
    }

    .location-btn.faeghsrhsrh .lb-option svg{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        font-size: 14px;
    }
}

@media screen and (max-width:430px) {
    .lb-option {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        font-size: 14px;
        text-align: center;
    }

    .lb-option svg{
        margin-bottom: 5px;
    }
    .lb-option-middale{
        font-size: 14px;
    }
}

@media screen and (max-width:370px) {
    .location-btn.faeghsrhsrh .lb-option,
    .lb-option {
        font-size: 12px;
    }
}


.switch_form_lable {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-top: 10px;
    margin-bottom: 6px;
}

.custom-form__switch {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}

.custom-form__switch input {
    display: none;
}

.custom-form__switch .switch__lable {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 60px;
    height: 30px;
    border-radius: 50px;
    background-color: #f2f2f2;
    margin: 0;
    margin-bottom: 0 !important;
    box-shadow: 0 0 5px 0px inset lightgray;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    transform: scale(0.8);
    transform-origin: top left;
}

.custom-form__switch .switch_handler {
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ffffff;
    z-index: 3;
    box-shadow: 0 0 10px #0000003b;
    transition: 0.3s ease-in-out;
}

.custom-form__switch .switch_on,
.custom-form__switch .switch_off {
    font-size: 11px;
    text-align: right;
    display: block;
    font-weight: 500;
    line-height: 30px;
    padding: 0 8px;
}

.custom-form__switch .switch_on {
    position: absolute;
    top: 50%;
    left: 3px;
    line-height: 30px;
    transform: translateY(-50%);
    color: white;
    padding: 0 6px;
    opacity: 0;
    z-index: 2;
}

.custom-form__switch input[type="checkbox"]:checked+label{
    background-color: #4caf50;
    box-shadow: 0 0 5px 0px inset rgb(0 0 0 / 14%);
}

.custom-form__switch input[type="checkbox"]:checked+label>.switch_handler {
    left: calc(100% - 28px);
}

.custom-form__switch input[type="checkbox"]:checked+label>.switch_on {
    opacity: 1;
}


/* ---
View Password Css
--- */
.profile-group .view-pass {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #1c2b3380;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 40px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.profile-group .view-pass:hover {
    color: #124ca0;
}

.t-fees {
    background: #fbfbfb;
    padding: 10px 5px;
    transform: scale(0.95);
    border-radius: 5px;
    border: 1.5px solid #dedede;
}

.t-fees-head {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--color-3);
    margin: 0;
    margin-bottom: 0px;
    position: relative;
    padding: 5px 0 3px;
}




/* ... Trainner Dashboard (dash-right) Css ... */
.dash-bx .dash-right {
    width: auto;
    flex: auto;
    padding: 0 15px;
}

.progressbar-sticky-div{
    position: sticky;
    top: 0;
    z-index: 3;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid transparent;
}

.progressbar-sticky-div.active{
    background-color: #ffffff1a;
    top: 138px;
    border-bottom: 1px solid #e9e9e9;
    -webkit-box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.08);
    box-shadow: 27px 20px 25px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
}

.dash-right .profile-tab {
    display: none;
    padding: 10px 0px;
}

.dash-right .profile-tab.active {
    display: block;
}

.profile-tab .profile-inner-tab {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0px auto 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0px 0px 1px rgb(0 0 0 / 6%);
}



.profile-inner-tab .profile-tab-heading {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #295ea2;
    padding: 8px 15px 7px;
    border-bottom: 1.5px solid #dedede;
    display: flex;
    justify-content: space-between;
}

.extra-lable{
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
    color: #295ea2;
    padding: 8px 5px 8px;
    margin-top: 15px;
    margin-bottom: 6px;
    border-bottom: 1.5px dashed #dedede;
    display: flex;
    justify-content: space-between;
}

.patp-btn{
    font-size: 14px;
    font-weight: 500;
    color: #295ea2;
    background: #e9eff6;
    width: fit-content;
    padding: 3px 10px 4px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.patp-btn:hover{
    color: #ffffff;
    background: #295ea2;
}

.profile-inner-tab .profile-tab-heading .info-tag{
    color: #7c7c7c;
    font-size: 13px;
    display: inline-block;
    margin-left: auto;
    width: fit-content;
    position: absolute;
    right: 10px;
    top: 10px;
}


.vpes-btn{
    color: white;
    background-image: linear-gradient(90deg, var(--color-2) 0%, var(--color-1) 100%);
    background-size: 200%;
    background-position: left center;
    padding: 4px 12px;
    border-radius: 5px;
    font-family: var(--font-2);
    font-weight: 600;
    transition: background-position 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    border-radius: 50px;
    margin-top: 10px;
    width: fit-content;
    margin: 10px auto 0; 
}

.vpes-btn:hover{
    background-position:right center;
}

.vpes-btn:active{
    transform: scale(0.95);
}

.profile-group-lable {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #333333;

    margin-top: 15px;
}

.profile-save-bx {
    padding: 5px 0 5px 15px;
}

.profile-save-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    width: 100%;
    font-weight: 400;
    letter-spacing: .5px;
    color: #fff;
    background-color: #2D88FF;
    font-size: 14px;
    margin: 0px auto;
    position: relative;
    border: none;
    outline: none;
    cursor: pointer;
    width: auto;
    margin-right: inherit;
}

.tasp-btns {
    position: absolute;
    right: 10px;
    top: 7px;
}

.profile-view-btn,
.profile-delet-btn,
.profile-edit-btn {
    border: 1px solid rgb(0 0 0 / 6%);
    background: #f7f7f7;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    width: fit-content;
    text-transform: lowercase;
    padding: 0px 10px 0px 10px;
    border-radius: 50px;
    color: #777777;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.profile-view-btn:hover {
    color: #2bc48a;
    border-color: #2bc48a;
    background-color: #2bc48a12;
}

.profile-edit-btn:hover {
    color: #00559e;
    border-color: #00559e;
    background-color: #00559e12;
}

.profile-delet-btn:hover {
    color: #ff0000;
    border-color: #ff0000;
    background-color: #ff000012;
}

.profile-view-btn img,
.profile-delet-btn img,
.profile-edit-btn img {
    width: 13px;
    height: 13px;
    filter: grayscale(1);
    margin-right: 4px;
    transition: all 0.3s ease-in-out;
}

.profile-view-btn:hover img,
.profile-delet-btn:hover img,
.profile-edit-btn:hover img {
    filter: grayscale(0);
}



.language-select-bx {
    margin: 10px 0;
    background-color: rgb(251 251 251);
    border: 1.5px solid rgb(197, 197, 197);
    border-radius: 5px;
    padding: 5px 10px;
    position: relative;
    transition: all 0.3s linear;
}

.language-select-bx:hover {
    border-color: #124ca0;
    background-color: white;
}

.language-select-bx .bootstrap-tagsinput .tag.label.label-info {
    background-color: #00559e12;
    padding: 5px 30px 5px 15px;
    border-radius: 20px;
    color: #1c2b33;
    font-weight: 500;
    font-size: 14px;
    color: #00559e;
    margin: 4px 2px 4px 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.language-select-bx .bootstrap-tagsinput .tag.label.label-info::after {
    content: "";
    width: 15px;
    height: 1px;
    display: block;
    border-radius: 10px;
    background-color: currentColor;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.language-select-bx .bootstrap-tagsinput .tag.label.label-info::before {
    content: "";
    width: 15px;
    height: 1px;
    display: block;
    border-radius: 10px;
    background-color: currentColor;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.language-select-bx .bootstrap-tagsinput .tag.label.label-info:hover {
    color: red;
    background-color: #ff00001f;
}

.language-select-bx .bootstrap-tagsinput .tag.label.label-info span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: auto;
    cursor: pointer;
    border-radius: 20px;
}

.language-select-bx .bootstrap-tagsinput input {
    border: none;
    outline: none;
    background-color: transparent;
    margin: 4px 2px 4px 0;
    padding: 0;
    width: auto;
    display: inline-block;
}


.language-suggestions {
    position: absolute;
    left: 0;
    width: 100%;
    top: 102%;
    background: white;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 0 1px 0 1px #e9e9e9;
    box-shadow: 0 1px 0 1px #e9e9e9;
    max-height: 160px;
    overflow: hidden;
    overflow-y: auto;
    padding: 5px;
    z-index: 2;
    display: none;

}

.language-suggestions .language-item {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--color-6);
    padding: 7px 14px;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.language-suggestions .language-item:hover {
    background: #295ea212;
    color: var(--color-1);
    border-color: var(--color-1);
}

.add-profile-box {
    border: 1px solid lightgray;
    height: 150px;
    width: 100%;
    border: 2px dashed rgb(197, 197, 197);
    border-radius: 5px;
    margin: 10px 0 10px;
    background: #fbfbfb;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.dgrdhrt input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.add-profile-box img {
    width: 50px;
    filter: grayscale(1);
    transition: all 0.3s ease-in-out;
}

.add-profile-box .add-profile-lable {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    color: #777;
    padding: 10px 0 0;

}

.add-profile-box:hover img {
    filter: grayscale(0);
    /* transform: scale(1.2); */
}

.add-profile-box:hover {
    border-color: #295ea2;
    background-color: white;
    color: #295ea2;
}

.add-profile-small {
    height: auto;
    flex-direction: row;
    padding: 15px 10px;
}

.add-profile-small img {
    width: 35px;
    margin-right: 10px;
}

.add-profile-small .add-profile-lable {
    padding: 0;
}

/* ... Training Areas Popup (dash-right) Css ... */
.training-areas-popup {
    padding: 30px 15px;
}

.training-areas-popup .trarpo-heading {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--color-3);
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
    margin-top: -14px;
}

.training-areas-popup .trarpo-divider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.training-areas-popup .trarpo-divider::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 100%;
    height: 0px;
    border-top: 2px dashed rgb(235 235 235);
}

.training-areas-popup .trarpo-divider span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    background-color: white;
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0px 10px;
    color: black
}

.trarpo-category {
    height: 360px;
    border-radius: 5px;
    box-shadow: 0 0 0 1px #e9e9e9;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    overflow-y: auto;
    margin-top: 20px;
}

.trarpo-category:hover {
    box-shadow: 0 0 0 1px #295ea2;
}

.trarpo-category-heading {
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-3);
    border-bottom: 1.5px solid #e9e9e9;
    position: sticky;
    top: 0px;
    background: white;
    z-index: 1;
}

.tch-text-bg{
    background: var(--color-2);
    border-radius: 5px;
    border-bottom: none;
    color: white;
}

.trarpo-sub-list,
.trarpo-category-list {
    list-style: none;
    margin: 0;
}

.trarpo-sub-list li,
.trarpo-category-list li {
    padding: 10px 25px 10px 40px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-3);
    border-top: 1.5px solid #e9e9e9;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.trarpo-sub-list li {
    padding: 10px 25px 10px 10px;
}

.trarpo-sub-list li:hover,
.trarpo-category-list li:hover {
    background-color: #f9f9f9;
}

.trarpo-sub-list li.selected,
.trarpo-category-list li.focus {
    background: #295ea203;
    color: #295ea2;
}

.trarpo-category-list li img {
    width: 15px;
    height: 15px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.trarpo-sub-list li img {
    width: 11px;
    height: 11px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s cubic-bezier(0.895, 0.03, 0.685, 0.22);
    filter: grayscale(1);
}

.trarpo-sub-list li img.added-img {
    opacity: 0;
    visibility: hidden;
    filter: grayscale(0);
}

.trarpo-sub-list li.selected img.add-img,
.trarpo-sub-list li img.added-img {
    opacity: 0;
    visibility: hidden;
}

.trarpo-sub-list li.selected img.added-img {
    opacity: 1;
    visibility: visible;
}

.trarpo-category-list li .fa {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}



.skills-finel-list-bx {
    margin-top: 20px;
}

.display-skills-ul,
.skills-list-ul {
    list-style: none;
    margin: 0;
    margin-top: 10px;
}

.display-skills-ul {
    margin-top: 0px;
    margin-bottom: 5px;
}

.display-skills-ul li,
.skills-list-ul li {
    padding: 5px 30px 5px 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-3);
    border: 1.5px solid #e9e9e9;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    border-radius: 50px;
    margin: 5px 5px 0 0;
    transition: all 0.3s ease-in-out;
}

.display-skills-ul li {
    padding: 3px 10px;
    font-weight: 500;
    font-size: 13px;
    background: #fbfbfb;
}


.skills-list-ul li:hover {
    color: red;
    background-color: #ff00001f;
    border-color: red;
}

.skills-list-ul li img {
    width: 13px;
    height: 13px;
    position: absolute;
    right: 10px;
    top: 50%;
    filter: grayscale(1);
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.skills-list-ul li:hover img {
    filter: grayscale(0);
}


/* ... Training Content Popup (dash-right) Css ... */
.training-content-popup {
    padding: 30px 15px;
}

.certificate-heading,
.training-content-popup .trcopo-heading {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-3);
    margin: 0;
    margin-bottom: -8px;
}



/* ---
file upload css
--- */

.file-upload {
    font-size: 16px;
    max-width: 768px;
    width: 100%;
    margin: auto;
    display: block;
    margin: 15px 0 10px;
}

.file-upload .file-select {
    display: block;
    color: #525252;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.file-upload .file-select .file-select-button {
    background: #295ea2;
    color: white;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    text-align: center;
    font-weight: 400;
}

.file-upload .file-select .file-select-name {
    line-height: 40px;
    display: block;
    height: 40px;
    padding: 0 10px;
    width: 100%;
    border: 1.5px solid rgb(197, 197, 197);
    border-radius: 5px;
}

.file-upload .file-select:hover .file-select-name {
    border-color: #41c6f7;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload .file-select:hover .file-select-button {
    background: #41c6f7;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.file-upload.active .file-select .file-select-name {
    border-color: #3fa46a;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

/* .file-upload.active .file-select .file-select-button {
    background: #3fa46a;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
} */

.file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.file-upload .file-select.file-select-disabled {
    opacity: 0.65;
}

.file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #dce4ec;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #dce4ec;
    color: #666666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
}

/* trainner-content-item */

.tci-main-bx {
    margin-bottom: 20px;
}

.tci-main-bx:first-child {
    margin-top: 10px;
}

.tci-main-bx:last-of-type {
    margin-bottom: 0px;
}

.tci-main-bx .trainner-content-item {
    border: 1.5px solid #dedede;
    padding: 15px;
    border-radius: 10px;
    background-color: #fcfcfc;
}

.tci-main-bx .trainner-content-item .tci-heading {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-3);
    margin: 0;
    margin-bottom: 0px;
    position: relative;
    padding: 0px 0 5px;
}

.tci-main-bx .trainner-content-item .tci-description {
    width: 100%;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 5px;
    color: var(--color-4);

}

.tci-popup-bx .tci-row>div,
.tci-main-bx .tci-row>div {
    margin-top: 10px;
    padding: 0 15px;
}

.tci-popup-bx .tci-doqument-item,
.tci-main-bx .tci-doqument-item {
    position: relative;
    box-shadow: 0 0 0 1px #dedede;
    padding: 7px;
    border-radius: 5px;
    display: flex;
    transition: all 0.3s linear;
    background: #ffffff;
    padding-bottom: 45px;
    cursor: pointer;
}

.tci-popup-bx .tci-doqument-btns,
.tci-main-bx .tci-doqument-btns {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.tci-popup-bx .tci-doqument-item:hover,
.tci-main-bx .tci-doqument-item:hover {
    box-shadow: 0 0 0px 1px var(--color-1);
    /* background-color: var(--background-color-3); */
}

.sfhbdgndtgndtg{
    padding-bottom: 7px !important;
}
.sfhbdgndtgndtg .tci-doqument-btns{
    position: initial;
}
.sfhbdgndtgndtg .tci-doqument-text{
    display: none;
}
.sfhbdgndtgndtg .tci-doqument-btns span{
    margin-bottom: 8px;
}

.tci-popup-bx .tci-doqument-item>img,
.tci-main-bx .tci-doqument-item>img {
    width: 65px;
    height: 65px;
    border-radius: 5px;
    margin-right: 10px;
}

.tci-popup-bx .tci-doqument-item .tci-doqument-text,
.tci-main-bx .tci-doqument-item .tci-doqument-text {
    flex-grow: 1;
}

.tci-popup-bx .tci-doqument-item .tci-doqument-text h6,
.tci-main-bx .tci-doqument-item .tci-doqument-text h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 3px;
    color: var(--color-3);
    transition: all 0.3s linear;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
}

.tci-popup-bx .tci-doqument-item:hover .tci-doqument-text h6,
.tci-main-bx .tci-doqument-item:hover .tci-doqument-text h6 {
    color: var(--color-1);
}

.tci-popup-bx .tci-doqument-item .tci-doqument-text .tci-doqument-price,
.tci-main-bx .tci-doqument-item .tci-doqument-text .tci-doqument-price {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3px;
    color: var(--color-3);
    transition: all 0.3s linear;
}

/* ... Certificate Popup (dash-right) Css ... */
.certificate-popup {
    padding: 30px 15px;
}

.certificate-popup .certificate-popup-heading {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: var(--color-3);

    margin: 0;
    margin-bottom: 0px;
}

.certi-item {
    position: relative;
    padding: 10px;
    padding-bottom: 35px;
    margin: 10px 0px;
    border-radius: 5px;
    background: #fbfbfb;
    transition: all 0.3s linear;
    box-shadow: 0 0 0 1px #dedede;
}

.certi-item .certi-name {
    margin: 0;
    margin-bottom: 0px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    padding: 0px 0 5px;
    color: var(--color-4);

}

.certi-item .certi-desc {
    width: 100%;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    padding: 0px 0 5px;
    color: var(--color-3);

}

.certi-item .certi-date {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-4);

}

.certi-item .certi-btns {
    position: absolute;
    bottom: 10px;
    right: 10px;
}



/*  */

.about-trust-verifi .atv-heading {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--color-3);
}

.about-trust-verifi .atv-desc {
    width: 100%;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 5px;
    color: var(--color-4);
}

.trust-verifi-item {
    position: relative;
    margin: 10px 0px;
    border-radius: 5px;
    background: #ffffff;
    transition: all 0.3s linear;
    box-shadow: 0 0 0 1px #dedede;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
}

.trust-verifi-item .trust-verifi-heading {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--color-4);
}

.trust-verifi-item .trust-verifi-btn .tvb-add-span {
    display: block;
    cursor: pointer;
    color: var(--color-4);
    font-size: 14px;
    padding: 5px 20px;
    font-weight: 400;
    border-radius: 5px;
    background: #eeeeee;
    border: 1px solid rgb(0 0 0 / 6%);
    transition: all 0.3s ease-in-out;

}

.trust-verifi-item .trust-verifi-btn .tvb-add-span:hover {
    color: white;
    background: #295ea2;
    border-color: #295ea2;
}

.trust-verifi-item .trust-verifi-btn .tvb-verified-span {
    display: block;
    cursor: pointer;
    color: white;
    font-size: 14px;
    padding: 5px 20px 4px;
    font-weight: 500;
    border-radius: 5px;
    background: #28a745;
    border: 1px solid #28a745;
    transition: all 0.3s ease-in-out;

}

.profile-status-bx {
    max-width: 100%;
    width: 100%;
    margin: 10px auto 10px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0px 0px 1px rgb(0 0 0 / 6%);
}

.psb-left {
    position: relative;
}

.psb-right .psbl-heading,
.psb-left .psbl-heading {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-3);

}

.psb-left .psbl-percentage {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--color-3);

    position: absolute;
    right: 0;
    top: 3px;
}

.psb-left .psbl-per-bar {
    width: 100%;
    height: 10px;
    background-color: #e7e7e7;
    border-radius: 50px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.psb-left .psbl-per-bar .psblpb-inner {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--color-2) 0%, var(--color-1) 100%);
    transition: all 0.3s linear;
}

.psb-left .psbl-desc {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    border-radius: 5px;
    padding: 6px;
    color: white;
    background: var(--color-2);
}

.psb-right .psbl-account-progress {
    display: block;
    border: 1px solid #dedede;
    padding: 12px 10px;
    border-radius: 5px;
    margin-top: 10px;
    color: var(--color-3);
    transition: all 0.3s ease-in-out;
}

.psb-right .psbl-account-progress div {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;

}

.psb-right .psbl-account-progress div img {
    width: 30px;
    margin-right: 5px;
}

.psb-right .psbl-account-progress:hover {
    color: #295ea2;
    border-color: #295ea2;
    background-color: #295da212;
    box-shadow: 0 0 5px 0 #00000014;
}

/* --- video popup design --- */
#videopopup{
    backdrop-filter: blur(5px);
}

#videopopup .modal-dialog {
    max-width: 900px;
}

#videopopup .modal-content {
    background-color: transparent;
    border-radius: 0px;
    border: none;
}

.popupvideo-container {
    width: 100%;
    padding-top: 48%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background-color: #000000;
}

.popupvideo-container video,
.popupvideo-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.popupvideo-container.popupvideofitcontent video{
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (max-width:992px) {
    .popupvideo-container {
        padding-top: 56%;
    }
}

/* ---
verify-popup css
--- */
.verify-popup {
    background: linear-gradient(45deg, #f0f6fe, #faf1fa);
    background-repeat: no-repeat;
    width: 100%;
    -webkit-box-shadow: 0 0 20px #0000002e;
    box-shadow: 0 0 20px #0000002e;
    border-radius: 5px;
    position: relative;
    padding: 25px 20px 20px;
    margin: auto;
}

.verify-popup .verify-heading {
    color: #1c2b33;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    margin-bottom: 5px;
    font-family: var(--font-2);
}

.verify-popup .verify-peragraf {
    color: #1c2b33;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px;
    font-family: var(--font-2);
}

.send-otp-btn {
    position: absolute;
    right: 0px;
    top: 5px;
    /* transform: translateY(-50%); */
    border: none;
    padding: 3px 8px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 5px;
    outline: none;
    color: var(--color-1);
    letter-spacing: 0.5px;
    background: #ffffff9e;
    border: 1px solid #e2e2e2;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-2);
}

.send-otp-btn:hover {
    color: var(--white);
    background-color: var(--color-1);
    border-color: var(--color-1);
}

.signinup-group.verify-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.signinup-group.verify-group input {
    width: 50px;
    height: 50px;
    padding: 0 !important;
    text-align: center;
    font-size: 24px;
    margin: 0 5px;
}


.certi-outter>.certi-item {
    padding: 10px;
    cursor: pointer;
}

.certi-outter .certi-item .certi-name {
    font-weight: 500;
}

.certi-outter .certi-item:hover {
    -webkit-box-shadow: 0px 0px 0px 1px var(--color-1);
    box-shadow: 0px 0px 0px 1px var(--color-1);
    background-color: #295ea208;
}


.review-popup {
    background: linear-gradient(45deg, #f0f6fe, #faf1fa);
    background-repeat: no-repeat;
    width: 100%;
    -webkit-box-shadow: 0 0 20px #0000002e;
    box-shadow: 0 0 20px #0000002e;
    border-radius: 5px;
    position: relative;
    padding: 25px 20px 20px;
    margin: auto;
}

.review-popup .review-heading {
    color: #1c2b33;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    margin-bottom: 5px;
    font-family: var(--font-2);
}

.review-popup .review-peragraf {
    color: #1c2b33;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px;
    font-family: var(--font-2);
}

.rating-group-name {
    margin: 0;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #212121;
}

.add-reviews-btn {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 3px 8px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    outline: none;
    color: var(--color-4);
    letter-spacing: 0.5px;
    background: #f5f5f5;
    border: 1px solid #e2e2e2;
    transition: all 0.3s ease-in-out;
    font-family: var(--font-2);
    cursor: pointer;
}

.add-reviews-btn:hover {
    color: var(--white);
    background-color: var(--color-1);
    border-color: var(--color-1);
}

/* ----------------------------
    Start Rating css
---------------------------- */
.rating-group-name {
    margin: 0;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #212121;
}

.rating-group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 0 0px 0;
}

.rating__icon {
    pointer-events: none;
}

.rating__input {
    position: absolute !important;
    left: -9999px !important;
}

.rating__input--none {
    display: none;
}

.rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    margin: 0;
    font-size: 18px;
}

.rating__icon--star {
    color: orange;
}

.rating__input:checked~.rating__label .rating__icon--star {
    color: #cacaca;
}

.rating-group:hover .rating__label .rating__icon--star {
    color: orange;
}

.rating__input:hover~.rating__label .rating__icon--star {
    color: #cacaca;
}


.tci-main-bx .trainner-content-item.vsdgrbdrhtb {
    border: none;
    padding: 0;
    background-color: none;
}

.cidyuagfrs {
    height: 81px;
    overflow: hidden;
    white-space: wrap;
}

option {
    white-space: wrap !important;
}

.price-rate {
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
    color: black;
    line-height: 22px;
    text-align: center;
}



.to-posted-item{
    background-color: #fcfcfc;
    border: 1px solid #e9e9e9;
    margin-top: 15px;
    padding: 15px;
    position: relative;
    /* -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05); */
    /* box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05); */
    border-radius: 16px;
    margin-bottom: 25px;
}

.usertpi{
    background-color: white;
    -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 0;
}

.userdisable{
    pointer-events: none;
}

.to-posted-item .tpi-name{
    color: black;
    display: block;
    font-size: 16px;
    font-family: var(--font-2);
    font-weight: 500;
    padding-right: 120px;
}

.to-posted-item .tpi-frees{
    display: flex;
    /* align-items: center; */
    margin: 10px 0;
}

.to-posted-item .tpi-frees svg{
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    margin-right: 10px;
    fill: #295ea2 !important;
    object-fit: contain;
    object-position: center;
}

.to-posted-item .tpi-frees .tf-isonoff{
    color: #295ea2;
    display: block;
    font-size: 14px;
    font-family: var(--font-2);
    font-weight: 600;
    margin-bottom: 3px;
}

.to-posted-item .tpi-frees .tf-price{
    color: black;
    display: block;
    font-size: 16px;
    font-family: var(--font-2);
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.to-posted-item .tpi-frees .tf-price span{
    color: #777777;
    display: block;
    font-size: 13px;
    font-family: var(--font-2);
    font-weight: 600;
    margin-top: 5px;
}


.to-posted-item .tpi-details{
    margin-top: 20px;
}

.atpi-details-gap{
    row-gap: 15px;
}

.atpi-details .atd-headeing,
.to-posted-item .tpi-details .td-headeing{
    color: #295ea2;
    display: block;
    font-size: 14px;
    font-family: var(--font-2);
    font-weight: 600;
    margin-bottom: 3px;
}

.atpi-details .atd-text,
.to-posted-item .tpi-details .td-text{
    color: #000000;
    font-size: 14px;
    margin-top: 0px;
}

.to-posted-item .tpi-details .td-tag-bx{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
}

.to-posted-item .tpi-details .td-tag-bx div{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    color: black;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-2);
    background-color: white;
    border: 1px solid rgb(0 0 0 / 6%);
    padding: 2px 8px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.to-posted-item .tpi-vfd-btn{
    font-size: 14px;
    color: #295ea2;
    font-weight: 600;
    font-family: var(--font-2);
    margin-top: 10px;
    width: fit-content;
    padding: 2px 12px 3px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: #295ea238;
    border-radius: 50px;
}

.to-posted-item .tpi-vfd-btn.active,
.to-posted-item .tpi-vfd-btn:hover{
    color: white;
    background-color: #295ea2;
}

.to-posted-item .tpi-vfd-btn .fa{
    font-size: 20px;
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.to-posted-item .tpi-vfd-btn.tvbtvb-closed{
    background-color: #ffd6d6;
    color: red;
    z-index: 1;
}

.tpi-all-details{
    height: 100px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.tpi-all-details::after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: linear-gradient(0deg, #ffffff, #ffffff00);
}

.tpi-bottom-btns{
    display: flex;
    align-items: center;
    justify-content: end;
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1px dashed lightgray;
}

.tpi-bottom-btns .tbb-btn{
    display: flex;
    align-items: center;
    border: 1px solid lightgray;
    background-color: #ffffff;
    padding: 4px 10px;
    border-radius: 5px;
    margin: 0 0 0 5px;
    font-size: 15px;
    color: #80868b;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.tpi-bottom-btns .tbb-btn .fa{
    margin-right: 5px;
}

.tpi-bottom-btns .tbb-btn.edit-btn:hover{
    color: #4CAF50;
    border-color: #4CAF50;
    background-color: #4caf500d;
}

.tpi-bottom-btns .tbb-btn.delete-btn:hover{
    color: #d21813;
    border-color: #d21813;
    background: #fef8f8;
}


.tpi-main-headeing .tmh-lable{
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: #295ea2;
    padding: 8px 0px 7px;
}

.tpi-pth{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tpi-pth .tpipth-post{
    display: flex;
    align-items: center;
    border: 1px solid #295ea2;
    background-color: white;
    padding: 4px 10px;
    border-radius: 5px;
    margin: 0 0 0 5px;
    font-size: 15px;
    color: #295ea2;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease-in;
    white-space: nowrap;
}

.tpi-pth .tpipth-post:hover{
    border: 1px solid #295ea2;
    background-color: #295ea2;
    color: white;
}

.tpi-pth .tpipth-post .fa{
    margin-right: 5px;
}


.tpi-details-play-btn{
    color: black;
    font-size: 14px;
    font-family: var(--font-2);
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 10px 0px;
    width: fit-content;
    border: 1px solid rgb(0 0 0 / 6%);
    padding: 10px;
    border-radius: 10px;
    background-color: #fbfbfb;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.tpi-details-play-btn .video-play-btn::before,
.tpi-details-play-btn .video-play-btn::after{
    content: none;
}

.tpi-details-play-btn .video-play-btn{
    position: relative;
    left: initial;
    top: initial;
    transform: inherit;
    font-size: 16px;
    width: 45px;
    height: 45px;
}

.tpi-details-play-btn .video-play-btn .fa{
    position: relative;
    left: 2px;
    top: -1px;
}


.tpi-details-document{
    color: black;
    font-size: 14px;
    font-family: var(--font-2);
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 10px 0px;
    width: fit-content;
    border: 1px solid rgb(0 0 0 / 6%);
    padding: 10px;
    border-radius: 10px;
    background-color: #fbfbfb;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.tpi-details-document .tpi-dd-left{
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-family: var(--font-2);
    font-weight: 600;
}

.tpi-details-document .tpi-dd-left img{
    width: 45px;
    height: 45px;
    border-radius: 5px;
}

.tpi-details-document .tpi-dd-download{
    background: transparent;
    display: flex;
    gap: 5px;
    border: 1px solid #b00000;
    color: #b00000;
    justify-content: center;
    align-items: center;
    width: 10px;
    display: flex;
    width: 100%;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 14px;
    margin-left: 15px;
    transition: 0.3s ease;
}

.tpi-details-document .tpi-dd-download:hover{
    background: #b00000;
    color: white;
}



.usertpi-bottom-btn{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
    gap: 5px;
}

.usertpi-bottom-btn .tpi-apply-btn{
    color: white;
    background-image: linear-gradient(90deg, var(--color-2) 0%, var(--color-1) 100%);
    background-size: 200%;
    background-position: left center;
    padding: 5px 12px;
    border-radius: 5px;
    font-family: var(--font-2);
    font-weight: 600;
    transition: background-position 0.3s ease;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
}

.usertpi-bottom-btn .tpi-apply-btn:hover{
    background-position:right center;
}

.usertpi-bottom-btn .tpi-apply-btn:active{
    transform: scale(0.95);
}

.usertpi-bottom-btn .tpi-apply-btn.tpi-applied{
    background-image: linear-gradient(90deg, #8BC34A 0%, #28a745 100%);
}


#usertpi-popup .usertpi{
    margin: 0;
    border: none;
    box-shadow: none;
}

#usertpi-popup .usertpi .usertpi-bottom-btn .tpi-apply-btn{
    position: inherit;
    top: inherit;
    right: inherit;
}

/* ---
User Dash Media css
--- */
@media screen and (max-width:450px) {
    .training-areas-popup .trarpo-heading {
        text-align: left;
        margin-top: -12px;

    }
}

@media screen and (max-width:420px) {
    .courses-item-outter {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .training-areas-popup .trarpo-heading {
        margin-bottom: 0px;
        font-size: 16px;
    }
}

@media screen and (max-width:380px) {
    .training-areas-popup .trarpo-heading {
        font-size: 14px;
        margin-top: -10px;

    }
}

@media screen and (max-width:420px) {
    /* .signinup-group.verify-group input {
        width: 40px;
        height: 40px;
        font-size: 18px;
    } */

    .profile-menu .profile-link {
        padding: 15px 10px;
    }

    .search-icon-bx {
        display: none !important;
    }
}

@media screen and (max-width:992px) {
    .dash-bx {
        flex-direction: column;
    }

    .dash-bx .dash-left {
        width: 100%;
        height: auto;
        flex: none;
        box-shadow: 0 0px 0px 2px rgb(0 0 0 / 6%);
        z-index: 2;
        background-color: white;
        min-height: auto;
    }
    .profile-sticky-btn{
        box-shadow: 0 0 26px -13px #00000052;
    }

    .dash-left .trainer-pic-bx {
        display: none;
    }

    .dash-left .profile-menu {
        padding: 0;
        white-space: nowrap;
        overflow-x: overlay;
        display: flex;
    }

    .dash-left .profile-menu::-webkit-scrollbar {
        display: none;
    }

    .profile-menu .profile-link {
        display: inline-block;
        margin-bottom: 0;
        padding: 15px 15px;
        letter-spacing: 0;
    }

    .profile-menu .profile-link::after {
        width: 100%;
        height: 3px;
        top: inherit;
        bottom: 0px;
    }

    .profile-menu .profile-link.active {
        background: linear-gradient(0deg, #295ea20a, transparent);
    }

    .add-reviews-btn {
        right: 10px;
    }

    /* .progressbar-sticky-div.active {
        top: 192px;
    } */

}


@media screen and (max-width:576px) {
    .profile-group textarea {
        resize: none;
        overflow: hidden;
        min-height: 84px;
    }


    .to-posted-item .tpi-name{
        padding-right: 0;
    }

    .usertpi-bottom-btn {
        position: relative;
        flex-direction: column;
        align-items: end;
    }

    .usertpi-bottom-btn .tpi-apply-btn{
        left: 0px;
        right: inherit;
        top: inherit;
        bottom: 15px;
        padding: 5px 13px;
        font-size: 16px;
    }

    /* .tpi-all-details{
        margin-bottom: 30px;
    } */
}


/* sitemap css  */
.sitemaplinks-bx {
    border: 1px solid #0000002e;
    padding: 15px 15px 15px 15px;
    position: relative;
    border-radius: 5px;
    margin-bottom: 40px;
    box-shadow: rgb(33 35 38 / 10%) 0px 10px 10px -10px;
}

.sitemap-heding {
    position: absolute;
    top: -18px;
    background: #fcfcfc;
    padding: 5px 10px;
    color: #295ea2;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    left: 10px;
}

.sitemap-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-ul li {
    display: inline-block;
    margin: 8px 0;
    padding: 0px 10px;
    border-right: 1px solid lightgray;
}

.sitemap-ul li:last-child {
    border-right: transparent;
}

.sitemap-ul li a {
    text-decoration: none;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    height: 24px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    color: #525252;
}

.csh {
    color: #333333;
}

.csh:hover,
.sitemap-ul li a:hover {
    color: #295ea2;
    text-decoration: none;
}

.sitecate {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #295ea2;
    margin-right: 20px;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
}

/* .sitecate::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 5rem;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease-in-out;
    border-radius: 25px;
} */

@media (max-width:576px) {
    .sitemap-ul li a {
        font-size: 14px;
    }
}

@media (max-width:420px) {
    .sitemap-ul li a {
        font-size: 12px;
    }

    .sitemaplinks-bx {
        padding: 10px 0;
    }

    .sitemap-ul li {
        margin: 5px 0;
    }

    .sitemap-heding {
        padding-left: 5px;
    }
}


.lsb-loader-btn{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 25px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--white);
    font-size: 16px;
    margin: 15px auto;
    position: relative;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: var(--color-1);
    transition: opacity 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease;
    max-width: fit-content;
    width: 100%;
    letter-spacing: 0.5px;
}


/* --- lsb loader btn --- */
.lsb-loader-btn img{
    pointer-events: none;
    width: 20px;
    height: 20px;
    margin-right: 7px;
    position: relative;
    margin-right: 8px;
    -webkit-animation: rotation-btn 1s infinite linear;
       -moz-animation: rotation-btn 1s infinite linear;
         -o-animation: rotation-btn 1s infinite linear;
            animation: rotation-btn 1s infinite linear;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@-webkit-keyframes rotation-btn {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@-moz-keyframes rotation-btn {
    from {
        -moz-transform: rotate(0deg);
             transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
             transform: rotate(360deg);
    }
}

@-o-keyframes rotation-btn {
    from {
        -o-transform: rotate(0deg);
           transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(360deg);
           transform: rotate(360deg);
    }
}

@keyframes rotation-btn {
    from {
        -webkit-transform: rotate(0deg);
           -moz-transform: rotate(0deg);
             -o-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
           -moz-transform: rotate(360deg);
             -o-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}





/* --- Lagal pages css start --- */
.legal-content .main-lable {
    font-weight: 600;
    margin-top: 30px;
    color: #000;
    font-size: 20px;
    text-transform: capitalize;
}

.legal-content .main-sub-lable {
    margin-top: 30px;
    font-weight: 600;
    color: #000;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 0px;
}

.legal-content ul li,
.legal-content p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    margin-top: 10px;
    color: #525252;
    font-weight: 500;
    text-align: justify;
}

.legal-content ul {
    list-style: decimal;
    padding: 0 0 0 10px;
    margin-left: 20px;
    margin-top: 10px;
}

.legal-content ul.ul-dick {
    list-style: disc;
}

.legal-content ul.ul-alpha {
    list-style: lower-alpha;
}

.legal-content ul.ul-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.legal-content ul.ul-flex li {
    width: 25%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-right: 30px;
    text-align: left;
}

@media screen and (max-width:992px) {
    .legal-content ul.ul-flex li {
        width: 33.33%;
    }
}

@media screen and (max-width:768px) {
    .legal-content ul.ul-flex li {
        width: 50%;
    }
}

@media screen and (max-width:450px) {
    .legal-content ul.ul-flex li {
        width: 100%;
        padding-right: 0px;
    }
}


.legal-content ul li a,
.legal-content p a {
    text-decoration: underline;
    color: var(--color-1);
}

.legal-content ul a:hover,
.legal-content p a:hover {
    color: var(--color-2);
}

.legal-content ul strong,
.legal-content p strong {
    color: #000;
}



/* --- Step design start --- */
.step-main-outer{
    position: relative;
    z-index: 1;
}

.step-main-bx{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.step-main-bx .smb-item{
    position: relative;
    flex: 0 1 20%;
    padding: 10px 4%;
    margin: 15px 0;
}

#step-slider .smb-item{
    padding: 10px 45px;
    min-height: 88px;
}

#step-slider.owl-carousel.owl-style{
    padding: 0;
}

#step-slider .smb-item img,
.step-main-bx .smb-item img{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

#step-slider .smb-item .smb-i-inner,
.step-main-bx .smb-item .smb-i-inner{
    position: relative;
    z-index: 1;
}

#step-slider .smb-item .smb-i-inner .smb-num,
#step-slider .smb-item .smb-i-inner .smb-data,
.step-main-bx .smb-item .smb-i-inner .smb-data,
.step-main-bx .smb-item .smb-i-inner .smb-num{
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-align: center;
}

#step-slider .smb-item .smb-i-inner .smb-num,
.step-main-bx .smb-item .smb-i-inner .smb-num{
    margin-bottom: 5px;
}

.popup-step-main-bx.step-main-bx .smb-item{
    flex: 0 1 50%;
    padding: 10px 40px;
}

@media screen and (max-width:1180px) {

    .step-main-bx:not(.popup-step-main-bx){
        display: block;
        white-space: nowrap;
        justify-content: inherit;
        align-items: inherit;
        flex-wrap: inherit;
        overflow: hidden;
        overflow: auto;
    }

    .step-main-bx:not(.popup-step-main-bx) .smb-item{
        position: relative;
        flex: 0 1 230px;
        width: 230px;
        display: inline-block;
    }
}

@media screen and (max-width: 576px) {

    #step-slider .smb-item .smb-i-inner .smb-num,
    #step-slider .smb-item .smb-i-inner .smb-data{
        font-size: 12px;
    }

    .popup-step-main-bx.step-main-bx .smb-item{
        flex: 0 1 100%;
        padding: 10px 40px;
        margin: 8px 0;
    }
}
/* --- Step design end --- */


.somefaq-btn{
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 3px;
    background-color: #f7f7f7;
    border-radius: 50%;
}

.somefaq-btn:hover{
    background-color: #f7f7f7;
}

.somefaq-btn img{
    width: 100%;
    height: 100%;
    animation: aedgsrh 5s infinite;
}

@keyframes aedgsrh {
    100% {transform: rotateY(360deg);}
}


/*  */
.serachclientslogo{
    display: flex;
    position: sticky;
    top: 45px;
    background: white;
    padding: 13px 0px 13px;
    z-index: 1;
    border-bottom: 1px solid #e9e9e9;
    gap: 10px;
}

.serachclientslogo .profile-group{
    width: 100%;
}

.serachclientslogo .profile-save-btn{
    margin: 0;
}

.serachclientslogo .profile-save-btn svg{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}