
/* =============== ДАННЫЕ ПОЛЬЗОВАТЕЛЯ =============== */
.user_data_cl {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.user_data_cl>div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10%;
}

#cropContainer {
    display: none;
}

@media (max-width: 600px) {
    .user_data_cl>div  {
        gap: 2.5%;
        padding-left: 2vw;
    }
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Regular.ttf') format('truetype');
}

/* --- иконка пользователя --- */

.icon_main_login_cl {
    width: 10vh;
    height: 10vh;
    border: 1px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-image: url(../static/users/profile_photo.webp);
    overflow: hidden;
    transform: translateX(5px);
}

.icon_main_login_cl > span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7.5vh;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px black;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 300ms all;
}

.icon_main_login_cl > span:hover {
    cursor: pointer;
    opacity: 1;
}

/* --- статус пользователя --- */

.user_status_cl {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 2vh;
}

/* логин/имя/кнопка редактирования */

.login_name_edit_button_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.login_name_edit_button_cl > div:nth-child(1) {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5vw;
}

.profile_push_button_unit_cl {
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 5%;
    flex-wrap: wrap;
}

#edit_profile_id {
    padding: 1vh;
    padding-left: 2vh;
    padding-right: 2vh;
    background-color: rgba(128, 128, 128, 0.4);
    border-radius: 0.25vw;
    transition: 300ms all;
}

#edit_profile_id:hover {
    cursor: pointer;
    background-color: var(--grey_button);
}

#share_id {
    padding: 1vh;
    padding-left: 2vh;
    padding-right: 2vh;
    background-color: rgba(0, 128, 0, 0.75);
    border-radius: 0.25vw;
    transition: 300ms all;
    display: none;
}

#share_id:hover {
    cursor: pointer;
    background-color: var(--grey_button);
}

@media (max-width: 600px) {

    .user_status_cl {
        width: 65%;
    }

    .login_name_edit_button_cl > div:nth-child(1) {
        font-size: 1.8vh;
        flex-direction: column;
        align-items: start;
    }

    .login_name_edit_button_cl > div:nth-child(1) > span:nth-child(2) {
        display: none;
    }

    #edit_profile_id {
        width: 42.5%;
        font-size: 1.75vh;
        font-weight: bold;
        padding: 1.5vh;
        padding-left: 1vh;
        padding-right: 1vh;
        border-radius: 1.5vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #share_id {
        width: 42.5%;
        font-size: 1.75vh;
        font-weight: bold;
        padding: 1.5vh;
        padding-left: 1vh;
        padding-right: 1vh;
        border-radius: 1.5vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon_main_login_cl {
        width: 7.5vh;
        height: 7.5vh;
        transform: translateX(0px);
    }
    
}

/* количества публикаций/подписок/подписчиков */

.number_of_publications_subscriptions_subscribers_cl {
    width: 80%;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.number_of_publications_subscriptions_subscribers_cl > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5vw;
}

.number_of_publications_subscriptions_subscribers_cl > div > span {
    font-size: 2vh;
    color: var(--grey_button);
}

@media (max-width: 600px) {
    .number_of_publications_subscriptions_subscribers_cl {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .number_of_publications_subscriptions_subscribers_cl > div > b {
        font-size: 1.8vh;
    }

    .number_of_publications_subscriptions_subscribers_cl > div > span {
        font-size: 1.8vh;
    }
}

/* описание пользователя */

.user_description_cl {
    width: 100%;
    font-size: 1.8vh;
}

/* =============== ИСТОРИИ =============== */

.main_stories_cl {
    width: 100%;
    /* height: 15vh; */
    margin-top: 5vh;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.adding_history_cl {
    width: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-left: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.adding_history_cl:hover {
    cursor: pointer;
}

.adding_history_cl > section {
    width: 8vh;
    height: 8vh;
    border-radius: 50%;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adding_history_cl > section > div {
    width: 8vh;
    height: 8vh;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    background-image: url(../static/catalog_img/add_storiz.jpg);
    background-size: cover;
}

.adding_history_cl > span {
    width: 10vw;
    font-size: 1.4vh;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 600px) {

    .main_stories_cl {
        padding-left: 4vw;
    }

    .adding_history_cl > span {
        width: 20vw;
    }

}

/* =============== БЛОК РЕГИСТРАЦИИ (Ввод данных) =============== */

.registration_unit_cl {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15vh;
    padding-bottom: 100px;
}

.registration_unit_cl > div {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
}

@media (max-width: 700px) {
    .registration_unit_cl {
        padding-top: 5vh;
    }

    .registration_unit_cl > div {
        gap: 1vh;
    }
}

.registration_unit_cl > div > span {
    font-size: 2.5vh;
    text-align: center;
}

#reg_name_user_id {
    width: 50%;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    padding-left: 1vw;
    font-size: 2.5vh;
    font-weight: bold;
}

.reg_password_user_cl {
    width: 53%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reg_password_user_cl > input {
    width: 72.5%;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    padding-left: 1vw;
    font-size: 2.5vh;
    font-weight: bold;
}

@media (max-width: 700px) {
    .reg_password_user_cl>input {
        padding-left: 2vw;
        font-size: 2vh;
    }
}

.reg_password_user_cl > div {
    width: 5vh;
    height: 5vh;
    background-image: url(../static/img/hodden_password.png);
    background-size: cover;
}

.reg_password_user_cl > div:hover {
    cursor: pointer;
}

#sel_notif_type_id {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 2px dashed gray;
    border-radius: 1vh;
}

#sel_notif_type_id>span{
    font-size: 2.5vh;
    text-align: center;
}

#sel_notif_type_id>section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

#sel_notif_type_id>section>div{
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 7.5px;
    border: 3px solid gray;
    font-size: 2vh;
    font-weight: bold;
    color: gray;
    transition: 300ms all;
}

#sel_notif_type_id>section>div:hover{
    cursor: pointer;
    color: black;
    border-color: black;
    background-color: gray;
}

#sel_notif_type_id>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#sel_notif_type_id>div>span{
    font-size: 2.5vh;
    text-align: center;
}

#sel_notif_type_id>div>input{
    width: 50%;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    padding-left: 1vw;
    font-size: 2.5vh;
    font-weight: bold;
}

@media (max-width: 1050px){
    #sel_notif_type_id>div>input{
        width: 70%;
        padding-left: 3vw;
        font-size: 2vh;
    }
}

#reg_mail_user_id {
    width: 50%;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    padding-left: 1vw;
    font-size: 2.5vh;
    font-weight: bold;
}

#button_next_reg_id {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    background: green;
    font-size: 2.5vh;
    font-weight: bold;
    text-decoration: underline;
    transition: 500ms all;
}

#alert_text_reg_id {
    color: red;
    font-weight: bold;
}

#button_next_reg_id:hover {
    cursor: pointer;
    color: var(--blue_text);
}

@media (max-width: 1250px) {
    .registration_unit_cl > div {
        width: 80%;
    }
}

@media (max-width: 1050px) {
    .registration_unit_cl>div {
        width: 95%;
    }

    #reg_name_user_id {
        width: 70%;
        padding-left: 3vw;
        font-size: 2vh;
    }

    .reg_password_user_cl {
        width: 73%;
    }

    #reg_mail_user_id {
        width: 70%;
        padding-left: 3vw;
        font-size: 2vh;
    }
}

/* =============== БЛОК РЕГИСТРАЦИИ (Ввод кода) =============== */

.code_input_unit_cl {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code_input_unit_cl > div {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
}

.code_input_unit_cl > div > span {
    font-size: 2.5vh;
    text-align: center;
}

.code_input_boxes_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

.code_input_boxes_cl > div {
    width: 5vh;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code_entry_cl {
    width: 2vh;
    height: 3.5vh;
    border: none;
    font-size: 3.5vh;
    font-weight: bold;
}

.query_unit_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.query_unit_cl > span {
    font-size: 1.8vh;
}

.query_unit_cl > button {
    font-size: 1.8vh;
}

.code_input_control_cl {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 10vh;
}

.code_input_control_cl > span {
    font-size: 3vh;
    text-decoration: underline;
}

.code_input_control_cl > span:hover {
    cursor: pointer;
    color: var(--blue_text);
}


@media (max-width: 1250px) {
    .registration_unit_cl > div {
        width: 80%;
    }
}

@media (max-width: 1050px) {
    .registration_unit_cl > div {
        width: 95%;
    }
}

/* =============== БЛОК РЕГИСТРАЦИИ (модальное окно входа) =============== */

.logging_in_cl {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.25);
}

.logging_in_cl > div {
    padding: 3vh;
    border-radius: 1vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.logging_in_cl > div > span {
    font-size: 3vh;
    font-weight: bold;
}

.logging_in_cl > div > span:nth-child(2) {
    text-decoration: underline;
}

.logging_in_cl > div > span:nth-child(2):hover {
    cursor: pointer;
}

#reorder_button_id {
    filter: blur(5px);
    transition: 500ms all;
}

.logging_in_cl, .code_input_unit_cl, .registration_unit_cl {
    display: none;
}

#account_type_id {
    font-size: 2.5vh;
    font-weight: bold;
    color: black;
    padding: 1vh;
    padding-left: 2vh;
    padding-right: 2vh;
    border-radius: 1vh;
    border: 2px solid black;
}

/* =============== БЛОК ВХОДА (Ввод данных) =============== */

.inlet_unit_cl {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.inlet_unit_cl > div {
    width: 65%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.inlet_unit_cl > div > span {
    font-size: 2.5vh;
    text-align: center;
    margin-top: 20px;
}

#intel_name_user_id {
    width: 50%;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    padding-left: 1vw;
    font-size: 2.5vh;
    font-weight: bold;
}

.intel_password_user_cl {
    width: 53%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.intel_password_user_cl > input {
    width: 72.5%;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    padding-left: 1vw;
    font-size: 2.5vh;
    font-weight: bold;
}

.intel_password_user_cl > div {
    width: 5vh;
    height: 5vh;
    background-image: url(../static/img/hidden_password.png);
    background-size: cover;
}

.intel_password_user_cl > div:hover {
    cursor: pointer;
}

#button_next_intel_id {
    font-size: 2.5vh;
    text-decoration: underline;
    transition: 500ms all;
}

#alert_text_intel_id {
    color: red;
    font-weight: bold;
}

#button_next_intel_id:hover {
    cursor: pointer;
    color: var(--blue_text);
}

#password_recovery_id {
    font-size: 2vh;
    font-weight: bold;
    color: rgb(41, 41, 230);
    text-decoration: underline;
    margin-top: 3vh;
    margin-bottom: 3vh;
}

#password_recovery_id:hover {
    cursor: pointer;
}

@media (max-width: 1250px) {
    .inlet_unit_cl > div {
        width: 80%;
    }
}

@media (max-width: 1050px) {
    .inlet_unit_cl > div {
        width: 95%;
    }

    #intel_name_user_id {
        width: 70%;
    }

    .intel_password_user_cl {
        width: 73%;
    }
}

/* =============== ПУБЛИКАЦИИ =============== */

.profile_publications_cl {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    gap: 0.5%;
    margin-top: 0.5vh;
    padding-bottom: 100px;
}

.profile_publications_cl > section {
    width: 33%;
    height: 20vw;
    background-color: rgba(128, 128, 128, 0.5);
    margin-bottom: 0.5vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transition: 300ms all;
}

.profile_publications_cl > section:hover {
    cursor: pointer;
}

@media (max-width: 700px) {
    .profile_publications_cl > section {
        height: 40vw;
    }
}

.profile_publications_cl > section > div {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    opacity: 0;
    transition: 300ms all;
}

.profile_publications_cl > section > div:hover {
    opacity: 1;
}

.profile_publications_cl > section > div > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
}

.profile_publications_cl > section > div > div:nth-child(1) > div {
    width: 3vh;
    height: 3vh;
    background-image: url(./img/like_block.svg);
    background-size: cover;
}

.profile_publications_cl > section > div > div:nth-child(2) > div {
    width: 3vh;
    height: 3vh;
    background-image: url(./img/message_block.svg);
    background-size: cover;
}

.profile_publications_cl > section > div > div > span {
    font-size: 2vh;
    font-weight: bold;
    color: white;
}

/* =============== Кнопка редактирования иконки =============== */

.block_mod_icon_cl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 90vh;
    display: none;
}

.img_mod_icon_cl {
    width: 90vw;
    height: 90vh;
}

.button_block_mod_icon_cl {
    width: 100vw;
    height: 10vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button_mod_icon_cl {
    width: 200px;
    height: 6vh;
    border: 2px solid black;
    border-radius: 1vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vh;
    color: black;
    background-color: green;
}

.button_mod_icon_cl:hover {
    cursor: pointer;
}

@media (max-width: 700px) {
    .block_mod_icon_cl {
        height: 70vh;
    }

    .button_block_mod_icon_cl {
        height: 30vh;
    }

}

/* =============== ПРОСМОТР СТОРИЗОВ =============== */

#render_storiz_profile_id {
    width: 100%;
    overflow-x: scroll;
}

#sub_render_storiz_profile_id {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

/* --- блок галочки --- */

.tick_box_class {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    border: 1px dashed gray;
    justify-content: space-between;
}

.tick_box_class > div:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.tick_box_class > div:nth-child(1) > span:nth-child(1) {
    font-size: 2.5vh;
    color: black;
}

@media (max-width: 700px) {

    .tick_box_class > div:nth-child(1) {
        width: 75%;
    }

    .tick_box_class>div:nth-child(1)>span:nth-child(1) {

        font-size: 2vh;
    }

}

.tick_box_class > div:nth-child(1) > span:nth-child(2) {
    font-size: 2vh;
    color: var(--blue_text);
    text-decoration: underline;
}

.tick_box_class > div:nth-child(1) > span:nth-child(2):hover {
    cursor: pointer;
}

.tick_box_class > div:nth-child(2) {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 2px solid gray;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 80%;
}

.tick_box_class > div:nth-child(2):hover {
    cursor: pointer;
}

/* =============== ПРОСМОТР "ПОЛЬЗОВАТЕЛЬСКОГО СОГЛАШЕНИЯ" =============== */

#USER_AGREEMENT_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#USER_AGREEMENT_id>div{
    width: 50vw;
    height: 75vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2vh;
    background-color: white;
}

@media (max-width: 700px) {
    #USER_AGREEMENT_id>div {
        width: 90vw;
        height: 85vh;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 2vh;
        background-color: white;
    }
}

#USER_AGREEMENT_id>div>div:nth-child(1) {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
}

#USER_AGREEMENT_id>div>div:nth-child(1)>span {
    font-size: 3vh;
    font-weight: bold;
    color: gray;
}

#USER_AGREEMENT_id>div>div:nth-child(1)>span:hover {
    cursor: pointer;
}

#USER_AGREEMENT_id>div>span:nth-child(2) {
    font-size: 3vh;
    font-weight: bold;
    color: black;
}

#USER_AGREEMENT_id>div>div:nth-child(3) {
    width: 100%;
    text-align: justify;
    overflow-y: scroll;
}

#USER_AGREEMENT_id>div>div:nth-child(3)>span{
    font-size: 2.5vh;
    color: black;
}

#USER_AGREEMENT_id>div>div:nth-child(4) {
    margin-top: 25px;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border: 3px solid gray;
    border-radius: 15px;
    color: gray;
    font-size: 3vh;
    font-weight: bold;
}

#USER_AGREEMENT_id>div>div:nth-child(4):hover {
    cursor: pointer;
}

/* =============== ПРОСМОТР "ОБРАБОТКИ ПЕРСОНАЛЬНЫХ ДАННЫХ" =============== */

#PROCESSING_OF_PERSONAL_DATA_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#PROCESSING_OF_PERSONAL_DATA_id>div{
    width: 50vw;
    height: 75vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2vh;
    background-color: white;
}

@media (max-width: 700px) {
    #PROCESSING_OF_PERSONAL_DATA_id>div {
        width: 90vw;
        height: 85vh;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 2vh;
        background-color: white;
    }
}

#PROCESSING_OF_PERSONAL_DATA_id>div>div:nth-child(1) {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
}

#PROCESSING_OF_PERSONAL_DATA_id>div>div:nth-child(1)>span {
    font-size: 3vh;
    font-weight: bold;
    color: gray;
}

#PROCESSING_OF_PERSONAL_DATA_id>div>div:nth-child(1)>span:hover {
    cursor: pointer;
}

#PROCESSING_OF_PERSONAL_DATA_id>div>span:nth-child(2) {
    font-size: 3vh;
    font-weight: bold;
    color: black;
}

#PROCESSING_OF_PERSONAL_DATA_id>div>div:nth-child(3) {
    width: 100%;
    text-align: justify;
    overflow-y: scroll;
}

#PROCESSING_OF_PERSONAL_DATA_id>div>div:nth-child(3)>span{
    font-size: 2.5vh;
    color: black;
}

#PROCESSING_OF_PERSONAL_DATA_id>div>div:nth-child(4) {
    margin-top: 25px;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border: 3px solid gray;
    border-radius: 15px;
    color: gray;
    font-size: 3vh;
    font-weight: bold;
}

#PROCESSING_OF_PERSONAL_DATA_id>div>div:nth-child(4):hover {
    cursor: pointer;
}

/* =============== ПРОСМОТР "ОБРАБОТКИ ПЕРСОНАЛЬНЫХ ДАННЫХ" =============== */

#user_consent_to_the_use_of_cookies_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#user_consent_to_the_use_of_cookies_id>div{
    width: 50vw;
    height: 75vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2vh;
    background-color: white;
}

@media (max-width: 700px) {
    #user_consent_to_the_use_of_cookies_id>div {
        width: 90vw;
        height: 85vh;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 2vh;
        background-color: white;
    }
}

#user_consent_to_the_use_of_cookies_id>div>div:nth-child(1) {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
}

#user_consent_to_the_use_of_cookies_id>div>div:nth-child(1)>span {
    font-size: 3vh;
    font-weight: bold;
    color: gray;
}

#user_consent_to_the_use_of_cookies_id>div>div:nth-child(1)>span:hover {
    cursor: pointer;
}

#user_consent_to_the_use_of_cookies_id>div>span:nth-child(2) {
    font-size: 3vh;
    font-weight: bold;
    color: black;
}

#user_consent_to_the_use_of_cookies_id>div>div:nth-child(3) {
    width: 100%;
    text-align: justify;
    overflow-y: scroll;
}

#user_consent_to_the_use_of_cookies_id>div>div:nth-child(3)>span{
    font-size: 2.5vh;
    color: black;
}

#user_consent_to_the_use_of_cookies_id>div>div:nth-child(4) {
    margin-top: 25px;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border: 3px solid gray;
    border-radius: 15px;
    color: gray;
    font-size: 3vh;
    font-weight: bold;
}

#user_consent_to_the_use_of_cookies_id>div>div:nth-child(4):hover {
    cursor: pointer;
}

/* =============== НЕТ ВХОДА =============== */

.del_profile_now_cl {
    display: none;
}

.no_entry_cl {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no_entry_cl > div {
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.no_entry_cl > div > span {
    text-align: center;
    font-size: 3vh;
}

.no_entry_cl > div > div {
    font-size: 3vh;
    text-decoration: underline;
    transition: 500ms all;
}

.reg_button_cl {
    padding: 0.5vw;
    padding-left: 2vw;
    padding-right: 2vw;
    border-radius: 0.5vw;
    background: linear-gradient(45deg, rgb(62, 169, 169, 0.8), rgb(62, 169, 169, 0.0), rgb(62, 169, 169, 0.5), rgb(62, 169, 169, 0.8), rgba(14, 148, 238, 0.8));
    transition: 500ms all;
}

.reg_button_cl:hover {
    background: linear-gradient(45deg, rgb(62, 169, 169, 0.8), rgb(62, 169, 169, 0.8), rgb(62, 169, 169, 0.8), rgb(62, 169, 169, 0.8), rgb(62, 169, 169, 0.8));
}

.no_entry_cl > div > div:hover {
    cursor: pointer;
    color: var(--blue_text);
}

@media (max-width: 600px) {
    .reg_button_cl {
        padding: 2vw;
        padding-left: 6vw;
        padding-right: 6vw;
        border-radius: 2vw;
    }
}

.header_profile {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 4vh;
    padding-bottom: 1vh;
}

.header_profile>section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.header_profile>section>div:nth-child(1) {
    width: 50px;
    height: 50px;
    background-image: url(./catalog_img/ICON.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 150%;
}

.header_profile>section>div:nth-child(2) {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header_profile>section>div:nth-child(2)>div {
    width: 40px;
    height: 50px;
    background-image: url(./catalog_img/load_arrow.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 80%;
    display: none;
}

@media (max-width: 700px) {
    .header_profile>section>div:nth-child(2)>div {
        display: flex;
    }
}

/* =============== управление группой =============== */

#group_management_id {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 2px dashed gray;
}

#group_management_id>span {
    font-size: 2vh;
    font-weight: bold;
    color: gray;
}

#group_management_id>section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    gap: 5px;
}

.group_member_cl {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 10px;
    background-color: rgba(128, 128, 128, 0.25);
}

.group_member_cl:hover{
    cursor: pointer;
}

.group_member_cl>div:nth-child(1){
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(./users/profile_photo.jpg);
    background-size: cover;
    background-position: 50% 50%;
}

.group_member_cl>div:nth-child(2){
    display: flex;
    flex-direction: column;
    align-items: start;
}

.group_member_cl>div:nth-child(2)>span:nth-child(1) {
    font-size: 1.75vh;
    font-weight: bold;
    color: black;
}

.group_member_cl>div:nth-child(2)>span:nth-child(2) {
    font-size: 1.5vh;
    color: gray;
}

.group_member_cl>article:nth-child(3){
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(./img/block_accaunt.png);
    background-size: cover;
    background-position: 50% 50%;
    opacity: 0;
    transition: 300ms all;
}

.group_member_cl:hover>article:nth-child(3) {
    opacity: 1;
}

@media (max-width: 800px) {
    .group_member_cl>article:nth-child(3) {
        opacity: 1;
    }
}

#add_administrator_id {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: green;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

#add_administrator_id:hover {
    cursor: pointer;
}

#add_administrator_id>div{
    width: 25px;
    height: 25px;
    background-image: url(./img/add_admin_white.png);
    background-size: cover;
}

#add_administrator_id>span{
    font-size: 2vh;
    color: white;
}

/* =============== Выбор нового администратора =============== */

#sel_new_admin_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 500ms all;
}

#sel_new_admin_id > div {
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-radius: 15px;
    background-color: white;
}

#sel_new_admin_id > div > span {
    font-size: 2.5vh;
    font-weight: bold;
    color: gray;
}

#sel_new_admin_id > div > section {
    width: 100%;
    height: 50vh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

#sel_new_admin_id > div > section > div {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

#sel_new_admin_id > div > section > div:hover {
    cursor: pointer;
}

#sel_new_admin_id > div > section > div > div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url(./users/profile_photo.jpg);
    background-size: cover;
    background-position: 50% 50%;
}

#sel_new_admin_id > div > section > div > span {
    font-size: 3vh;
    font-weight: bold;
    color: black;
}

#sel_new_admin_id > div > div {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 2.5vh;
    font-weight: bold;
    color: gray;
    border-radius: 10px;
    border: 3px solid gray;
}

#sel_new_admin_id > div > div:hover {
    cursor: pointer;
}

/* =============== Модальное окно удаления администратора =============== */

#admin_rem_window_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 500ms all;
}

#admin_rem_window_id>div{
    padding: 20px;
    margin: 10px;
    border-radius: 15px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

#admin_rem_window_id>div>div:nth-child(1){
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#admin_rem_window_id>div>div:nth-child(1)>span{
    font-size: 2.5vh;
    font-weight: bold;
    color: gray;
}

#admin_rem_window_id>div>div:nth-child(1)>b{
    font-size: 2.5vh;
    font-weight: bold;
    color: black;
}

#admin_rem_window_id>div>div:nth-child(2){
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#admin_rem_window_id>div>div:nth-child(2)>div:nth-child(1) {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    font-size: 2.5vh;
    font-weight: bold;
    color: white;
    background-color: gray;
}

#admin_rem_window_id>div>div:nth-child(2)>div:nth-child(1):hover{
    cursor: pointer;
}

#admin_rem_window_id>div>div:nth-child(2)>div:nth-child(2) {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    font-size: 2.5vh;
    font-weight: bold;
    color: white;
    background-color: red;
}

#admin_rem_window_id>div>div:nth-child(2)>div:nth-child(2):hover{
    cursor: pointer;
}

/* =============== Модальное окно Восстановления пароля =============== */

#pass_rec_block_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
}

#pass_rec_block_id>div {
    padding: 20px;
    margin: 20px;
    border-radius: 2vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#pass_rec_block_id>div>span{
    font-size: 3vh;
    font-weight: bold;
    color: black;
    text-align: center;
}

#pass_rec_block_id>div>b{
    font-size: 2vh;
    font-weight: bold;
    color: red;
}

#pass_rec_block_id>div>div {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#pass_rec_block_id>div>div>span{
    font-size: 2vh;
    color: black;
}

#pass_rec_block_id>div>div>input {
    font-size: 2vh;
    font-weight: bold;
    color: black;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    padding-left: 1vw;
    font-size: 2.5vh;
    font-weight: bold;
    outline: none;
}

#pass_rec_block_id>div>section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

#pass_rec_block_id>div>section>div{
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    background-color: rgba(128, 128, 128, 0.5);
    font-size: 2.5vh;
    font-weight: bold;
    color: black;
}

#pass_rec_block_id>div>section>div:hover {
    cursor: pointer;
}

/* Модальное окно Восстановления пароля (ввод кода) */

#pass_rec_block_two_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
}

#pass_rec_block_two_id>div {
    padding: 20px;
    margin: 20px;
    border-radius: 2vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#pass_rec_block_two_id>div>span{
    font-size: 3vh;
    font-weight: bold;
    color: black;
    text-align: center;
}

#pass_rec_block_two_id>div>div {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 10px;
}

#pass_rec_block_two_id>div>div>input {
    width: 5vh;
    height: 6vh;
    padding-left: 2.25vh;
    font-size: 4.5vh;
    font-weight: bold;
    color: black;
    border: 2px solid gray;
    border-radius: 5px;
}

#pass_rec_block_two_id>div>section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

#pass_rec_block_two_id>div>section>div{
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    background-color: rgba(128, 128, 128, 0.5);
    font-size: 2.5vh;
    font-weight: bold;
    color: black;
}

#pass_rec_block_two_id>div>section>div:hover {
    cursor: pointer;
}

/* Модальное окно Восстановления пароля (Изменение пароля) */

#pass_rec_block_three_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
}

#pass_rec_block_three_id>div {
    padding: 20px;
    margin: 20px;
    border-radius: 2vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#pass_rec_block_three_id>div>span{
    font-size: 3vh;
    font-weight: bold;
    color: black;
    text-align: center;
}

#pass_rec_block_three_id>div>b{
    font-size: 2vh;
    font-weight: bold;
    color: red;
}

#pass_rec_block_three_id>div>div {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#pass_rec_block_three_id>div>div>span{
    font-size: 2vh;
    color: black;
}

#pass_rec_block_three_id>div>div>input {
    font-size: 2vh;
    font-weight: bold;
    color: black;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    padding-left: 1vw;
    font-size: 2.5vh;
    font-weight: bold;
    outline: none;
}

#pass_rec_block_three_id>div>div>section{
    width: 87.5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 800px) {
    #pass_rec_block_three_id>div>div>section{
        width: 100%;
    }
}

#pass_rec_block_three_id>div>div>section>input {
    width: 75%;
    font-size: 2vh;
    font-weight: bold;
    color: black;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    padding-left: 1vw;
    font-size: 2.5vh;
    font-weight: bold;
    outline: none;
}

#pass_rec_block_three_id>div>div>section>div{
    width: 5vh;
    height: 5vh;
    border: 2px solid black;
    border-radius: 1.5vh;
    background-image: url(./img/hidden_password.png);
    background-size: 80%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

#pass_rec_block_three_id>div>div>section>div:hover {
    cursor: pointer;
}

#pass_rec_block_three_id>div>section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}

#pass_rec_block_three_id>div>section>div{
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    background-color: rgba(128, 128, 128, 0.5);
    font-size: 2.5vh;
    font-weight: bold;
    color: black;
}

#pass_rec_block_three_id>div>section>div:hover {
    cursor: pointer;
}