ul,ol,p,h1,h2,h3
{ 
    margin-top:0; 
    margin-bottom:0 
}

ol
{ 
    margin: 0; 
    padding: 0 
}

html {
    overflow-y: scroll;
    background-color: #ffffff;
    height: 100%;
    margin: 0;
    padding: 0;
}

html.no-scroll {
    overflow-y: hidden;
} 

::selection {
    background: #808080; /* Цвет фона выделения */
    color: #ffffff; /* Цвет текста */
}

html,body
{
    width: 100%;
    height: 100dvh;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
    scroll-behavior: smooth;
    min-height: -webkit-fill-available;
}

body {
    overflow-x: visible;
    background-color: #f0f0f0; 
}

input {
    border: 2px solid #adadad;
}

/* iOS suffering */
a, p, div, button {
    -webkit-text-decoration-skip: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.full_screen_white {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 300;
    visibility: visible;
}

.full_screen_loading {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 200;
}

.full_screen_loading span {
    margin-bottom: 10px;
}

/* ANIMATIONS */
/**************/

.online_indicator_animation {
    width: clamp(6px, 2.4vw, 14px);
    height: clamp(6px, 2.4vw, 14px);
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    margin-right: clamp(2px, 1vw, 4px);

    /*
    border: 2px solid #1ae2fd;
    */

  }
  .online_indicator_animation::after,
  .online_indicator_animation::before {
    content: '';  
    box-sizing: border-box;
    width: clamp(6px, 2.4vw, 14px);
    height: clamp(6px, 2.4vw, 14px);
    border-radius: 50%;
    background: rgb(0, 100, 255);
    position: absolute;
    left: 0;
    top: 0;
    animation: animloader 3s linear infinite;
  }
  .online_indicator_animation::after {
    animation-delay: -1.5s;
  }
  
  @keyframes animloader {
    0% {
      transform: scale(0);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0;
    }
  }
     
.loader {
    width: clamp(16px, 2vw, 24px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 4px solid;
    border-color: #000 #0000;
    animation: l1 1.5s infinite;
  }
@keyframes l1 {to{transform: rotate(.5turn)}}

.small_loader {
    width: clamp(10px, 2vw, 14px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid;
    border-color: #000 #0000;
    animation: l1 1.5s infinite;
}
@keyframes l1 {to{transform: rotate(.5turn)}}

div {
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 2vw, 20px);
    margin: 0; 
    text-indent: 0;
    padding: 0;  
}

/**************/

ul {
    padding-inline-start: clamp(16px, 2vw, 24px);
}

.modal_dialog_container {
    display: none; /* вместо flex или block */
    place-items: center; /* центрируем и по вертикали, и по горизонтали */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 16px;
    box-sizing: border-box;
    z-index: 240;
    
    /*
    border: 10px solid rgb(0, 255, 123);
    */
}


.modal {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 241; /* Sit on top of full_screen_dialog_container */

    background-color: #fefefe;
    box-sizing: border-box;
    border-radius: clamp(12px, 4vw, 26px);
    padding: clamp(12px, 4vw, 30px);
    border: 1px solid #888;
    width: clamp(150px, 70vw, 400px);

    margin: auto auto; /* по центру по горизонтали */

    /*
    border: 10px solid rgb(0, 255, 123);
    */
}

.modal_body_icon img {
    height: clamp(40px, 14vw, 100px);
    margin-bottom: clamp(12px, 4vw, 26px);
}

.modal_close_button {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    right: clamp(2px, 4vw, 8px);
    top: clamp(2px, 4vw, 8px);

    /*
    border: 1px solid rgb(38, 0, 255);
    */
}

.modal_close_button img {
    height: clamp(18px, 4vw, 32px);
}

.modal_title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding-right: clamp(26px, 4vw, 32px);
    padding-left: clamp(26px, 4vw, 32px);
    
    /*
    border: 3px solid #24fe3d;
    */

    
}

.modal_title p, .modal_cross_button {
    font-size: clamp(12px, 4vw, 26px);
    text-align: center;
    font-weight: bold;
    -webkit-tap-highlight-color: transparent;
    margin-bottom: clamp(12px, 4vw, 26px);
}

.modal_body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;

    /*
    border: 3px solid #24fe3d;
    */
}

.modal_body_maintext {
    font-size: clamp(10px, 3vw, 22px);
    text-align: center;
    margin-bottom: clamp(12px, 4vw, 26px)
}

.modal_body_image img {
    height: clamp(120px, 50vw, 330px);
    margin-bottom: clamp(12px, 4vw, 26px);
}

.modal_buttons_container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.modal_button {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 10px;
    padding: clamp(8px, 4vw, 20px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    
}

.modal_button p {
    font-size: clamp(12px, 4vw, 26px);
    text-align: center;
}

.primary_button {
    background-color: rgb(210, 255, 210);
    color: rgb(0, 20, 0);
    min-width: clamp(60px, 30vw, 150px);
}

.primary_button b {
    font-size: clamp(10px, 3vw, 20px);
}

.cancel_button b {
    font-size: clamp(10px, 2vw, 18px);
}

.header {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    height: clamp(40px, 4vw, 60px);
    z-index: 100;
    box-shadow: 0px 0px 10px -2px black;
    text-decoration: none;

    font-size: clamp(16px, 2vw, 24px);
    color: white;
    margin: 0; 
    margin-bottom: 5px;
    text-indent: 0;
    padding: 0; 

    background-color: #3c3c3c;
    
    /*
    background-color: #4c4c4c;
    border: 3px solid #2c24fe;
    box-sizing: border-box;
    */
    
}

.full_screen_document {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}


.full_screen_document_header {
    position: sticky;
    top: clamp(40px, 4vw, 60px);
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    min-height: clamp(40px, 4vw, 60px);

}

textarea {
    width: 100%; /* Make it take up full width of its container */
    box-sizing: border-box; /* Include padding and border in the width */
    resize: vertical; /* Allow resizing vertically only */
    font-family: inherit; /* Inherit font styles from parent */
    border: 2px solid #adadad;

    border-radius: clamp(8px, 1vw, 12px);
    padding: clamp(6px, 4vw, 8px);
}

select {
    border: 2px solid #adadad;
    border-radius: clamp(8px, 1vw, 12px);
    padding: clamp(2px, 2vw, 4px);
}

input[type=date] {
    border: 2px solid #adadad;
    border-radius: clamp(8px, 1vw, 12px);
    padding: clamp(2px, 2vw, 4px);
}

input[type=text], input[type=password], input[type=email] {
    box-sizing: border-box; 
    overflow: hidden;
    white-space: nowrap;
    height: clamp(30px, 4vw, 40px);
    border-radius: clamp(8px, 1vw, 12px);
    padding-left: clamp(6px, 4vw, 8px);
    padding-right: clamp(6px, 4vw, 8px);
}

input[type=text] {
    width: 100%;
}



.full_screen_document_close_button, .internal_page_header_back_button {
    display: flex;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    align-self: center;
    margin-left: 10px;

    /*
    border: 3px solid #2c24fe;
    box-sizing: border-box;
    */
    
}

.internal_page_header {
    position: sticky;
    top: clamp(40px, 4vw, 60px);
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    min-height: clamp(40px, 4vw, 60px);
    z-index: 30;

    /*
    border: 1px solid #2c24fe;
    box-sizing: border-box;
    */

    
}

.internal_page_content_container {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /*
    border: 1px solid #2c24fe;
    box-sizing: border-box;
    */
}

.share_links_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.a2a_kit {
    padding-top: clamp(4px, 4vw, 8px);
    max-width: 80%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin-left: clamp(4px, 4vw, 8px);
}

.a2a_kit a {
    margin-bottom: clamp(8px, 4vw, 10px);
    margin-right: clamp(4px, 4vw, 8px);
}

.a2a_follow {
    margin-left: 0;
}

.a2a_follow a:last-of-type {
    margin-bottom: clamp(8px, 4vw, 10px);
    margin-right: 0;
}


#share_page_content_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.paragraph {
    text-indent: clamp(20px, 4vw, 30px);
}


.full_screen_document_close_button img, .internal_page_header_back_button img {
    height: clamp(20px, 4vw, 30px);
}

#fsdr_header_plug, #internal_page_header_plug {
    
    display: flex;
    margin-right: 10px;

    /*
    border: 3px solid #2c24fe;
    box-sizing: border-box;
    */
    
}

#internal_page_header_plug img, #fsdr_header_plug img {
    visibility: hidden;
    height: clamp(20px, 4vw, 30px);
}

.full_screen_document_content_container {
    width: 100%;
    align-items: flex-start;
    /*
    border: 3px solid #2c24fe;
    box-sizing: border-box;  
    */
}



.header p, .header div {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
}

.header_hidden {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: clamp(40px, 4vw, 60px);
    z-index: 29;
}


.top_sticky_toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    width: 90%;
    height: clamp(30px, 4vw, 40px);
    background-color: #fbfbfb;
    top: clamp(42px, 4.4vw, 64px);
    z-index: 35;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 1px 1px 8px -4px;
}

.form_radio_group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.form_radio_group_item {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;   
}
.form_radio_group input[type=radio] {
	display: none;
}
.form_radio_group label {
	display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
	cursor: pointer;
	border-right: none;
	user-select: none;
    -webkit-tap-highlight-color: transparent;
}
/* Checked */
.form_radio_group input[type=radio]:checked + label {
	background: rgb(210, 230, 255);
    border-radius: 10px;
}
/* Active */
.form_radio_group label:active {
    border-radius: 10px;
    background-color: #f3f3f3;
}
/* Disabled */
.form_radio_group input[type=radio]:disabled + label {
	background: #ba7b7b;
	color: #666;
}
  
.main_page {
    display: flex;
    flex-direction: row;
    min-height: -webkit-fill-available;
    position: relative;
    
    /*
    border: 7px solid #2b00ff;
    box-sizing: border-box;
    */
    
}

.bottom_navbar_shadow {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(44px, 13.8vw, 52px);
    z-index: 10;
    background-color: #ffffff;

    box-shadow: 0px 10px 15px 0px black;

    border-top: 1px solid #d3d3d3;
    box-sizing: border-box;

    /*
    border: 3px solid #2c24fe;
    box-sizing: border-box;
    */
    
}

.content {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: clamp(200px, 100vw, 600px);
    padding-left: 0;
    padding-right: 0;


    /*
    border: 3px solid #24f3fe;
    box-sizing: border-box;  
    */
    
    
}

#main_paige_content {
    background-color: rgb(255, 255, 255);
    min-height: 100vh;
}


.content_window {
    display: flex;
    flex-direction: column;
    flex: 1;

    /*
    border: 5px solid #3254fc;
    box-sizing: border-box;
    */
    
}

.main_page_occupier_content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    
    padding-left: clamp(16px, 2vw, 24px);
    padding-right: clamp(16px, 2vw, 24px);
    

    padding-bottom: 10px;
    box-sizing: border-box;

    
    /*
    border: 2px solid #ff001e;
    */
    

}

.header_wrapper {
    display: flex;

    padding-left: clamp(16px, 2vw, 24px);
    padding-right: clamp(16px, 2vw, 24px);

    /*
    border: 2px solid #ffaec0;
    box-sizing: border-box;
    */
}

.header_logo_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;

    
    /*
    border: 1px solid #1c32f5;
    box-sizing: border-box;
    */
    
}

.header_logo_wrapper img {
    height: clamp(24px, 3vw, 36px);
    padding-right: clamp(6px, 2vw, 10px);
}


.header_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;

    color: #e1e1e1;
    
    /*
    border: 1px solid #1c32f5;
    box-sizing: border-box;
    */
}


.header_menu_wrapper {
    display: flex;
    flex-direction: row-reverse;
    flex: 1;

    /*
    border: 3px solid #2644ba;
    box-sizing: border-box;
    */
    

}

.header_menu {
    display: flex;
    flex-direction: row;
    gap: clamp(6px, 2vw, 10px);
    margin-left: clamp(6px, 2vw, 10px);
}

.header_button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: rgb(50, 50, 50);
    color: #c7c7c7;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
    height: clamp(30px, 3vw, 38px);
    width: clamp(30px, 3vw, 38px);
    font-size: clamp(12px, 1.3vw, 20px);
}

.pwa_install_button {

    /*
    border: 2px solid #ef1cda;
    box-sizing: border-box;
    */
    
}

.pwa_install_button img {
    filter: brightness(0) saturate(100%) invert(92%) sepia(0%) saturate(1078%) hue-rotate(159deg) brightness(91%) contrast(85%);
    height: clamp(15px, 1.5vw, 23px);
}


.header_menu_dropdown {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /*
    border: 2px solid #9eda8f;
    box-sizing: border-box;
    */
    
}

.header_menu_dropdown_button {

    /*
    border: 2px solid #ef1cda;
    box-sizing: border-box;
    */
}


.header_menu_dropdown_button:active {
    background-color: rgb(40, 40, 40);
}

.dropdown_button {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}


.dropdown_button:active {
    background-color: rgb(50, 50, 50);
}

.dropdown_button img {
    height: clamp(20px, 3vw, 30px);
    padding-right: 5px;
}

.dropdown_content {
    position: absolute;
    /* transform: translate(clamp(-108px, -9.8vw, -78px), 0%); */
    background-color: rgb(60, 60, 60);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2000;


    margin-top: clamp(120px, 14vw, 140px);
    margin-right: clamp(70px, 10vw, 100px);


    /*
    border: 2px solid #8f9eda;
    box-sizing: border-box; 
    */
}



.main_page_occupier {
    display: none;
    flex-direction: column;
    align-items: center;
    min-height: clamp(40px, 4vw, 60px);
    box-sizing: border-box; 
    
    /*
    border: 2px solid #12ff0e;
    */
    
}


#welcome_page_content, #verify_email_page_content, #verification_success_page_content {
    padding-top: clamp(30px, 4vw, 40px);
    height: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(30px, 4vw, 40px);
}

#auth_page_content {
    padding-top: clamp(30px, 4vw, 40px);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(30px, 4vw, 40px);
}

#reset_password_page_content, #reset_password_new_password_page_content {
    margin-bottom: clamp(30px, 4vw, 40px);
}

#welcome_page_content_logo, #verify_email_page img, #verification_success_page img {
    height: clamp(80px, 4vw, 100px);
    width: clamp(80px, 4vw, 100px);
    margin-bottom: clamp(20px, 4vw, 30px);
}


.main_page_occupier_segments_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;

    /*
    border: 7px solid #f200ff;
    box-sizing: border-box;
    */
}

.main_page_occupier_segment {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;

    /*
    border: 7px solid #ff001e;
    box-sizing: border-box;
    */
}



.help_hint {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%; 
    font-size: clamp(10px, 2vw, 16px);
    padding: clamp(4px, 4vw, 10px);


    box-sizing: border-box;
    border-radius: 10px;
    background-color: #f5f5f5;
    box-shadow: 2px 2px 10px -7px black;
}

.personal_info_container {
    width: 100%;
}

.info_card, .personal_info_card, .editor_form, .avatar_card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%; 
    margin-top: clamp(10px, 4vw, 20px);

    box-sizing: border-box;
    border-radius: 10px;
    background-color: #f5f5f5;
    box-shadow: 2px 2px 10px -7px black;
}

.info_card_summary, .personal_info_card_summary, .editor_form_summary, .avatar_card_summary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #d3d3d3;
    position: relative;

    padding-top: clamp(10px, 3vw, 20px);
    padding-bottom: clamp(10px, 3vw, 20px);
}

.dim_card_summary {
    display: flex;
    flex-flow: column nowrap;
}


.info_card_title p, .personal_info_card_title p, .editor_form_title p, .avatar_card_title p {
    font-weight: bold;
}

.info_card_content, .personal_info_card_content, .editor_form_content, .avatar_card_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-top: clamp(10px, 3vw, 20px);
    padding-right: clamp(10px, 3vw, 20px);
    padding-left: clamp(10px, 3vw, 20px);
    box-sizing: border-box;

    /*
    border: 2px solid #00ff00;
    */
}

.avatar_card_content {
    padding-top: clamp(4px, 1vw, 10px);
}

.info_card_content p, .personal_info_card_content p, .editor_form_content p, .avatar_card_content p {
    font-size: clamp(10px, 2vw, 16px);
}

.info_data_container {
    display: flex;
    width: 100%;
    margin-bottom: clamp(2px, 3vw, 4px);
    flex-flow: column wrap;
    
    /*
    border: 2px solid #ff001e;
    box-sizing: border-box;
    */
}

.info_data_block, .personal_info_data_block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: clamp(10px, 3vw, 12px);

    /*
    border: 2px solid #ff001e;
    box-sizing: border-box;
    */
}

.info_data_block_title, .personal_info_data_block_title {
    margin-bottom: clamp(2px, 3vw, 4px);
}

.info_data_container .info_data_main_line, .personal_info_data_container .personal_info_data_main_line, .info_data_aux_line {
    display: flex;
    width: 100%;
    justify-content: space-between;

    /*
    border: 2px solid #00c3ff;
    box-sizing: border-box;
    */
}

.info_data_aux_line {
    justify-content: flex-end;
    align-items: flex-end;
}



.toast {
    display: flex;
    justify-content: space-between; /* Чтобы текст и кнопка растягивались по ширине */
    align-items: stretch; /* Растягиваем дочерние элементы по высоте */
    align-self: center;

    z-index: 100;

    box-sizing: border-box;
    border-radius: 15px;

    box-shadow: 2px 2px 12px -7px black;

    position: fixed;
    bottom: 15%;
    height: auto;

    max-width: clamp(160px, 80vw, 500px);

    /*
    border: 2px solid rgb(255, 221, 0);
    box-sizing: border-box;
    */
}

.toast_text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Текст будет занимать оставшееся пространство */
    text-align: justify;

    padding: clamp(2px, 4vw, 8px);

    padding-right: clamp(6px, 4vw, 12px);
    padding-left: clamp(6px, 4vw, 12px);


    /*
    border: 1px solid rgb(38, 0, 255);
    box-sizing: border-box;
    */
}

.toast_text p {

    text-align: left;
    font-size: clamp(14px, 3vw, 20px);

    /*
    border: 1px solid rgb(38, 0, 255);
    box-sizing: border-box;
    */
}

.toast_close_button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto; /* Кнопка теперь растянется по высоте родителя */

    padding-right: clamp(2px, 4vw, 8px);
    padding-left: clamp(1px, 3vw, 4px);

    box-sizing: border-box;
    border-left: 1px solid rgba(120, 120, 120, 0.5);

    cursor: pointer;

    /*
    border: 1px solid rgb(38, 0, 255);
    */

    -webkit-tap-highlight-color: transparent;
}

.toast_close_button img {
    height: clamp(26px, 4vw, 32px);
}





.dims_container, .my_relations_container, .space_metrics_container {

    width: 100%;
    
    /*
    border: 7px solid #f200ff;
    box-sizing: border-box;
    */
    
}

.content_loader {
    display: flex;
    margin: auto;
    padding-top: clamp(4px, 4vw, 10px);
    padding-bottom: clamp(4px, 4vw, 10px);
    padding-right: clamp(8px, 4vw, 20px);
    padding-left: clamp(8px, 4vw, 20px);
    margin-top: clamp(10px, 4vw, 20px);
    margin-top: clamp(10px, 4vw, 20px);
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 2px 2px 10px -7px black;
    background-color: #f5f5f5;
    max-width: clamp(200px, 30vw, 300px);
}


#create_dim_loader {
    margin-top: 0;
    margin-bottom: 0;
}

/* большой отступ внизу лоадеров динамической загрузки контента */
#all_dims_content_loader, #my_dims_content_loader, #my_relations_content_loader {
    margin-bottom: 70vh;
}


.content_loader p {
    padding-right: clamp(4px, 4vw, 10px);
}

.header_hidden {
    width: 100%;
    min-height: clamp(40px, 4vw, 60px);

    /*
    border: 7px solid #f200ff;
    box-sizing: border-box;
    */
}

.bottom_navbar_hidden {
    display: none;
    width: 100%;
    height: clamp(44px, 13.8vw, 52px);
    

    /*
    border: 7px solid #f200ff;
    box-sizing: border-box;
    */
}

.main_page_mask {
    background-color: rgb(255, 255, 255);
    z-index: 10;
    flex: 1;

    /*
    border: 7px solid #ff00aa;
    box-sizing: border-box;
    */
}


.bottom_navbar {
    display: none;
    width: clamp(200px, 100vw, 600px);
    justify-content: center;
    align-items: center;
    position: fixed;

    height: clamp(44px, 13.8vw, 52px);
    background-color: white;
    bottom: 0;
    z-index: 11;

    border-top: 1px solid #d3d3d3;
    box-sizing: border-box;
    

    /*
    border: 2px solid #00ff33;
    box-sizing: border-box;
    */
    
}


.bottom_navbar_button_container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;

    /*
    border: 1px solid #00ff33;
    box-sizing: border-box;
    */
}

.bottom_navbar_button_container:active {
    background-color: #f3f3f3;
}


.bottom_navbar_button {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    margin-top: clamp(3px, 4vw, 6px);

    /*
    border: 1px solid #ff3305;
    box-sizing: border-box;
    */
    
}

.bottom_navbar_button > p {
    font-size: clamp(6px, 2vw, 10px);
}

.bottom_navbar_button > img {
    margin-bottom: clamp(2px, 3vw, 3px);
    height: clamp(24px, 2vw, 28px);

    /*
    border: 1px solid #e205ff;
    box-sizing: border-box;
    */
}

/*
.bottom_navbar_button_selector {
    height: 3px;
    position: relative;
    margin-bottom: 2px;
    padding: 0;
    background-color: black;
    width: 100%;
}
*/

/* Admin UI */
.admin {
    display: none;
}

#admin_console_page_content, #dims_creation_form_page_content {
    align-items: flex-start;
    width: 100%;
}

.admin.button {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: clamp(8px, 4vw, 16px);
    width: 100%;
}

.content_card {

    background-color: rgb(245, 245, 245);
    width: 100%;
}

.relation_card {
    border-radius: 10px;
    box-shadow: 2px 2px 10px -7px black;
    margin-top: clamp(10px, 4vw, 20px);
    transition-property: transform;
    transition: 0.5s ease-in;
}


.dim_card {
    border-radius: 10px;
    box-shadow: 2px 2px 10px -7px black;
    margin-top: clamp(10px, 4vw, 20px);
    transition-property: transform;
    transition: 0.5s ease-in;
}

.dim_card_bottom, .relation_card_bottom {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-top: 1px solid #d3d3d3;
    box-sizing: border-box;


    /*
    box-sizing: border-box;
    border: 3px solid #f92abb;
    */
}

.card_buttons_container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}


.card_buttons_left_subcontainer, .card_buttons_center_subcontainer, .card_buttons_right_subcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    /*
    box-sizing: border-box;
    border: 3px solid #2af998;
    */
}

.card_buttons_center_subcontainer p {
    font-size: clamp(12px, 2vw, 16px);
}

.dim_card_buttons_right_subcontainer {
    justify-content: flex-end;

    /*
    box-sizing: border-box;
    border: 3px solid #2af998;
    */
}



.action_button {
    min-width: clamp(60px, 20vw, 140px);
    max-height: 35px;
    height: 35px;
    min-height: 35px;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    background-color: rgb(210, 230, 255);
    border: 0px solid rgb(211, 211, 211);
    padding-left: clamp(8px, 5vw, 16px);
    padding-right: clamp(8px, 5vw, 16px);
    padding-top: clamp(2px, 5vw, 4px);
    padding-bottom: clamp(2px, 5vw, 4px);
    margin-top: clamp(2px, 2vw, 16px);
    margin-bottom: clamp(2px, 2vw, 16px);
    font-size: clamp(6px, 3vw, 24px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: none;
    transition: all 0.15s ease; /* Плавные эффекты */
}

.red_action_button {
    background-color: rgb(255, 235, 235);
}

.save_button_loader_container {
    height: 35px;
    margin-top: clamp(2px, 2vw, 16px);
    margin-bottom: clamp(2px, 2vw, 16px);
    justify-content: center;
    align-items: center;
}

.visible {
    display: flex;
}

.edit_button {
    display: flex;
}

.action_button:active {
    background-color: rgb(160, 210, 255); /* Цвет фона */
}

.red_action_button:active {
    background-color: rgb(255, 225, 225);
}

.dim_card_stars_container {
    display: flex;
    flex-wrap: wrap;
    padding-top: clamp(2px, 2vw, 12px);
    padding-bottom: clamp(2px, 2vw, 12px);
    width: 100%;
    justify-content: space-evenly;

    /*
    box-sizing: border-box;
    border: 2px solid #00ff33;
    */
}


.dim_card_emojis_container {
    display: none;
    flex-wrap: wrap;

    width: 100%;
    justify-content: space-evenly;


    /*
    box-sizing: border-box;
    border: 2px solid #00ff33;
    */
}


.dim_card_emoji {
    display: flex;
    position: relative;
    justify-content: center;
    width: clamp(20px, 7vw, 44px);

    /*
    box-sizing: border-box;
    border: 2px solid #00ff33;
    */

}

.dim_card_emoji[value="0"] img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(72%) saturate(5861%) hue-rotate(359deg) brightness(88%) contrast(118%);
}

.dim_card_emoji[value="1"] img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(42%) saturate(7498%) hue-rotate(11deg) brightness(93%) contrast(101%);
}

.dim_card_emoji[value="2"] img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(53%) saturate(7043%) hue-rotate(7deg) brightness(91%) contrast(102%);
}

.dim_card_emoji[value="3"] img {
    filter: brightness(0) saturate(100%) invert(51%) sepia(100%) saturate(1218%) hue-rotate(6deg) brightness(92%) contrast(101%);
}

.dim_card_emoji[value="4"] img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(61%) saturate(4151%) hue-rotate(14deg) brightness(101%) contrast(105%);
}

.dim_card_emoji[value="5"] img {
    filter: brightness(0) saturate(100%) invert(89%) sepia(23%) saturate(4384%) hue-rotate(10deg) brightness(92%) contrast(110%);
}

.dim_card_emoji[value="6"] img {
    filter: brightness(0) saturate(100%) invert(79%) sepia(59%) saturate(3120%) hue-rotate(26deg) brightness(105%) contrast(101%);
}

.dim_card_emoji[value="7"] img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(80%) saturate(1336%) hue-rotate(33deg) brightness(95%) contrast(104%);
}

.dim_card_emoji[value="8"] img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(22%) saturate(6237%) hue-rotate(49deg) brightness(97%) contrast(106%);
}

.dim_card_emoji[value="9"] img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(51%) saturate(7052%) hue-rotate(70deg) brightness(110%) contrast(107%);
}

.dim_card_emoji img {

    height: clamp(14px, 5vw, 28px);
}

.relation_card_values_container {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.relation_value_container {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    padding-top: clamp(2px, 2vw, 4px);
    -webkit-tap-highlight-color: transparent;

    /*
    box-sizing: border-box;
    border: 2px solid #00ff33;
    */
    
}

.info_hint_icon {
    position: absolute;
    top: clamp(0px, 11vw, 0px);
    right: clamp(-14px, -2vw, -2px);
    opacity: 0.25;
}

.info_hint_icon img {
    height: clamp(4px, 2vw, 12px);
}



#user_has_no_any_relations {
    display: none;
}

.relation_value {
    position: relative;
    padding: clamp(2px, 2vw, 4px);

    /*
    box-sizing: border-box;
    border: 2px solid #00ff33;
    */
}

.relation_value b {
    font-size: clamp(18px, 5vw, 38px);
}

#g_container {
    border-right: 1px solid rgb(211, 211, 211);
    border-left: 1px solid rgb(211, 211, 211);
    box-sizing: border-box;
}

.relation_value_container p {
    font-size: clamp(10px, 2vw, 16px);
}

.dim_card_star {
    cursor: pointer;
    display: flex;
    position: relative;
    -webkit-tap-highlight-color: transparent;

    /*
    box-sizing: border-box;
    border: 2px solid #00ff33;
    */
    
}

.dim_card_star:active p {
    color: #000000;
    font-size: clamp(4px, 2.4vw, 14px);
}

.dim_card_star p {
    text-indent: 0;
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2px, 2vw, 12px);
    font-weight: bold;
}

.dim_card_star img {
    height: clamp(20px, 7vw, 44px);
}

.all_dims_card_content_wraper, .relation_card_content_wraper, .personal_info_card_content_wraper, .editor_form_content_wraper, .avatar_card_content_wraper {
    display: flex;
    flex-direction: column;
    padding-right: clamp(10px, 3vw, 20px);
    padding-left: clamp(10px, 3vw, 20px);
    width: 100%;

    box-sizing: border-box;

    /*
    border: 2px solid #00ff33;
    */
    
}


.all_dims_card_content_wraper div, .relation_card_content_wraper div, .personal_info_card_content_wraper div, .avatar_card_content_wraper div {
    font-size: clamp(10px, 3vw, 18px);
}

.all_dims_card_content, .relation_card_content, .user_info_card_content, .editor_form_content_data_container {
    display: none;
    flex-direction: column;
    margin-bottom: clamp(10px, 3vw, 12px);
    flex-wrap: wrap;
    box-sizing: border-box;

    /*
    border: 2px solid #00ff33;
    */
}


.dim_rating_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    box-sizing: border-box;
    margin-bottom: clamp(2px, 2vw, 16px);

    /*
    border: 2px solid #00ff33;
    */
}

.dim_rating_value {
    font-size: clamp(14px, 5vw, 34px);
    font-weight: 700;
    padding-right: clamp(4px, 3vw, 10px);
    box-sizing: border-box;

    /*
    border: 2px solid #f200ff;
    */
    
}

.dim_rating_stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;

    /*
    border: 2px solid #00ff33;
    */
    
}

:root {
    --shadow-blur: clamp(1px, 0.4vw, 2px);
}

.rating_star {
    height: clamp(12px, 4vw, 30px);
    filter: brightness(0) saturate(100%) invert(71%) sepia(73%) saturate(2179%) hue-rotate(359deg) brightness(101%) contrast(105%) drop-shadow(0 0 var(--shadow-blur) black);
}

.star_10 {
    filter: brightness(0) saturate(100%) invert(68%) sepia(11%) saturate(4610%) hue-rotate(339deg) brightness(100%) contrast(102%) drop-shadow(0 0 var(--shadow-blur) black);
}

.star_1 {
    filter: brightness(0) saturate(100%) invert(70%) sepia(12%) saturate(6%) hue-rotate(25deg) brightness(90%) contrast(90%) drop-shadow(0 0 var(--shadow-blur) black);
}

.dim_rating_rates {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: clamp(4px, 3vw, 10px);
    font-size: clamp(10px, 3vw, 20px);

    /*
    border: 2px solid #ff00bb;
    */
}




.editor_form_content_data_container {
    display: flex;
    justify-content: start;
    align-items: start;
}


.all_dims_card_content b, .relation_card_content b, .info_card_content b, .user_info_card_content b, .editor_form_content_data_container b {
    display: flex;
    margin-bottom: clamp(2px, 3vw, 4px);
    font-size: clamp(10px, 3vw, 18px);
    text-align: start;

    /*
    box-sizing: border-box;
    border: 3px solid #2aaaf9;
    */
}

.all_dims_card_content p, .relation_card_content p, .user_info_card_content p, .editor_form_content_data_container p {
    display: flex;
    text-align: justify;
    font-size: clamp(10px, 2vw, 16px);

    /*
    box-sizing: border-box;
    border: 3px solid #f92abb;
    */
}


.card_details summary {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;

    /*
    border-bottom: 1px solid #d3d3d3;    
    */

    box-sizing: border-box;
    cursor: pointer;
    transition: margin 150ms ease-out;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;

    /*
    border: 2px solid #00ff33;
    */
    
}

.dims_card_summary {
    padding-left: clamp(4px, 3vw, 20px); 
}


.card_details summary:active {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgb(236, 236, 236);

}

.card_details[open] summary:active {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgb(236, 236, 236);

}

/* Chrome, Safari, and other WebKit-based browsers */
.card_details summary::-webkit-details-marker { 
    display: none;
}
  
/* Firefox */
.card_details summary::marker {
    display: none;
}
  


.all_dims_card_name {
    display: flex;
    flex-wrap: wrap;
    padding-left: clamp(5px, 2vw, 10px);
    

    flex: 1 1 0; /* растягивается и заполняет всё оставшееся пространство */

}

.all_dims_card_summary_wraper {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;

    padding-top: clamp(8px, 2vw, 16px);
    padding-bottom: clamp(4px, 2vw, 16px);
    padding-right: clamp(5px, 3vw, 10px);
    
    /*
    border: 2px solid #fc32cd;
    */
    
    
}

.relation_card_summary_wraper {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;
    padding-left: clamp(4px, 3vw, 20px); 

    padding-top: clamp(10px, 1vw, 16px);
    padding-bottom: clamp(3px, 1vw, 6px);

    /*
    border: 2px solid #fc32cd;
    */
    
    
    
}

.guest_avatar {
    box-sizing: border-box;
    border-radius: 100px;
    margin-right: clamp(4px, 3vw, 20px);
    margin-bottom: clamp(2px, 1vw, 8px);
    
    
    flex-shrink: 0; 

    height: clamp(50px, 10vw, 100px);
    width: clamp(50px, 10vw, 100px);

    /*
    border: 2px solid #fc32cd;
    */

}

.guest_avatar img {
    border-radius: 100px;
    box-shadow: clamp(1px, 1vw, 2px) clamp(1px, 1vw, 2px) clamp(4px, 2vw, 8px) 0 rgba(0,0,0,0.5);
}

.relation_card_summary_text_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;


    /*
    border: 2px solid #2ad72d;
    */

}

.relation_card_summary_name_wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;

    margin-bottom: clamp(1px, 1vw, 2px);

    /*
    border: 2px solid #4ffd1a;
    */
    
}

.relation_card_summary_extra_wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
    width: 100%;

    /*
    border: 2px solid #1a62fd;
    */
}

.online_offline_status {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;

    margin-top: clamp(0px, 0.2vw, 4px);
    margin-bottom: clamp(0px, 0.2vw, 4px);
}

.relation_extra_text {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;

    font-size: clamp(8px, 2vw, 12px);
}


.all_dims_card_type {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
    font-size: clamp(10px, 3vw, 24px);
    box-sizing: border-box;       
    white-space: pre-wrap;  
    word-break: keep-all;  
    flex-shrink: 1;
    min-width: 0;
    max-width: clamp(10px, 26vw, 220px);
    flex-grow: 0;

    /*
    border: 2px solid #00ff33;
    */
}

.all_dims_card_type b {
    text-align: center;
    white-space: pre-wrap;
    word-break: keep-all;
}

.all_dims_card_name, .relation_card_name {
    font-size: clamp(10px, 3vw, 24px);
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;

    /*
    border: 2px solid #b12aff;
    */
    
    
    
}

.dim_menu_button {
    position: relative;
    display: flex;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    justify-content: center;
    align-items: center;
    margin-right: clamp(2px, 2vw, 4px);
    min-width: clamp(16px, 5vw, 40px);
    min-height: clamp(16px, 5vw, 40px);
    box-sizing: border-box;

    /*
    border: 2px solid #4964ff;
    */
    
    
    
}

.dim_menu_icon {
    display: flex;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    justify-content: center;
    align-items: center;
    min-width: clamp(16px, 5vw, 40px);
    min-height: clamp(16px, 5vw, 40px);
    box-sizing: border-box;
    border-radius: 50%;

    background-color: rgba(0, 0, 0, 0.04);
    transition: background-color 0.2s ease;
}

.dim_menu_button img {
    height: clamp(10px, 4vw, 30px);
    pointer-events: none; /* чтобы наведение считалось на div, а не на img */
    filter: brightness(0) saturate(100%) invert(54%) sepia(2%) saturate(13%) hue-rotate(53deg) brightness(95%) contrast(89%);
}

.dim_menu_button:active .dim_menu_icon {
    background-color: rgba(0, 0, 0, 0.12);
}

.dim_menu_button:active .dim_menu_icon img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(0%) hue-rotate(190deg) brightness(99%) contrast(101%);
}

.dim_menu_dropdown  {
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: rgb(245, 245, 245);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.3);
    box-sizing: border-box;
    border-radius: 10px;
    z-index: 20;

    right: 0px;
    margin-right: clamp(30px, 6vw, 50px);

}

.dim_menu_dropdown_button {
    display: none;
    white-space: nowrap; /* не переносить текст */
    flex-direction: row;
    width: 100%;
    height: 100%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    justify-content: flex-start;
    align-items: center;
    min-width: clamp(20px, 6vw, 40px);
    min-height: clamp(20px, 6vw, 40px);
    box-sizing: border-box;

    border-top: 1px solid #d3d3d3;

    padding: clamp(6px, 4vw, 12px);
}

.dim_menu_dropdown_button:active {
    background-color: rgb(236, 236, 236);
}

.dim_menu_dropdown_button:first-child {
    border-top: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.dim_menu_dropdown_button:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.dim_menu_dropdown_button img {
    height: clamp(18px, 3.2vw, 30px);
    margin-right: clamp(4px, 4vw, 8px);
}


.card_details[open] summary {
    margin-bottom: 10px;
    border-bottom: 1px solid #d3d3d3;
    background-color: #f5f5f5;   
    box-sizing: border-box;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}




.card_details[open] {
    background-color: #fcfcfc;    
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.relation_card_mailto_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: clamp(4px, 2vw, 12px);
    transition: all 0.15s ease; /* Плавные эффекты */

}

.relation_card_mailto_button:active img {
    -webkit-tap-highlight-color: transparent;
    filter: brightness(0) saturate(100%) invert(64%) sepia(12%) saturate(1685%) hue-rotate(178deg) brightness(102%) contrast(101%);
}

.relation_card_mailto_button img {
    height: clamp(12px, 5vw, 30px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    filter: brightness(0) saturate(100%) invert(93%) sepia(62%) saturate(7475%) hue-rotate(173deg) brightness(93%) contrast(100%);
    transition: all 0.15s ease; /* Плавные эффекты */

}

.small_help_hint {
    display: none;
    justify-self: center;
    align-self: center;
    margin-top: clamp(10px, 4vw, 20px);
    margin-bottom: clamp(4px, 4vw, 8px);
    width: clamp(200px, 30vw, 380px);
}

#menu_page_content, #home_page_content, #manage_account_page_content {
    justify-content: flex-start;
    align-items: center;
    width: 100%;


    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
}

.page_title_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: clamp(40px, 4vw, 60px);


    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
}

.internal_page_header_title, .full_screen_document_header_title {
    display: flex;
    justify-content: center;
    align-items: center;

    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */

}

.internal_page_content_container {
    width: 100%;
}

.page_title {
    display: flex;
    justify-content: center;


    /*
    border: 1px solid #ff0afb;
    box-sizing: border-box;
    */
}

.page_title p , .full_screen_document_header_title p {
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 800;
    text-align: center;

    /*
    border: 1px solid #0affbe;
    box-sizing: border-box;
    */

}

.ob_title p {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    text-align: center;
}

.page_main_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin-top: clamp(2px, 4vw, 4px);
    margin-bottom: clamp(2px, 4vw, 4px);
    font-size: clamp(14px, 2vw, 20px);

    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
    
}

.page_main_text > div {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /*
    border: 2px solid #249442;
    box-sizing: border-box;
    */
}


.page_main_text p {
    text-align: center;
}


.user_email_line {
    font-weight: 800;
    font-size: clamp(20px, 3vw, 30px);
    text-align: center;
    word-break: break-word;
    white-space: normal;
    margin: 0.5em 0;
}

.OB1_join_text {
    line-height: 1.5; /* добавляет расстояние между строками */
}

.inline_metric {
    border: 2px solid rgb(185, 216, 255);
    background-color: rgb(233, 243, 255);
    border-radius: 100px;
    padding: 0px 5px;
    font-weight: bold;
}

.page_small_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: clamp(2px, 4vw, 4px);
    margin-bottom: clamp(2px, 4vw, 4px);
    font-size: clamp(10px, 1.4vw, 16px);
    color: #8a8a8a;

    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
}

.page_small_text p {
    text-align: center;
}

.agreements_text {
    width: 100%;
    font-size: clamp(12px, 2vw, 14px);
}

.i_agree_label p {
    font-size: clamp(14px, 2vw, 16px);
}

.custom_link {
    -webkit-tap-highlight-color: transparent;
}

.custom_link p {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    cursor: pointer;
    text-align: center;
    font-size: clamp(12px, 2vw, 14px);
}

.custom_link a {
    color: rgb(0, 0, 0);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    cursor: pointer;
    text-align: center;
}

.custom_link a:visited {
    color: rgb(30, 30, 30);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    cursor: pointer;
    text-align: center;
  }

.auth_buttons_container, .big_action_buttons_container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 80%;
    margin-top: clamp(10px, 4vw, 20px);

    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
}

.auth_button, .big_action_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: rgb(210, 230, 255);
    min-width: 80px;
    min-height: 80px;
    font-size: clamp(12px, 4vw, 20px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.15s ease; /* Плавные эффекты */
}

.ob_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    box-sizing: border-box;
    background-color: rgb(210, 230, 255);
    min-width: 80px;
    font-size: clamp(12px, 4vw, 20px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.15s ease; /* Плавные эффекты */

    border-radius: 100px; 
    height: clamp(30px, 10vw, 80px);

}

.big_action_button {
    background-color: rgb(245, 245, 245); 
}


.auth_button.disabled {
    background-color: rgb(218, 218, 218);
    cursor: default;
}

.auth_button.disabled:active {
    background-color: rgb(218, 218, 218);
    cursor: default;
}

.auth_button.disabled b {
    color: rgb(164, 164, 164);
}

.auth_button:active {
    background-color: rgb(100, 180, 255);
}

.auth_button b {
    text-align: center;
    margin-left: clamp(8px, 4vw, 16px);
    margin-right: clamp(8px, 4vw, 16px);
}

.auth_page_agreements_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    
    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
}

.agreement_checks_container {
    margin-top: clamp(8px, 4vw, 16px);
}

.check_container {
    display: flex;

    justify-content: center;
    align-items: center;

    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
}

input.i_agree_check {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(8px, 4vw, 16px);
    margin-right: clamp(8px, 4vw, 16px);

}

#agreement_1 {
    position: absolute;
    top: 0%;
}

.auth_page_buttons_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;

    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
    
}

#main_auth_buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;

    margin-top: clamp(8px, 4vw, 16px);
    margin-bottom: clamp(32px, 4vw, 64px);

    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
}

#aux_auth_buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    row-gap: clamp(4px, 4vw, 6px)

    /*
    border: 2px solid #ff0afb;
    box-sizing: border-box;
    */
}

#aux_auth_buttons div {
    margin-left: clamp(8px, 4vw, 16px);
    margin-right: clamp(8px, 4vw, 16px);
}

.menu_page_buttons_container, .home_page_buttons_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: clamp(200px, 80vw, 500px);

    margin-top: clamp(8px, 4vw, 16px);

    background-color: rgb(245, 245, 245);  
    box-sizing: border-box;
    border-radius: clamp(8px, 2.4vw, 20px);

    /*
    border: 2px solid #00ff33;
    box-sizing: border-box;
    */
    
}

#home_page_buttons_container {
    width: clamp(200px, 56vw, 340px);
}

.menu_page_button, .home_page_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: clamp(8px, 1.4vw, 12px);
    padding-right: clamp(8px, 1.4vw, 12px);
    padding-bottom: clamp(8px, 1.4vw, 12px);
    box-sizing: border-box;
    border-top: 1px solid #d3d3d3;
    -webkit-tap-highlight-color: transparent;

}

.red_button {
    background-color: rgb(255, 235, 235);
    border-bottom-left-radius: clamp(8px, 2.4vw, 20px);
    border-bottom-right-radius: clamp(8px, 2.4vw, 20px);
}

.gray_button {
    background-color: rgb(245, 245, 245);  
}

.menu_page_button p, .home_page_button p {
    font-size: clamp(12px, 3.5vw, 20px);
    margin-right: 5px;
    flex-grow: 1;
}

.menu_page_button_icon, .home_page_button_icon {
    margin-left: clamp(10px, 2vw, 16px);
    margin-right: clamp(2px, 2vw, 12px);
}

.action_button_icon {
    margin-right: clamp(2px, 2vw, 12px);

}


.menu_page_button:first-child, .home_page_button:first-child {
    border-top: none;
}

.menu_page_button:active, .home_page_button:active, .big_action_button:active {
    background-color: rgb(236, 236, 236);
    cursor: pointer;
}

.red_button:active {
    background-color: rgb(255, 225, 225);
    cursor: pointer;
    border-bottom-left-radius: clamp(8px, 2.4vw, 20px);
    border-bottom-right-radius: clamp(8px, 2.4vw, 20px);
}

.menu_page_button:first-child:active, .home_page_button:first-child:active {
    border-top-left-radius: clamp(8px, 2.4vw, 20px);
    border-top-right-radius: clamp(8px, 2.4vw, 20px);
}



.menu_page_button:last-child:active, .home_page_button:last-child:active {
    border-bottom-left-radius: clamp(8px, 2.4vw, 20px);
    border-bottom-right-radius: clamp(8px, 2.4vw, 20px);
}

.menu_page_button_icon, .action_button_icon, .home_page_button_icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu_page_button_icon_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;

}


.menu_page_button_icon img, .home_page_button_icon img {
    height: clamp(16px, 4vw, 26px);
}

.menu_page_button_icon_right img {
    height: clamp(10px, 2.4vw, 16px);
}



.custom_cta_button {
    display: flex;
    flex-flow: row nowrap;
    min-width: clamp(60px, 20vw, 140px);
    border-radius: clamp(8px, 4vw, 20px);
    justify-content: center;
    align-items: center;
    padding-left: clamp(2px, 2vw, 8px);
    padding-right: clamp(8px, 5vw, 16px);
    padding-top: clamp(4px, 5vw, 18px);
    padding-bottom: clamp(4px, 5vw, 18px);
    margin-top: clamp(4px, 4vw, 8px);
    margin-bottom: clamp(4px, 4vw, 8px);
    font-size: clamp(6px, 3vw, 24px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    transition: all 0.15s ease; /* Плавные эффекты */

}

.blue_button {
    background-color: rgb(55, 135, 255);
}

.custom_copy_link_button {
    display: flex;
    flex-flow: row nowrap;
    min-width: clamp(80px, 20vw, 140px);
    border-radius: clamp(8px, 4vw, 20px);
    justify-content: center;
    align-items: center;
    background-color: rgb(159, 159, 159);
    padding-left: clamp(4px, 4vw, 16px);
    padding-right: clamp(8px, 5vw, 16px);
    padding-top: clamp(4px, 5vw, 18px);
    padding-bottom: clamp(4px, 5vw, 18px);
    font-size: clamp(6px, 3vw, 24px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    transition: all 0.15s ease; /* Плавные эффекты */

}

.custom_copy_link_button p {        
    font-size: clamp(12px, 5vw, 26px);
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 800;
    padding-right: clamp(8px, 5vw, 16px);
    text-align: center;

    margin-right: clamp(2px, 2vw, 4px);
    margin-top: clamp(6px, 4vw, 8px);
    margin-bottom: clamp(6px, 4vw, 8px);
    transition: all 0.15s ease; /* Плавные эффекты */

}

.custom_cta_button:active {
    background-color: rgb(55, 135, 255);
    box-shadow: 0 0 5px rgb(55, 135, 255);
}

.custom_cta_button:active p {
    font-size: clamp(13px, 5.2vw, 28px);
}

.custom_copy_link_button:active {
    background-color: rgb(159, 159, 159);
    box-shadow: 0 0 5px rgb(120, 120, 120);
}

.custom_copy_link_button:active p {
    font-size: clamp(13px, 5.2vw, 28px);
}

.custom_cta_button p {
    font-size: clamp(12px, 5vw, 26px);
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 800;
    transition: all 0.15s ease; /* Плавные эффекты */

}

.custom_copy_link_button img {
    height: clamp(20px, 6vw, 34px);
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7497%) hue-rotate(225deg) brightness(101%) contrast(100%);
}

.custom_cta_button img {
    height: clamp(20px, 6vw, 34px);
    filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7497%) hue-rotate(225deg) brightness(101%) contrast(100%);
}

.version_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
}

.version_container p {
    font-size: clamp(10px, 1.4vw, 16px);
    color: #8a8a8a;
}

p.white-text {
    color: rgb(255, 255, 255);
}

.header_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: clamp(8px, 2vw, 12px);
    padding-bottom: clamp(8px, 2vw, 12px);
    
}

.header_1 p {
    font-size: clamp(18px, 4vw, 32px);
    font-weight: bold;
    text-align: center;
}

.paragraph {
    text-indent: clamp(20px, 4vw, 30px);
    text-align: justify;
    width: 100%;
    padding-top: clamp(8px, 2vw, 12px);
    padding-bottom: clamp(8px, 2vw, 12px);
}

li {
    text-indent: 0;
}

.paragraph_separate {
    margin-top: clamp(4px, 2vw, 8px);
    text-align: center;
}

table {
    margin-top: clamp(8px, 2vw, 12px);
    margin-bottom: clamp(12px, 4vw, 14px);;
    font-family: "Nunito", sans-serif;
    width: 100%; /* Таблица может быть на всю ширину, но столбцы сами решат свою ширину */
    table-layout: auto; /* Дефолтное поведение, но явно указываем */
    border-collapse: collapse;
}
  
td, th {
    border: 1px solid #000000;
    text-align: left;
    padding: 8px;

}

th {
    background-color: rgb(220, 220, 220);
}

.table_first_header {
    width: clamp(4px, 2vw, 8px);
}
  
tr:nth-child(odd) {
    background-color: rgb(245, 245, 245);
}

.table_star_container {
    padding-top: 0;
    padding-bottom: clamp(2px, 2vw, 12px);
    display: flex; /* Чтобы они не раздували ячейку */
}

.table_star img {
    height: clamp(30px, 14vw, 54px);
}

.table_star p {
    font-size: clamp(6px, 3.4vw, 14px);
}

.table_emoji_container {
    width: 100%;
    display: flex;
}

.table_emoji img {
    height: clamp(20px, 9vw, 40px);
}

.table_star:active p {
    color: #000000;
    font-size: clamp(8px, 3.8vw, 16px)
}

.in_page_image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: clamp(8px, 2vw, 12px);
    padding-bottom: clamp(8px, 2vw, 12px);
}

.in_page_image img {
    height: clamp(180px, 40vw, 300px);
}

.small_image {
    padding-top: 0;
    margin-top: 0;
}

.small_image img {
    height: clamp(60px, 16vw, 100px);
    padding-top: clamp(4px, 4vw, 20px);
}

.last_image {
    padding-bottom: 0;
    margin-bottom: 0;
}

.last_image img {
    padding-bottom: 0;
}

.border {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid #000000;
    padding-top: clamp(8px, 2vw, 12px);
    padding-bottom: clamp(8px, 2vw, 12px);
}

.avatar_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    box-sizing: border-box;

    /*
    border: 1px solid #000000;
    */
}

.avatar_name p {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    margin-top: clamp(4px, 2vw, 8px);
}

.user_avatar {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border-radius: 1000px;
    cursor: pointer;


    /*
    border: 2px solid #34c20d;
    */
    
}

.user_avatar img {

    height: clamp(140px, 20vw, 220px);
    box-sizing: border-box;
    border-radius: 1000px;
    box-shadow: clamp(2px, 1vw, 4px) clamp(2px, 1vw, 4px) clamp(8px, 2vw, 16px) 0 rgba(0,0,0,0.5);

    box-sizing: border-box;


    /*
    border: 2px solid #34c20d;
    */

}


.version_history_details {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  
    width: 98%;
    margin: 0 auto ;
    background-color: rgb(245, 245, 245);
    margin-bottom: 0.5rem;
    box-shadow: 0 0.1rem 1rem -.5rem rgba(0,0,0,.4);
    border-radius: 7px;
    overflow: hidden;
}

.version_history_details[open] > summary:before {
    transform: rotate(90deg);
}

.version_history_details summary::-webkit-details-marker {
    display:none;
}

.version_history_details > summary {
    transition: margin 150ms ease-out;
    box-sizing: border-box;
}

.version_history_details[open] > summary {
    margin-bottom: 10px;
}

.version_history_details > ul {
    padding-bottom: 10px;
    padding-left: 2.2rem;
    margin-right: 1rem;
    margin-bottom: 0
}  

.version_history_summary {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: clamp(10px, 5vw, 20px);
    font-weight: 800;
    padding: clamp(6px, 2vw, 8px);
    background: rgb(220, 220, 220);
    padding-left: 2.2rem;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.version_history_summary:before {
    content: '';
    border-width: .4rem;
    border-style: solid;
    border-color: transparent transparent transparent #000000;
    position: absolute;
    left: 1rem;
    transform: rotate(0);
    transform-origin: .2rem 50%;
    transition: .25s transform ease;
}

.extra_tools_button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    min-height: 50px;
    min-width: 50px;
    max-height: 50px;
    max-width: 50px;
    cursor: pointer;

    background-color: rgb(210, 230, 255);
    color: white; 
    border-radius: 20px; 
    transition: all 0.15s ease; /* Плавные эффекты */
    -webkit-tap-highlight-color: transparent;
}

.extra_tools_button_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    width: 100%;
    margin: 10px;
}

.in_development_tag {
    box-sizing: border-box;
    background-color: rgb(205, 255, 222);
    padding: clamp(4px, 4vw, 6px);
    padding-left: clamp(10px, 4vw, 16px);
    padding-right: clamp(10px, 4vw, 16px);
    border-radius: 100px;
}


.extra_tools_button img {
    height: 20px;
}

.extra_tools_button:active {
    background-color: rgb(100, 180, 255);
}

.extra_tools_button_shadow {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.search_container { 
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
}

.search_input_container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
}

.search_input {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
    border: 2px solid #adadad;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding-left: 20px;
    padding-right: 15px;
    margin-right: 10px;
} 

.password_input_container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
}

.toggle_password {
    position: absolute;
    right: clamp(-50px, -3vw, -20px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.too_long_loading_container {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
}

.all_dims_card_new_tag {
    position: absolute;
    background-color: rgb(255, 50, 50);
    border-radius: 50px;
    padding-left: 8px;
    padding-right: 5px;
    padding-top: clamp(1px, 1vw, 5px);
    padding-bottom: clamp(1px, 1vw, 5px);
    color: white;
    font-size: clamp(7px, 1.6vw, 14px);
    font-weight: 800;
    margin-top: clamp(-26px, -3.4vw, -16px);


}

.all_dims_card_new_tag span {
    text-shadow: 0px 0px 3px white; 
}

#test_dims_page_content_container, #test_users_page_content_container {
    align-items: flex-start;
    justify-content: flex-start;
}

.info_hint {
    z-index: 10;
    position: absolute;
    border: 1px solid #acacac;
    box-sizing: border-box;
    background: #ededed;
    box-shadow: 0 0.2rem 1rem 0rem rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    text-indent: 0;
    padding: clamp(2px, 1vw, 8px);

    top: clamp(42px, 10vw, 70px);

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.last_info_hint {
    top: auto;
    bottom: clamp(42px, 9.5vw, 74px);
}

.info_hint p {
    font-size: clamp(6px, 2vw, 11px);
}

.action_content_loader {
    min-width: clamp(60px, 20vw, 140px);
    max-height: 35px;
    height: 35px;
    min-height: 35px;
    box-sizing: border-box;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    background-color: rgb(210, 230, 255);
    border: 0px solid rgb(211, 211, 211);
    padding-left: clamp(8px, 5vw, 16px);
    padding-right: clamp(8px, 5vw, 16px);
    padding-top: clamp(2px, 5vw, 4px);
    padding-bottom: clamp(2px, 5vw, 4px);
    margin-top: clamp(2px, 2vw, 16px);
    margin-bottom: clamp(2px, 2vw, 16px);
    font-size: clamp(6px, 3vw, 24px);

    /*
    border: 2px solid #00ff33;
    */
}

.action_content_loader p {
    margin-right: clamp(5px, 2vw, 10px);
}

.um_extra_tools_button {
    border-radius: 30px;
    min-height: 80px;
    min-width: 80px;
    max-height: 80px;
    max-width: 80px;
}

.um_extra_tools_button img {
    height: 40px;
}

.extra_tools_container {
    display: none;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    row-gap: clamp(4px, 4vw, 6px);

    bottom: 120%;    /* Отступ от нижнего края */
    right: 3%;
    z-index: 90;
}

.action_button_icon img {
    height: clamp(12px, 3.8vw, 20px);
}

.filepond--root {
    height: clamp(100px, 30vw, 220px);
    width: clamp(100px, 30vw, 220px);
}

.filepond--drop-label label {
    font-size: clamp(6px, 3vw, 24px) !important; /* поменяй под нужный размер */
    box-sizing: border-box;
    width: clamp(100px, 25vw, 200px);
}
  
/* Размер ссылки "Выберите" */
.filepond--label-action {
    font-size: clamp(6px, 3vw, 24px) !important; /* можно задать свой размер */
    font-weight: bold; /* можно усилить акцент */
}

.filepond--credits {
    display: none !important;
}

#cropper_save_button {
    z-index: 100;
}

/* Только для десктопов — добавляем задержку */
@media (hover: hover) and (pointer: fine) {
    .info_hint {
      transition-delay: 0.5s;
    }
}

@media (hover: hover) {

    .form_radio_group label:hover {
        border-radius: 10px;
        background-color: #f3f3f3;
    }

    .extra_tools_button:hover {
        background-color: rgb(100, 180, 255); /* Затемнение при наведении */
    }    

    .card_details[open] summary:hover {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background-color: rgb(236, 236, 236);
    
    }

    .card_details summary:hover {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background-color: rgb(236, 236, 236);
    
    }

    .dim_card_star:hover p {
        color: #000000;
        font-size: clamp(4px, 2.4vw, 14px);
    }

    .table_star:hover p {
        color: #000000;
        font-size: clamp(8px, 3.8vw, 16px)
    }

    .action_button:hover {
        background-color: rgb(100, 180, 255);
    }

    .red_action_button:hover {
        background-color: rgb(255, 225, 225);
    }

    .dim_menu_button:hover .dim_menu_icon {
        background-color: rgba(0, 0, 0, 0.12);
    }

    .dim_menu_button:hover .dim_menu_icon img {
        filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(0%) hue-rotate(190deg) brightness(99%) contrast(101%);
    }

    .relation_card_mailto_button:hover img {
        filter: brightness(0) saturate(100%) invert(64%) sepia(12%) saturate(1685%) hue-rotate(178deg) brightness(102%) contrast(101%);
    }

    .bottom_navbar_button_container:hover {
        background-color: #f3f3f3;
    }

    .dropdown_button:hover {
        background-color: rgb(50, 50, 50);
    }

    .header_menu_dropdown_button:hover {
        background-color: rgb(40, 40, 40);
    }

    .menu_page_button:hover, .home_page_button:hover, .big_action_button:hover {
        background-color: rgb(236, 236, 236);
        cursor: pointer;
    }

    .red_button:hover {
        background-color: rgb(255, 225, 225);
        cursor: pointer;
        border-bottom-left-radius: clamp(8px, 2.4vw, 20px);
        border-bottom-right-radius: clamp(8px, 2.4vw, 20px);
    }

    .menu_page_button:first-child:hover, .home_page_button:first-child:hover {
        border-top-left-radius: clamp(8px, 2.4vw, 20px);
        border-top-right-radius: clamp(8px, 2.4vw, 20px);
    }

    .menu_page_button:last-child:hover, .home_page_button:last-child:hover {
        border-bottom-left-radius: clamp(8px, 2.4vw, 20px);
        border-bottom-right-radius: clamp(8px, 2.4vw, 20px);
    }

    .auth_button:hover {
        background-color: rgb(100, 180, 255);
    }

    .auth_button.disabled:hover {
        background-color: rgb(218, 218, 218);
        cursor: default;
    }

    .custom_cta_button:hover {
        background-color: rgb(55, 135, 255);
        box-shadow: 0 0 5px rgb(55, 135, 255);
    }
    
    .custom_cta_button:hover p {
        font-size: clamp(13px, 5.2vw, 28px);
    }

    .custom_copy_link_button:hover {
        background-color: rgb(159, 159, 159);
        box-shadow: 0 0 5px rgb(120, 120, 120);
    }
    
    .custom_copy_link_button:hover p {
        font-size: clamp(13px, 5.2vw, 28px);
    }

    .dim_menu_dropdown_button:hover {
        background-color: rgb(236, 236, 236);
    }


}

.hidden {
    display: none;
}

.visible {
    display: flex;
}


/*
<!---- What the CSSck are you looking for here? 🤨 ----> 
<!---- Какого CSSа ты тут забыл? 🤨 ----> 
*/