.profile-pic {
    background-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: myIvyMode
}


.common-header-style {
    font-family: myIvyMode;
    font-size: 1.5rem;
    margin-bottom: 1.5rem
}

@media (min-width: 992px) {
    .common-header-style {
        margin-bottom: 1rem
    }
}

.common-paragraph-style {
    margin-bottom: 2.5rem
}

.common-form-style {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.button-with-icon {
    display: flex;
    align-items: center;
}

.selection-button {
    width: 100%;
    color: #fff;
    background: #000;
}

.formgroup-row-l {
    padding-right: 15px !important;
    padding-left: 15px !important
}

.formgroup-row-r {
    padding-left: 15px !important;
    padding-right: 15px !important
}

@media (min-width: 768px) {
    .formgroup-row-l {
        padding-right: 0.5rem !important;
        padding-left: 15px !important
    }

    .formgroup-row-r {
        padding-left: 0.5rem !important;
        padding-right: 15px !important
    }
}

.desktop-back {
    display: none;
}

@media (min-width: 992px) {
    .desktop-back {
        display: flex;
        flex-direction: column;
    }
}

.mobile-back {
    display: block;
}

@media (min-width: 768px) {
    .mobile-back {
        display: none;
    }
}

.content-area {
    padding: 2.5rem 1.5rem !important;
    background: #fff;
    margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
    .content-area {
        padding: 3rem !important;
        background: #fff;
    }
}

@media (max-width: 600px) {
    .profile-body {
        padding: 0 !important;
    }
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.user-initials {
    width: 85px;
    height: 85px;
    border-radius: 6.25rem;
    background: #FFF;
    color: black;
    display: flex;
    padding: 1.5625rem 1.375rem;
    justify-content: center;
    align-items: center;
    font-family: myIvyMode;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #000;
    font-size: 1rem;
}

.user-email {
    color: #7D7D7D;
    font-size: 0.875rem;
}

.user-name, .user-email {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}

.side-menu ul {
    list-style-type: none;
    padding: 0;
}

.side-menu li {
    margin: 0.5rem 0;
}

.side-menu ul li a {
    color: black;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}

.side-menu ul li a:hover,
.side-menu ul li a:focus,
.side-menu ul li a:active {
    color: #FF9EDE;
    background-color: #F7F0EB;
}

.background {
    background-color: #F7F0EB;
    color: #F7F0EB;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    transition: all 0.3s;
}

.switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: white;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}

.checkbox:checked + .switch::after {
    left: 20px;
}

.checkbox:checked + .switch {
    background-color: #FF9EDE;
}

.slider-container .checkbox {
    display: none;
}


.info-row {
    display: grid;
    margin-bottom: 1rem;
    justify-content: flex-start;
    grid-template-columns: 15rem auto;
    align-items: flex-start;
    justify-items: flex-start;
    column-gap: 5rem;
}

.info-label {
    color: #7D7D7D;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    margin-right: 5rem;
}

.info-value {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    flex: 0 0 auto;
    text-align: left;
}

.faq-section {
    display: flex;
    width: 79.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.faq-item {
    width: 100%;
}

.faq-question {
    display: flex;
    cursor: pointer;
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    justify-content: space-between;
    margin: 1rem;
}

.faq-question .toggle-icon {
    margin-left: auto;
    font-size: 2.5rem;
    color: black;
    font-family: 'myIvyMode';
    float: right;
    width: 2.5rem;
    height: 2rem;
}

.faq-item .faq-answer {
    display: none;
    color: #000;
    font-family: "Helvetica Neue";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    margin: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-divider {
    width: 100%;
    height: 0.0625rem;
    background: #d5d5d5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
    align-self: stretch;
}

@media (max-width: 1200px) {
    .faq-section {
        width: auto;
    }
}


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

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2.5rem 2rem 7.5rem;
}

.search-box {
    display: flex;
    margin-top: 2.5rem;
    position: relative;
    flex-wrap: wrap;
    align-items: stretch;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .search-box {
        display: flex;
        margin-top: 2.5rem;
        position: relative;
        flex-wrap: wrap;
        align-items: stretch;
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
}

.all-categories {
    padding: 1rem 2rem;
}

@media (max-width: 768px) {
    .all-categories {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .search-box {
        width: 90%;
    }

    .all-categories {
        padding: 0 2rem;
    }
}

@media (max-width: 1100px) {
    .audio-text {
        display: none;
    }
}

.search-input {
    font-size: 1rem;
    border: none;
    outline: none;
    flex-grow: 1;
    display: flex;
    width: 32.25rem;
    height: 3rem;
    padding: 0.5rem 1rem;
    align-items: center;
    flex-shrink: 0;
}

.btn-mobile {
    display: none;
}

@media (max-width: 992px) {
    .search-input {
        width: 100% !important;
        border: 2px solid #7D7D7D !important;
    }

    .btn-mobile {
        display: flex;
        justify-content: center;
    }
}

.search-button {
    padding: 0.5rem 1rem;
    background: #000;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    width: 6.75rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.status-page-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0 1.5rem 0;
}