* {
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    background-color: #F0F0F0;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}


.profile {
    max-width: 1200px;
    width: 100%;
    height: auto;
    display: flex;
    margin: 20px auto;
    align-items: flex-start;
}

.profile__leftNavigation {
    width: 185px;
    height: auto;
    background-color: #FAFAFA;
    border-radius: 16px;
}

.profile__content {
    flex: 1;
    height: auto;
    margin-left: 20px;
}

.profile__leftNavigation__list {
    margin-top: 15px;
    margin-bottom: 15px;
}

.profile__leftNavigation__item {
    margin: 0px 10px;
    list-style: none;
}

.profile__leftNavigation__link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile__leftNavigation__link img {
    width: 25px;
    height: 25px;
    display: none;
}

.profile__leftNavigation__link {
    color: #333333;
    font-family: "RobotoFlex", sans-serif;
}

.profile__leftNavigation__link span {
    padding: 10px;
    width: 100%;
    height: 100%;
    font-size: 15px;
}

.profile__leftNavigation__link span:hover {
    background-color: rgba(50, 50, 50, 0.05);
    color: #333333;
    font-family: "RobotoFlex", sans-serif;
}

.profile__leftNavigation__link span.active {
    background-color: rgba(50, 50, 50, 0.05);
    color: #333333;
    padding: 10px;
}

.item__btn {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 7px;
}

.item__btn button {
    width: 170px;
    height: 35px;
    border-radius: 8px;
    background-color: royalblue;
    color: white;
    border: none;
    cursor: pointer;
    font-family: "RobotoFlex", sans-serif;
    font-size: 15px;
    box-shadow: 0 0 3px gray;
}

.item__btn button:hover {
    box-shadow: 0 0 10px lightblue;
}

.item__btn button:focus {
    background-color: rgba(65, 105, 225, 0.9);
}

.edit__menu {
    max-width: 325px;
    width: 100%;
    height: auto;
    background-color: #FAFAFA;
    border-radius: 16px;
    display: none;
    margin-left: 20px;
}

.editmenu__list {
    list-style: none;
    margin: 15px 8px;
    display: flex;
    flex-direction: column;
}

.editmenu__item {
    padding: 6px;
    cursor: pointer;
}

.editmenu__item__active {
    background-color: rgba(50, 50, 50, 0.05);
    padding: 6px;
    cursor: pointer;
}

.editmenu__item:hover {
    background-color: rgba(50, 50, 50, 0.05);
    padding: 6px;
}

.editmenu__item a {
    margin: 5px;
    color: black;
    font-size: 15px;
    width: 100%;
    height: 100%;
    display: block;
    font-family: "RobotoFlex", sans-serif;
}

.editmenu__item__active a {
    width: 100%;
    height: 100%;
    margin: 5px;
    color: black;
    display: block;
    font-size: 15px;
}


@media(min-width:0px) and (max-width:320px) {

    .profile__leftNavigation {
        display: none;
    }

    .profile__content {
        margin: 0;
        width: 100%;
    }

    .user-wall-container__right-panel {
        display: none;
    }

    .editmenu__item a {
        font-size: 13px;
    }

    .editmenu__item__active a {
        font-size: 13px;
    }

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

@media(min-width:320px) and (max-width:376px) {

    .profile__leftNavigation {
        display: none;
    }

    .profile__content {
        margin: 0;
        width: 100%;
    }

    .user-wall-container__right-panel {
        display: none;
    }

    .editmenu__item a {
        font-size: 13px;
    }

    .editmenu__item__active a {
        font-size: 13px;
    }

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

@media(min-width:376px) and (max-width:426px) {

    .profile__leftNavigation {
        display: none;
    }

    .profile__content {
        margin: 0;
        width: 100%;
    }

    .user-wall-container__right-panel {
        display: none;
    }

    .editmenu__item a {
        font-size: 14px;
    }

    .editmenu__item__active a {
        font-size: 14px;
    }

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

@media(min-width:426px) and (max-width:769px) {

    .profile__leftNavigation {
        display: none;
    }

    .profile__content {
        margin: 0;
        width: 100%;
    }

    .user-wall-container__right-panel {
        display: none;
    }

    .editmenu__item a {
        font-size: 14px;
    }

    .editmenu__item__active a {
        font-size: 14px;
    }

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

@media(min-width:0px) and (max-width:769px) {

    .profile {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .edit__menu {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }

    .profile {
        margin: 0px;
    }
}

@font-face {
    font-family: "RobotoFlex";
    src: url("/fonts/RobotoFlex.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}