.c_groboldov
{
    font-family: 'Groboldov';
}

.c_loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}
.c_loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
.c_bg_white {
    background: #ffffff;
}
.c_recover_form {
    max-width: 400px; margin: 20px auto 0 auto;
}

.c_recover_divider {
    height: 12px;
}

.c_recover_success_message {
    padding: 20px;
    background: #eaf6e9;
    border: 1px solid #c9e6c5;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.c_recover_error_message {
    padding: 20px;
    background: #fbeaea;
    border: 1px solid #f3c0c0;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: #7b2c2c;
}

.c_show_password {
    top: 30px!important;
}

.c_modal_cropper {
    max-width: 840px;
    width: auto;
    margin: 40px auto;
    padding: 0;
    background: #fffbe6;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.c_modal_cropper .modal-body {
    overflow: auto;
    padding: 10px;
    flex: 1 1 auto;
    text-align: center;
}

.c_modal_cropper .modal-footer {
    flex-shrink: 0;
    padding: 15px;
    border-top: 1px solid #e3d5a4;
}

.c_cropper_wrapper {
    max-width: 100%;
    max-height: 600px;
    overflow: hidden;
    text-align: center;
}

.c_cropper_image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.c_profile_avatar  {
    max-width: none!important;
    height: auto!important;
    width: auto!important;
}

.c_remove_picture {
    all: unset;
    box-shadow: 0px 4px 4px rgba(85, 59, 22, 0.25);
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    background: #C75734;
    padding: 5px 10px;
    height: 20px;   
    position: relative;
    justify-content: center;
    cursor: pointer;
    transition: 0.1s all ease-in-out;
    font-family: 'Groboldov';
    font-size: 16px;
    line-height: 20px;
    color: var(--color-cream);
}

.с_icon_decline .с_icon_stroke {
  stroke: #553B16;
  transition: stroke 0.2s ease;
}

.с_icon_decline:hover .с_icon_stroke {
  stroke: white;
}

.c_btn_with_tooltip {
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
}

.c_btn_with_tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%; /* или top: 120% если снизу */
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 2px 10px;
  font-size: 14px;
  color: #fff;
  background: #333;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 101;
}

.c_btn_with_tooltip:hover::after {
  opacity: 1;
}

.c_msg_success {  
  color: var(--color-alert-border-success);
}

.c_online_checkbox {
    background: var(--color-white)!important;
}

.c_info_shop {
    text-decoration: none!important;
}
.c_pack_info {
    display: block;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px dashed var(--color-lightbrown);
    text-align: center;
}
.c_pack_info p {
    margin-top: 0;
    margin-bottom: 0;
}

.c_fb_wrapper {
    max-width: 800px;
    width: 100%;    
}

.c_action_icons, .c_btn_with_tooltip:hover .c_action_icons_dark {
    font-size: 24px;
    color: white;
}

.c_action_icons_dark
{
    color: #642C01;
}

.c_friends_list {
    padding-top: 0!important;
}
.c_friends_list h3 {
    margin-top: 0;
}

.c_activate_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.c_activate_title {
    margin-top: 0!important;
}

.c_text_danger {
    color: var(--color-alert-border-error)!important;
}

.c_text_success {
    color: var(--color-alert-border-success)!important;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

