body {
    overflow-x: hidden;
}

:root {
    --profile-card-color: #f6f8fa;
    --profile-card-text-color: black;
    --font-size: 16px;
}

.profile__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    padding-bottom: 6rem;
}

.profile__container.loggedIn {
    margin-top: 5rem
}

.profile__card {
    border-radius: 20px;
    width: 92vw;
    color: var(--profile-card-text-color);
    min-height: 30rem;
    background-color: var(--profile-card-color);
    overflow: hidden;
}

.profile__card.main {
    background-color: #e8f2ff;
    margin-top: 105px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 2.2rem;
    position: relative;
}

.profile__card.main .profilePic {
    border-radius: 50%;
    border: 4px solid white;
    width: 210px;
    height: 210px;
    margin-top: -105px;
    box-shadow: 0 3px 31px 0 rgba(0, 0, 0, 0.21);
    margin-bottom: 10px;
    object-fit: cover;
}

.profile__card.main .details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    align-items: center;
}

.profile__card.main .details .fullName {
    font-size: 30px;
    font-weight: 700;
    color: #000 !important;
}

.profile__card.main .details .studyField {
    font-size: 18px;
    font-weight: 700;
    color: #555 !important;
}

.profile__card.main .details .priceBadge {
    border-radius: 11px;
    background-color: #6799ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.2rem;
    margin-top: 0.8rem;
    font-weight: 600;
    color: white;
    font-size: 16px;
}

.profile__card.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.7rem;
    padding: 3rem 0 2.5rem 0;
    min-height: unset;
}

.profile__card.contact h3.keySentence {
    font-size: 20px;
    font-weight: 600;
    width: 77%;
    text-align: center;
    text-align-last: center;
    max-width: 77%;
    text-wrap: wrap;
    word-wrap: break-word;
}

.profile__card.contact .contactButtons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.editCard__minLabel {
    font-size: 12px;
    color: #707070;
    font-weight: 300
}


.profile__card.contact .contactButtons .sendWhatsappTeacher {
    width: 77%;
    display: flex;
    background: #25d366;
    border-radius: 30px;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    padding-right: 30%;
    justify-content: center;
    align-items: center;
    padding: 1.8rem 19% 1.8rem 0;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transform: translateY(0);
    margin-bottom: 2rem;
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

@keyframes wave {
    from {
        background-position-y: 0%;
    }

    to {
        background-position-y: -100%;
    }
}

.profile__card.contact .contactButtons .sendWhatsappTeacher span.whatsIcon {
    width: 30%;
    aspect-ratio: 97 / 252;
    height: auto;
    position: absolute;
    right: -2px;
    top: 0;
    background-image: url(../../assets/newDesign/searchpage/waveAnimation.svg);
    background-size: 100% auto;
    background-position: right top;
    background-repeat: repeat-y;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    translate: 0;
    animation: wave 2s linear infinite;
}

.profile__card.contact .contactButtons .sendWhatsappTeacher.openDialerBtn {
    background: #548CFF !important;
}

.profile__card.contact .contactButtons .sendWhatsappTeacher.openDialerBtn span.whatsIcon {
    filter: hue-rotate(46deg);
}

.profile__card.contact .contactButtons .sendWhatsappTeacher span.whatsIcon2 {
    width: 41%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    font-size: 2.4rem;
}

.profile__card.description {
    padding: 2.5rem 0;
    min-height: unset;

}

.profile__card.description h3.description__title {
    font-size: 22px;
    font-weight: bold;
    padding: 0 2.5rem;
    margin: 0 0 0.7rem 0;
}

.profile__card.description p.description__content {
    font-size: 16px;
    padding: 0 2.5rem;
    height: fit-content;
    color: #000;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.profile__card.description hr.description__boundary {
    margin: 2rem 0;
    background-color: #979797;
    opacity: 0.2;
}

.profile__card.description .description__labels {
    padding: 0 2.3rem 0 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.9rem;
}

.profile__label {
    border-radius: 5px;
    background-color: #e8f2ff;
    padding: 0.7rem 1rem;
    color: #548cff;
    font-weight: 600;
    font-size: 14px;
    width: max-content;

}

.grayTexture .profile__label {
    background-color: #f6f8fa;
    color: black;
}

@keyframes infiniteScroll {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(var(--scroll-dist, calc(50% + 0.5rem)));
    }
}

.profile__labelset {
    display: flex;
    align-items: center;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: fit-content;
    gap: 1rem;

    ::-webkit-scrollbar {
        display: none;
    }
}


.labelset__container {
    width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;

}

.labelset__container::-webkit-scrollbar {
    display: none;
}

.profile__label.duplication {
    display: none;
}

.profile__card.counter {
    height: 3cm;
    display: flex;
    justify-content: center;
    overflow: hidden;
    min-height: unset;
    cursor: pointer;
    user-select: none;
}

.profile__card.counter .counter__label {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.profile__card.counter .counter__label.students__counter {
    transform: translateX(0.3cm);
}

.profile__card.counter .counter__label b.label__title {
    font-weight: 600;
    font-size: 18px;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.profile__card.counter .counter__label h3.label__content {
    font-weight: 700;
    font-size: 30px;
    margin: 0 !important;
    line-height: 1 !important;
}

.profile__card.counter .counter__label b.label__title.reviewsBadge {
    border-radius: 15.5px;
    border: solid 1px #feb701;
    padding: 0.4rem 1.8rem;
    background-color: #fffbe0;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.08cm;
    justify-content: center;
}


.profile__card.counter .counter__illustration {
    background-size: contain;
    background-repeat: no-repeat;
    width: 50%;
}

.profile__card.counter .counter__illustration.students__counter {
    background-image: url(../profileIcons/learnedSvg.svg);
    height: 105px;
    width: 190px;
    transform: translate(-0.4cm, 0.3cm);
    margin-right: -6rem;
}

.profile__card.counter .counter__illustration.reviews__counter {
    background-image: url(../profileIcons/illu2.svg);
    height: 80%;
    transform: translate(10px, 0.6cm);
}

.profile__card.bonus {
    min-height: 3.6cm;
    display: flex;
    flex-direction: column;
    padding: 1.8rem 0 0rem 0;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.profile__card.bonus h3.bonus__title {
    font-size: 22px;
    font-weight: bold;
    padding: 0 2.5rem;
}

.profile__card.bonus .bonus__container {
    display: flex;
    flex-direction: column;
    padding: 0 2.5rem;
}

.profile__card.bonus .bonus__row,
.profile__card.bonus h4.bonus__row {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: -1.2rem;
}

.bonus__row:first-of-type {
    width: 75%;
}

.profile__card.bonus .bonus__row::before,
.profile__card.bonus h4.bonus__row::before {
    font-size: 40px;
    font-weight: bold;
    color: #ffb7d5;
    content: "*";
    transform: translateY(10%);
}

.profile__card.bonus hr.bonus__boundary {
    background-color: #97979740;
    opacity: 0.2;
    height: 1px;
    width: 100%;
}

.profile__card.bonus .bonus__illustration {
    position: absolute;
    top: 5%;
    left: 2%;
    background-image: url(../profileIcons/illu6.svg);
    width: 43vw;
    height: 22vw;
    background-size: contain;
    background-repeat: no-repeat;
}

.profile__card.price__comments {
    min-height: 1.7cm;
    position: relative;
    padding: 1.5rem 3.5rem;
    display: flex;
    align-items: center;

}

.profile__card.price__comments p.price__comment {
    font-weight: 600;
    font-size: 16px;
    text-align: justify;
    color: #000;
    line-height: 1.3;
}

.profile__card.price__comments span.comment__icon {
    font-size: 50px;
    font-weight: bold;
    color: #ffb7d5;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(0px, -30%);
}

.taarif__container {
    width: 92vw;
    display: flex;
    justify-content: space-between;
    gap: 1rem;

}

.profile__card.taarif {
    flex: 1;
    height: 4.5cm;
    min-height: unset;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.2rem 0;
    gap: 0.5rem;
    position: relative;
}

.profile__card.taarif .taarif__title {
    color: #303030;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
}

.profile__card.taarif .taarif__content {
    color: #242323;
    font-size: 16px;
    font-weight: 600;
}

.profile__card.taarif .taarif__content::before {
    content: "₪"
}

.profile__card.taarif .taarif__content.disabled::before {
    content: none;
}

.profile__card.taarif .taarif__illustration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-40%, 0);
    width: 100%;
    height: 40%;
    background-repeat: no-repeat;
    background-size: contain;
}

.profile__card.taarif .taarif__illustration.online__illustration {
    background-image: url(../profileIcons/illu5.svg);
}

.profile__card.taarif .taarif__illustration.teacher__illustration {
    background-image: url(../profileIcons/illu4.svg);
    transform: translate(-25%, 10%);
}

.profile__card.taarif .taarif__illustration.student__illustration {
    background-image: url(../profileIcons/illu7.svg);
    transform: translate(-35%, -1%);
}

.profile__card.improveProfile {
    background: #e8f2ff;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 0.5rem;
    overflow: hidden;
}

.improveProfile__title {
    font-size: 20px;
    font-weight: 700;
    padding: 1.3rem 2rem;
}

.improveProfile__content {
    width: 100%;

}

.profile__card.editProfile {
    min-height: 83px;
    background: #fdcb3d;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.editProfile__btn {
    width: 165px;
    height: 45px;
    border-radius: 22.5px;
    background-color: #242323;
    color: white;
    font-size: 16px;
    font-weight: 600;
    z-index: 10;
    position: relative;
}

.editProfile__illustration {
    position: absolute;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.editProfile__illustration.illu1 {
    right: 5px;
    background-image: url(../profileIcons/Vase.svg);
    height: 88px;
    width: 48px;
}

.editProfile__illustration.illu2 {
    right: 50px;
    background-image: url(../profileIcons/lamp.png);
    width: 220.4px;
    height: 90px;
}

.editProfile__illustration.illu3 {
    left: 15px;
    background-image: url(../profileIcons/Dog.svg);
    width: 94.4px;
    height: 65px;
}

.profile__card.tryKidum {
    min-height: 112px;
    background: #fdcb3d;
    display: flex;
    justify-content: center;
    position: relative;
    padding-right: 2rem;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}

.tryKidum__btn {
    width: 234px;
    height: 45px;
    border-radius: 22.5px;
    background-color: #242323;
    color: white;
    font-size: 16px;
    font-weight: 600;
    z-index: 10;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tryKidum__label {
    font-size: 19.5px;
    width: 234px;
    text-align: center;
}

.tryKidum__illustration {
    position: absolute;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.tryKidum__illustration.illu1 {
    width: 220px;
    height: 112px;
    left: 15px;
    background-image: url(../profileIcons/continue_light.png);
}

.tryKidum__illustration.illu2 {
    width: 300px;
    height: 274px;
    left: -10%;
    bottom: -140%;
    background-image: url(../profileIcons/50x_sign.svg);
}

.screenshotContainer {
    margin-left: 2rem;
}


@media screen and (max-width: 400px) {
    .tryKidum__illustration.illu2 {
        width: 100%;
        height: 210px;
        left: -8%;
        bottom: -90%;
    }

    .tryKidum__btn {
        width: 215px;
        height: 40px;
        border-radius: 22.5px;
        background-color: #242323;
        color: white;
        font-size: 14px;
        font-weight: 600;
        z-index: 10;
    }

    .tryKidum__label {
        font-size: 18px;
        width: 215px;
    }

    .tryKidum__illustration.illu1 {
        width: 200px;
        height: 112px;
        left: -12px;
    }

    .editProfile__btn {
        width: 145px;
        height: 40px;
        border-radius: 22.5px;
        background-color: #242323;
        color: white;
        font-size: 14px;
        font-weight: 600;
        z-index: 10;
    }
}

@media screen and (max-width: 370px) {
    .tryKidum__illustration.illu2 {
        width: 100%;
        height: 200px;
        left: -10%;
        bottom: -90%;
    }

    .profile__card.tryKidum {
        min-height: 108px;
    }
}

.improveProfile__label {
    font-size: 16px;
    color: #548cff;
    width: 73%;
    padding: 1.3rem 2rem;
    border-top: solid 1px rgba(84, 140, 255, 0.31);
}

.improveProfile__value {
    text-align: center;
    border-right: solid 1px rgba(84, 140, 255, 0.31);
    border-top: solid 1px rgba(84, 140, 255, 0.31);
    padding: 1.1rem;
    display: flex;
    justify-content: center;
}

.improveProfile__row:last-child .improveProfile__label {
    border-bottom-right-radius: 20px;
}

.improveProfile__row:last-child .improveProfile__value {
    border-bottom-left-radius: 20px;
}

.improveProfile__badge {
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.09);
    border: solid 1px #fff;
    width: 27px;
    height: 27px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.improveProfile__badge--v {
    font-size: 13px;
    background-color: #7be382;
}

.improveProfile__btn {
    border-radius: 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #548cff 0%, #4075e6 100%);
    box-shadow: 0 4px 10px rgba(84, 140, 255, 0.3);
    cursor: pointer;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    height: 32px;
    padding: 0 14px;
    width: auto;
    min-width: 85px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.improveProfile__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(84, 140, 255, 0.45);
    background: linear-gradient(135deg, #6497ff 0%, #4a82f3 100%);
}

.improveProfile__btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(84, 140, 255, 0.3);
}

.improveProfile__btn i {
    font-size: 13px;
}

.improveProfile__shareBadge {
    height: 15px;
    width: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../profileIcons/Share.svg);
    filter: brightness(0) invert(1);
}

.modal__icon {
    filter: invert(80%) hue-rotate(180deg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 8.4rem;
    height: 3.4rem;
}

.profile__reviews {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
    width: 100vw;
}

.profile__reviews__header {
    display: flex;
    gap: 0.8rem;
    padding: 0 2.5rem;
    align-items: center;
}

.profile__reviews__title {
    font-size: 20px;
    font-weight: bold;
}

.profile__reviews__counter {
    font-size: 13px;
    color: #a6a6a6;
    font-weight: 600;
}

.profile__reviews__content,
.profile__reviews__images {
    display: flex;
    width: 100vw;
    padding-right: 2.5rem;
    padding-left: 1rem;
    overflow-x: scroll;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;

    ::-webkit-scrollbar {
        display: none;
    }
}

.profile__reviews__images {
    height: 415px;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.4rem 2rem;
}



.profile__reviews__images::-webkit-scrollbar {
    display: none;
}

.profile__reviews__image {
    height: 387px;
    width: 222px;
    min-width: 222px;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    background: #E8F2FF;

}

.profile__reviews__image2 {
    height: 183px;
    width: 222px;
    min-width: 222px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: blue;
    border-radius: 22px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);

}

.profile__reviews__arrows {
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 8rem;
}


.profile__reviews__arrow {
    font-size: 20px;
    border: solid 1px #ddd;
    border-radius: 50px;
    width: 28px;
    height: 28px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9f9f9f;
    cursor: pointer;
    background-color: white;
    background-size: 7px;
    background-position: center;
    background-repeat: no-repeat;

}

.rating__arrow-right {
    background-image: url(../profileIcons/rating_arrow.svg);
}

.rating__arrow-left {
    background-image: url(../profileIcons/rating_arrow-left.svg);
}

.profile__reviews__bottom {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 1.6rem;

}

.profile__reviews__addReviewBtn {
    border-radius: 22.5px;
    background-color: #fdcb3d;
    font-size: 16px;
    font-weight: 600;
    padding: 1.3rem 3.5rem;
    height: fit-content;
    color: #000 !important;
}

.profile__reviews__svg {
    position: absolute;
    bottom: -0.127rem;
    right: -2.5rem;
    background-image: url(../profileIcons/illu2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 192.6px;
    height: 115.65px;
}

.reviewCard {
    border-radius: 22px;
    border: solid 1px #d9d9d9;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    height: 6cm;
    min-width: 76vw;
    margin-left: 2rem;
    width: 76vw;
    position: relative;
}

.profile__reviews__images::after {
    content: "";
    width: 0.1rem;
    height: 100%;
}

.screenshotContainer:nth-of-type(1)::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
}

.profile__reviews__images {
    position: relative;
}

.profile__recommendations__content:last-child {
    position: relative;
}

.profile__recommendations__content::after {
    content: "";
    width: 20rem;
    min-width: 0.5rem;
    height: 10rem;
}

.reviewCard:last-of-type {
    margin-left: 0;
}

.reviewCard::after {
    content: "";
    position: absolute;
    width: 20rem;
    height: 100%;
    background: transparent;
    top: 0;
    left: -7%;
}

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

}

.reviewCard__header__contact {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.reviewCard___contact__profilePic {
    background-color: #fdcb3d;
    font-weight: 600;
    font-size: 18px;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.reviewCard___contact__name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.starIcon {
    background-image: url(../profileIcons/RatingStar.png);
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
}

.reviewCard__score {
    border-radius: 15.5px;
    padding: 0.4rem 1.2rem;
    background-color: #fffbe0;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.08cm;
    justify-content: center;
}

.reviewCard__content {
    font-size: 16px;
    overflow-y: scroll;
    text-align: justify;
    color: #000;
    line-height: 1.3;
}




.profile__recommendations {
    display: flex;
    flex-direction: column;
    padding: 3rem 0 0 0;
    width: 100vw;
    gap: 2rem;
    background-color: transparent;
    margin-top: -2rem;
}

.profile__recommendations__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
}

.profile__recommendations__title {
    font-size: 20px;
    font-weight: bold;
}

.profile__recommendations__content {
    display: flex;
    width: 100vw;
    padding-right: 2.5rem;
    overflow-x: scroll;
    overflow-y: visible;
    padding-bottom: 0;
}

.profile__recommendations__content::-webkit-scrollbar,
.profile__reviews__content::-webkit-scrollbar {
    display: none;
}


.profile__recommendations__arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 8rem;
}

.profile__recommendations__arrow {
    font-size: 20px;
    border: solid 1px #ddd;
    border-radius: 50px;
    width: 28px;
    height: 28px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9f9f9f;
    cursor: pointer;
    background-color: white;
    background-size: 7px;
    background-position: center;
    background-repeat: no-repeat;
}

.recommendedCard {
    height: auto;
    min-height: 28rem;
    flex: 0 0 auto;
    overflow: visible;
    margin-left: 2rem;
    margin-top: 65px;
    width: 25.5rem;
    border-radius: 10px;
    user-select: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #f6f6f6;
    transition: transform 0.2s ease;
}

.recommendedCard:hover {
    transform: translateY(-3px);
}

.recommendedCard__top {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.recommendedCard__imgWrapper {
    width: 130px;
    height: 130px;
    min-width: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: -65px;
    z-index: 2;
    border: 6px solid #ffffff;
}

.recommendedCard__profilePic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommendedCard__topInfo {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px 15px 0;
}

.recommendedCard__education {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 8px;
    gap: 6px;
    text-align: center;
}

.recommendedCard__education .titlegraduate {
    background-image: url(../profileIcons/illu8.svg);
    width: 14px;
    height: 14px;
    min-width: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    margin-top: 2px;
}

.recommendedCard__education .titleDesc {
    font-size: 11px;
    color: #666;
    line-height: 1.2 !important;
}

.recommendedCard__priceArea {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.recommendedCard__details {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    justify-content: space-between;
}

.recommendedCard__details * {
    margin: 0;
    line-height: 1.3 !important;
}

.recommendedCard__details__name {
    font-size: 25px;
    font-weight: bold;
    color: #4b4b4b !important;
    margin-bottom: 0 !important;
    text-align: center;
}

.recommendedCard__details__profession {
    font-size: 16px;
    font-weight: normal;
    color: #4b4b4b !important;
    margin-top: 5px !important;
    margin-bottom: 0 !important;
    text-align: center;
}

.recommendedCard__details__desc {
    font-size: 13px;
    color: #555 !important;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 1.5rem !important;
    line-height: 1.5 !important;
}

.recommendedCard__details__bottom {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
}

.recommendedCard__fullProfileBtn {
    font-size: 12px;
    color: #666;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    text-underline-offset: 4px;
}
.recommendedCard__fullProfileBtn:hover {
    color: #333;
}

.recommendedCard__priceCapsule {
    background-color: #e8f2ff;
    color: #548cff;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.priceAmount {
    font-weight: 800;
    font-size: 15px;
    color: #548cff !important;
}

.priceLabel {
    font-size: 12px;
    color: #548cff !important;
}

.recommendedCard .serviceKind {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
}

.recommendedCard .wrapService {
    display: flex;
    gap: 10px;
}

.recommendedCard .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    color: #666;
}

.recommendedCard .wrapLight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.recommendedCard .light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
}

.recommendedCard .light.on {
    background-color: #25d366;
}

#lightbox {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
}

#lightboxOverlay[style*="display: none"], 
#lightbox[style*="display: none"] {
    display: none !important;
    pointer-events: none !important;
}

#lightboxOverlay:not([style*="display: block"]), 
#lightbox:not([style*="display: block"]) {
    display: none !important;
    pointer-events: none !important;
}

.lb-data .lb-number {
    padding-bottom: 0;
    padding-top: 0.5em;
    transform: translateX(30px);
    text-align: center;

}

.lb-nav {
    transform: scaleX(-1);
}

.editGoBackBtn {
    position: fixed;
    z-index: 100;
    right: 0rem;
    color: #548cff;
    border: solid 1.5px #548cff;
    /* padding: 1rem 2rem 1rem 2rem; */
    border-radius: 50px 0 0 50px;
    top: 6.2rem;
    display: flex;
    gap: 0.3rem;
    align-items: center;
    font-size: 16px;
    background: #e8f2ff;
    border-right: 0;
    font-weight: 500;
    display: none;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding-left: 0.5rem;
    padding-top: 0.1rem;
}

.editCard--err--promotion::after {
    content: "עברת את מספר התווים המקססימלי (30)"
}

.goBackBtn i {
    font-size: 12px;
}

.editCard__limit--discounts {
    font-size: 13px !important;
}

.shareBtn {
    position: absolute;
    left: 4vw;
    color: #548cff;
    border: 1.5px solid #548cff;
    border-radius: 1000px;
    top: 2rem;
    background-image: url(../profileIcons/Share.svg);
    background-repeat: no-repeat;
    background-position: 50% 45%;
    background-size: 14px;
    width: 35px;
    height: 35px;
}

.taarif__badge {
    position: absolute;
    top: 10px;
    transform: none;
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.09);
    border: solid 1px #fff;
    width: 27px;
    height: 27px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

}

.taarif__badge--v {
    font-size: 13px;
    background-color: #7be382;
}

.taarif__badge--x {
    font-size: 11px;
    background-color: #ff8f8f;
}

.goDown {
    z-index: 400 !important;
}


.mode__swapper {
    background: #e8f2ff;
    width: 100vw;
    position: absolute;
    top: 5.9rem;
    left: 0;
    padding: 1.2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #548cff;
}

.swapper__btn {
    width: 50%;
    text-align: center;

    box-sizing: border-box;
    padding: 0.4rem;
    cursor: pointer;
}

.swapper__btn:nth-child(1) {
    border-left: solid 0.7px #548cff30;
}

.swapper__btn--active {
    font-weight: 700;
}

.profile__studentsPool__content {
    border: solid 1.5px #6799ff;
    background-color: #e8f2ff;

    height: 52px;
}

.studentsPoolRef__container {
    top: 28% !important;
    width: 102px !important;
    display: none;
}

.profile__studentsPool__text {
    color: #6799ff;
}



.editProfile__header {
    display: none;
}

.editProfile__header #upperVideo {
    display: none;
}

.editProfile__header::after {
    display: none;
}

.editProfile__banner {
    position: relative;
    left: 0;
    width: 100%;
    background: url(../profileIcons/edit_profile_img.png);
    height: 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 899px) {
    .editProfile__banner {
        height: 120px;
        margin-top: 0px !important;
        width: 100vw !important;
    }
    .editProfile__container {
        margin-top: 15px !important;
    }
    .settingsSubBar, .settingsSubBarTriangle {
        display: none !important;
    }
    .page_userProfile .header:not(.headerDynamic) {
        background: #548cff !important;
    }
}

.editProfile__title {
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin: 0 !important;
}

.editProfile__shown {
    display: flex;
}

.editProfile__container {
    position: static;
    margin-top: 225px !important;
    margin-bottom: 4rem;
}

.editProfile__item,
.editProfile__hidden {
    display: none !important;
}


.editCard {
    min-height: unset;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #ff8f8f00;
    overflow: visible !important;
}

.editCard__input {
    border-radius: 21px;
    border: solid 1px #e8e8e8;
    background-color: white;
    font-size: 18px;
    padding: 0 1.5rem;
    outline: none;
    height: 42px;
    padding: 0 2rem;
}

.editCard__input--learned {
    text-align: right;
}

.editCard__submit {
    border-radius: 22.5px;
    background-color: #548cff;
    height: 45px;
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    font-size: 16px;
    color: white;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
}

.editCard__header {
    border-bottom: solid 1px #9797972e;
    padding: 1.8rem 2.4rem 1.5rem 2.4rem;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.notes__title,
.editCard__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.editCard__limit {
    font-size: 18px;
    font-weight: 500;
    color: #707070;
    float: left;
    margin-right: auto;
    margin-left: 0.5rem;
}

.editCard__limit--price {
    font-size: 14px;
}

.editCard__content {
    padding: 2.5rem 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.editCard__content form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem 1.2rem;
}

#editName {
    flex-direction: row;
    flex-wrap: wrap;
}

#editName .editCard__input {
    width: 45%;
}

.editCard__input--review {
    height: 190px;
    padding: 1.5rem 2rem;
}

.editCard__input--keySentence {
    padding: 1.5rem 2rem;
    height: 13rem;
}

.editCard__input--aboutMe {
    padding: 1.5rem 2rem;
    height: 28rem;
}

.editCard__labels {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
    max-height: 20rem;
    overflow: scroll;
}

.editCard__labels .profile__label {
    padding: 0.9rem 1.6rem;
    border-radius: 9px;

}

.editCard::after {
    min-height: unset;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    font-size: 12px;
    color: white;
    opacity: 0;
    pointer-events: none;
    padding: 0.2rem 1rem;
    font-weight: 600;
    width: max-content;
}

.editCard--err::after {
    opacity: 1;
    background-color: #ff8f8f;
}

.editCard--err {
    border: 2px solid #ff8f8f;
}

.editCard--success::after {
    opacity: 1;
    content: "השינוי נשמר בהצלחה";
    background-color: #61d780;
}

.editCard--err--phone::after {
    content: "יש להקליד מספר טלפון נייד"
}

.editCard--err--name::after {
    content: "יש להקליד שם בעברית בלבד"
}

.editCard--err--learned::after {
    content: "יש להקליד מספרים בלבד"
}

.editCard--err--keySentence::after {
    content: "עברת את מספר התווים המקסימלי (240)"
}

.editCard--err--aboutMe::after {
    content: "עברת את מספר התווים המקסימלי (3000)"
}

.editCard--err--keySentence0::after {
    content: "יש להזין תאור קצר, לא ניתן להשאיר ריק"
}

.editCard--err--aboutMe0::after {
    content: "יש להזין תאור מלא, לא ניתן להשאיר ריק"
}



.profile__label--city {
    background-color: #f6f8fa;
    color: #242323;
    border: solid 1px #979797;
    padding: 0.7rem 1.6rem;
}


.profile__checkbox {
    border-radius: 14px;
    background-color: #d1d5db;
    width: 62px;
    height: 28px;
    position: relative;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.profile__checkbox[data-checked="1"] {
    background-color: #548cff;
}

.checkbox__dot {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 55%;
    border-radius: 19px;
    background-color: #9ca3af;
    font-size: 9px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transition: left 0.3s ease;
    transform: translateY(-50%);
    font-weight: 600;
}

.checkbox__dot--active {
    left: 5%;
    background-color: #fdcb3d;
    color: black;
}

.editExperience .editCard__content {
    padding: 2rem 0;
    gap: 0
}

#editExperience .checkbox__row {
    display: flex;
    justify-content: space-between;
    padding: 0rem 2.5rem 1rem 2.5rem;
    border-bottom: solid 1px #e9e9e9;
    font-size: 16px;
    width: 100%;
    align-items: center;
}

#editExperience .checkbox__row:last-of-type {
    border-bottom: none;
}

.editCard--err--experience {
    content: "חלה בעיה בעת שמירת הנתונים"
}

#editExperience {
    gap: 0.8rem 1.2rem;
}

.editCard__profilePic {
    border-radius: 100px;
    position: absolute;
    width: 130px;
    height: 130px;
    top: 50%;
    left: 0;
    transform: translate(6vw, -50%);
    border: solid 3px #fff;
    object-fit: cover;
}

.editCard__profilePic--loading {
    border-radius: 100px;
    position: absolute;
    width: 130px;
    height: 130px;
    top: 50%;
    left: 0;
    transform: translate(6vw, -50%);
    border: solid 3px #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #548cff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}

.editCard__media--loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 104px;
    height: 104px;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #548cff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
    flex-direction: column;
    gap: 0.5em;
    color: white;
    font-weight: 600;
    z-index: 1;
}

.editCard__uploadSpinner {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

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

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

.editCard--err--profilePic::after {
    content: "ניתן להעלות תמונות בלבד"
}

.editPrice .editCard__content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem 1rem;
    font-weight: 600;
    /* align-items: center; */
    justify-content: center;
}

.editPrice__notes {
    width: 100%;
}

.notes__title {
    padding: 0 1rem;
}

.editPrice .editCard__input--notes {
    width: 100%;
    height: 9rem;
    padding: 1.5rem 2rem;
}

.editPrice__column {
    width: 31%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.editCard__input--price {
    width: 100%;
    text-align: center;
}

.editPrice__buttons {
    width: 100%;
}

#editPrice {
    all: inherit !important;
    padding: 0 !important;
}

.editCard--err--price::after {
    content: "המחיר אינו יכול להיות נמוך מ-40 שקלים"
}

.editCard--err--priceNotes::after {
    content: "עברת את מספר התווים המקסימלי (120)";
}

.editDiscounts__remove,
.editEdu__remove {
    width: 34px;
    height: 34px;
    background-color: #242323;
    border-radius: 100px;
    background-image: url(../profileIcons/delete.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
}


.editDiscounts__row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.editCard__input--discounts {
    width: 85%;
}

.editDiscounts__plus {
    background-image: url(../profileIcons/Plus.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
}

.editDiscounts__btn,
.editEdu__btn {
    border-radius: 22.5px;
    background-color: #fdcb3d;
    height: 45px;
    width: 140px;
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    font-size: 16px;
    color: black;
    font-weight: 600;
    transition: all 0.2s ease;

}

.editCard__input--addDiscount {
    width: 100%;
}

.notes__title {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.editEdu .notes__title {
    margin-bottom: -0.7rem;
}

.editDiscounts .editPrice__notes {
    display: none;
}

.editEdu .editPrice__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 0.5rem;
}

.editEdu .editEdu__selection {
    display: none;
}

.editEdu .notes__title {
    width: 100%;
    display: none;
}


.editDiscounts__rows {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.editCard__input--discounts:disabled {
    color: black;
}

.editMedia__guideText {
    padding: 1rem 2.4rem;
    font-size: 14px;
    color: #666666;
    padding: 0rem 2.4rem 1rem 2.4rem;
    border-bottom: solid 1px #97979724;
}

.editMedia__row {
    display: flex;
    gap: 2.4rem 1rem;
    overflow-x: auto;
    width: 100%;
    flex-wrap: wrap;
    padding-bottom: 2rem;

}

.editMedia__media {
    width: 104px;
    height: 104px;
    border-radius: 13px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    object-fit: cover;
    background-color: white;
}

.editMedia__addMedia {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.8rem;
    background-color: #548cff;
    justify-content: center;
}

.addMedia__text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.addMedia__svg {
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../profileIcons/Plus.svg);
    filter: invert(100%)
}

video.editMedia__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.media__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 104px;
    height: 104px;
    border-radius: 13px;
    overflow: hidden;
    pointer-events: none;
}

.media__overlay--pending {
    background-color: #548cff75;
}

.media__overlay--declined {
    background-color: #b9303080;
}

.media__overlay__top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
    min-height: 45%;
}

.media__overlay__bottom {
    display: flex;
    height: 55%;
    font-size: 8px;
    flex-direction: column;
    color: white;
    padding-top: 0.7rem;
    position: absolute;
    bottom: 0;
}

.media__overlay--pending .media__overlay__bottom {
    background-color: #548cff;
}

.media__overlay__content,
.media__overlay__title {
    text-align: center;
    font-size: 8px;
    color: white;
}

.media__overlay__title {
    font-weight: 600;
}

.media__trash {
    width: 34px;
    height: 34px;
    background-color: #242323;
    border-radius: 100px;
    background-image: url(../profileIcons/delete.svg);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
}

.media__overlay__svg {
    width: 38px;
    height: 38px;
    color: white;
    background-image: url(../profileIcons/white_x.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}


.editMedia__rows {
    overflow-x: auto;
    width: 100%;
}

.media__overlay--off {
    background-color: rgba(0, 0, 0, 0.66);
}

.media__overlay--off .media__overlay__top {
    height: 80%;
}

#editMedia {
    display: none;
}

.editMedia .editCard__header {
    padding: 1.5rem 2.4rem 1rem 2.4rem;
    border: none;

}

.lightbox .lb-outerContainer video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 300ms ease-in-out;
    border: none;
    outline: none;
    background-color: black !important;
}

.lightbox .lb-outerContainer video:hover,
.lightbox .lb-outerContainer video:focus {
    border: none;
    outline: none;
}

.lightbox .lb-outerContainer.animating video {
    opacity: 0;
}

.lightbox .lb-container {
    position: relative;
}

.lightbox .lb-container .lb-image {
    border: none;
}

.editEdu__selection {
    width: 32%;
    border-right: 10px solid transparent;
    border-left: 8px solid transparent;
    padding: 0;
    font-size: 13.5px;
}

.editEdu__btn {
    height: 40px;
}

.editCard__input--edu {
    width: 85%;
    height: max-content;
    padding: 0.8rem 1.3rem;
}

.editCard--err--edu {
    content: "יש להזין את כל שדות ההשכלה"
}

.editCard--err--deleteEdu {
    content: "חלה בעיה בעת מחיקת ההשכלה. אנא נסה שוב"
}

.editEdu__rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


option[value=""] {
    color: rgba(0, 0, 0, 0.428)
}

.bottomSheet__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    pointer-events: none;
    opacity: 0;
    display: flex;
    align-items: flex-end;
    transition: opacity 0.3s ease-in-out;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.469);
    touch-action: pan-x;
}

.bottomSheet__container {
    width: 100vw;
    transition: transform 0.3s ease-in-out;
    background-color: white;
    touch-action: pan-x;
    border-radius: 39px 39px 0 0;
    overflow: hidden;
    display: none;
}

.bottomSheet__container--subjects {
    height: 90dvh;
    transform: translateY(90dvh);
}

.bottomSheet__container--rating {
    height: max-content;
    transform: translateY(100%);
    padding-bottom: 2rem;
}

.bottomSheet__container--open {
    display: block;
}

.bottomSheet__header {
    height: 10dvh;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bottomSheet__header h4,
.bottomSheet__header .bottomSheet__title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 1.4rem;
}

.bottomSheet__wrapper--open {
    pointer-events: all;
    opacity: 1;
}

.bottomSheet__wrapper--open .bottomSheet__container {
    transform: translateY(0);
}

.bottomSheet__x {
    all: unset;
    position: absolute;
    top: 2.2rem;
    right: 3rem;
    height: 28px;
    width: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../profileIcons/x.svg);
}

.bottomSheet__swipeIcon {
    border: solid 0.07cm #d3d3d3;
    position: absolute;
    width: 34.5px;
    top: 1.3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;

}

.bottomSheet__content {
    height: 77dvh;
    overflow-y: auto;
    padding: 0.7rem 0;
}

.bottomSheet__subjectsContainer {
    gap: 0.4rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 3.5%;
}

.subject__parent {
    width: 90%;
    height: 111px;
    border-radius: 10px;
    background-size: cover;
    color: white;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.subject__child {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #e8f2ff;
    width: 90%;
    font-size: 20px;
    color: #548cff;
    font-weight: 600;
    cursor: pointer;
}

.profile__title {
    margin: 1.5rem auto 0.6rem auto;
    width: 90%;
    font-size: 20px;
    color: #000 !important;
    font-weight: 800;
}

.profile__container h1,
.profile__container h2,
.profile__container h3,
.profile__container h4 {
    color: #000;
}

.subject__item {
    border-radius: 10px;
    background-color: #f5f5f5;
    width: 90%;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    flex-direction: row-reverse;
}

.subject__item p {
    margin: 0;
}

.subject__group {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    transition: max-height 0.2s ease-out;
    align-items: center;
    gap: 0.4rem;
    overflow: hidden;
    margin: 0;

}

.subject__item__btn {
    border-radius: 14px;

    color: white;
    font-size: 10px;
    text-align: center;
    width: 53px;
    height: 25px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    background-color: #548cff;
}

.subject__item--selected .subject__item__btn {
    background-color: transparent;
    border: solid 1px black;
    color: black;
}

.subject__parent--1 {
    background-image: url(../profileIcons/1.png);
}

.subject__parent--2 {
    background-image: url(../profileIcons/2.png);
}

.subject__parent--3 {
    background-image: url(../profileIcons/3.png);
}

.subject__parent--4 {
    background-image: url(../profileIcons/4.png);
}

.subject__parent--5 {
    background-image: url(../profileIcons/5.png);
}

.subject__parent--6 {
    background-image: url(../profileIcons/6.png);
}

.subject__parent--7 {
    background-image: url(../profileIcons/7.png);
}

.subject__item--selected {
    background-color: #61d780a3;

}

.editCard--err--subjects::after {
    content: "חלה בעיה. יש לרענן את הדף ולנסות שוב."
}

.submitted input[type="submit"],
.submitted .editCard__submit {
    background-color: #242323;
}

.selectDropdown__container {
    height: 1px;
    overflow: visible;
    margin-top: -2.2rem;
    padding: 0 0.4rem;
    display: none;
}

.selectDropdown {
    max-height: 180px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    z-index: 5;
    position: absolute;
    width: 86%;
    padding: 0 0.5rem;
    background: white;
}

.selectDropdown__item,
.selectDropdown__item--livingCity {
    padding: 1.1rem 0.9rem;
    border-bottom: solid 1px #9797972e;
    cursor: pointer;
}

.selectDropdown__item--selected {
    background-color: #0062ff29;
}

.editCard--err--cities::after {
    content: "חרגת ממספר הערים האפשרי בתכנית מנוי זו"
}

.submitted .profile__label--city {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
    padding: 0;
    padding-right: 1rem;
    width: max-content;
    height: 3.5rem;
    overflow: hidden;

}

.profile__label__delete,
.goBackBtn--hidden {
    display: none !important;
}

.submitted .profile__label__delete {
    background: black;
    width: 40px;
    height: 100%;
    display: block !important;
    background-image: url(../profileIcons/delete.svg);
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: center;
}

.bottomSheet__container--rating .bottomSheet__content {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    height: max-content;
}

.reviews__form {
    display: flex;
    flex-direction: column;
    gap: 2.3rem;
    padding: 2.5rem 3rem;
    flex-shrink: 0;
    width: 100vw;
    transition: all 0.3s ease;
    overflow: hidden;
}

.reviews__form--hidden {
    width: 0;
    padding: 2.5rem 0;
}

.reviews__field {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 80vw;
}

.reviews__field__label {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    gap: 0.7rem;
    align-items: center;
    margin-right: 1rem;
}

.reviews__form--login {
    align-items: center;
    text-align: center;
    gap: 3.5vw;
    padding: 0.5rem 3rem;
}

.reviews__form--login b {
    font-size: 18px;
    font-weight: 600;

}

#loginToReview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.reviews__login__input {
    width: 80vw;
    height: 5.4vh;
    border-radius: 24px;
    border: solid 1px #c6c6c6;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 12px 22px;
    font-size: 18px;
    text-align: right;
}

.reviews__form--login hr {
    width: 90%;
    opacity: 0.3;
}

.reviews__starsContainer {
    border-radius: 21px;
    background-color: #fffbe0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
    height: 87px;
    position: relative;
}

.reviews__starContainer {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    gap: 0.5rem;
    opacity: 0.4;

}

.reviews__star {
    width: 37px;
    height: 34px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../profileIcons/RatingStar.png)
}

.reviews__starContainer--selected {
    opacity: 1;
}

.reviews__starsContainer::after {
    min-height: unset;
    position: absolute;
    top: 0;
    transform: translate(0, -50%);
    border-radius: 3px;
    font-size: 12px;
    color: white;
    opacity: 0;
    pointer-events: none;
    padding: 0.2rem 1rem;
    font-weight: 600;
    width: max-content;
}

.reviews__starsContainer--err::after {
    opacity: 1;
    background-color: #ff8f8f;
    content: 'יש לדרג את המורה ע"י לחיצה על הכוכבים';
}

.reviews__starsContainer--err {
    border: 2px solid #ff8f8f;
}

.reviews__field--submit {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}

.editCard__submit--reviews {
    width: 250px;
}


.editCard__submit--google {
    background-color: #383838;
    width: 95%;
    height: 5rem;
    border-radius: 25.5px;
    max-width: 300px;
    min-height: 4rem;
    justify-content: space-between;
    padding: 0 2.05rem;
}

.editCard__submit--facebook span {
    flex: 1;
    background-image: url(../profileIcons/facebook.png);
    background-size: contain;
    height: 25px;
    width: 25px;
    background-repeat: no-repeat;
}

.editCard__submit--google span {
    flex: 1;
    background-image: url(../profileIcons/google.png);
    background-size: contain;
    height: 25px;
    width: 25px;
    background-repeat: no-repeat;
}

.editCard__submit--google p,
.editCard__submit--facebook p {
    flex: 1;
    text-wrap: nowrap;
}

.editCard__submit--facebook {
    background-color: #1877f2;
    width: 95%;
    height: 5rem;
    border-radius: 25.5px;
    max-width: 300px;
    min-height: 4rem;
    justify-content: space-between;
    padding: 0 2rem;
}



.labelset__secondary {
    margin-top: -1rem;
}

.bundlesLink {
    color: #1877f2;
}

.counter--learned {
    overflow: visible !important;
}

.editCities .notes__title {
    margin-bottom: -2rem;
}

.discountBtn--active {
    background-color: #242323;
    color: white;

}

.reviewCard__spacing {
    margin-right: 4rem;
}

.editCard--err--media::after {
    content: "ניתן להעלות סרטונים של עד 60 שניות בלבד";
}

.kidumPopup__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    padding-top: 30%;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.250);
    z-index: 9999999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.kidumPopup__wrapper--active {
    opacity: 1;
    pointer-events: all;
}

.kidumPopup__container {
    border-radius: 30px;
    background: white;
    width: 87%;
    height: 50%;
    max-height: 450px;
    max-width: 400px;
    min-height: 360px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    overflow: hidden;

}

.kidumPopup__top {
    background-image: url(../profileIcons/popupYellow.svg);
    padding: 2rem 3.5rem 3rem 3.5rem;
    height: 55%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;

}

.kidumPopup__bottom {
    padding: 2rem 3.5rem 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    height: 45%;
    gap: 2rem;
    align-items: center;
    justify-content: center;

}

.kidumPopup__menu {
    width: 86%;
    max-width: 400px;
    display: flex;
    justify-content: flex-end;
}

.kidumPopup__xBtn {
    width: 34px;
    height: 34px;
    background-image: url(../../assets/XbuttonMobile.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.kidumPopup__title {
    font-weight: 700;
    font-size: 26px;
    color: black;
    text-align: center;

}

.kidumPopup__text {
    font-size: 18px;
    font-weight: 500;
    color: black;
    text-align: center;
}

.kidumPopup__button {
    width: 238px;
    height: 51px;
    border-radius: 25.5px;
    background-color: #548cff;
    color: white;
    font-weight: 700;
    font-size: 18px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- DISCOUNT BADGE CSS STARTS HERE --- */
.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.discount-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF9966 0%, #FF5E62 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(255, 94, 98, 0.3);
    border: 3px solid #fff;
    z-index: 10;
}

.badge-text {
    line-height: 1;
    padding-top: 2px;
}

.badge-icon {
    width: 14px;
    height: 14px;
    fill: white;
}

/* --- DISCOUNT BADGE CSS ENDS HERE --- */