/* assets/css/style.css */
@import url('all.min.css');
@import 'mobile.css';
@import 'tablet.css';
@import 'modals2.css';
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #101315;
}
.breadcrumbs {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 14px;
}

.breadcrumb-item {
    color: #DADBDB;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item:hover {
    color: #9C9A9C;
}

.breadcrumb-separator {
    color: #DADBDB;
    font-size: 16px;
    line-height: 1;
}

.breadcrumb-item.active {
    color: #9C9A9C;
    font-weight: 500;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 5px 20px;
        font-size: 12px;
        padding: 8px 0;
    }
    
    .breadcrumb-separator {
        font-size: 14px;
    }
}
header {
    background-color: #1E1F23;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.lightbox {
    display: none;
    position: fixed;
    z-index: 100;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    display: block;
    margin: auto;
    width: auto;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#modalImage {
    width: auto;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}
.close, .prev, .next {
    color: white;
    position: absolute;
    font-size: 30px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close {
    top: 10px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    right: 10px;
    background-color: #4C4E51;
    color: #FFC83A;
    width: 40px;
    height: 40px;
    z-index: 1000;
}

.prev, .next {
    top: 50%;
    transform: translateY(-50%);
}

.prev {
    left: 35px;
}

.next {
    right: 35px;
}

.close:hover, .prev:hover, .next:hover {
    color: #bbb;
}
.user_notice {
    height: 30vh;
    width: 100%;
    display: block;
    margin: 50px auto  ;
    font-size: 32px;
}
.user_notice p {
    display: block;
    text-align: center;
    margin-bottom: 50px;
}
.user_notice button.btn-error {
    display: block;
    width: 150px;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background-color: #E2B235;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
@media (min-width: 1200px) {
header {
    background-color: #1E1F23;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header {
    max-width: 1200px;
    margin: 0 auto;
    height: 60px;;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 40px;
}
.header_items {
    display: flex;
    gap: 30px;
}
a.header_item {
    color: #fff;
    text-decoration: none;
}
a.header_item:hover {
    color: #FFC83A;
}
a.header_item.active {
    color: #FFC83A;
}

.header_city {
    display: flex;
    align-items: center;
    gap: 0;
}
.header_city p {
    color: #E3B337;
    font-size: 16px;
}
.city-dropdown {
    position: relative;
    display: inline-block;
}
.city-dropdown p {
    color: #fff;
    font-size: 16px;
}
.city-selector {
    cursor: pointer;
    color: #fff;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}
.city-selector i:first-child {
    display: none;
}
.city-list {
    display: none;
    position: absolute;
    top: calc(100% + 13px);
    left: 0;
    background: #2A2B30;
    border-radius: 0px 0px 8px 8px;
    padding: 8px 0;
    min-width: 200px;
    z-index: 1000;
}

.city-list.active {
    display: block;
}

.city-option {
    padding: 8px 16px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
}

.city-option:hover {
    background-color: #333;
}

.city-option.selected {
    color: #ffd700; /* Золотой цвет для выбранного города */
}





.header_auth button {
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.header_auth span {
    border-right: 1px solid #fff;
    margin: 0 10px;
}
.header_auth button:hover {
    color: #FFC83A;
}
.profile-link {
    color: #fff;
    text-decoration: none;
}
.profile-link:last-child {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}
.burger {
        display: none;
        width: 24px;
        height: 24px;
        margin: 13px auto;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
    }

    .burger span,
    .burger span:before,
    .burger span:after {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        position: absolute;
        transition: 0.3s;
    }

    .burger span {
        top: 11px;
    }

    .burger span:before {
        content: '';
        top: -8px;
    }

    .burger span:after {
        content: '';
        bottom: -8px;
    }
    .burger.active span {
    background: transparent;
}

.burger.active span:before {
    transform: rotate(45deg);
    top: 0;
}

.burger.active span:after {
    transform: rotate(-45deg);
    top: 0;
}
.mobile-menu {
    display: block;
    width: 100%;
    height: calc(100vh - 60px);
    position: fixed;
    top: 60px;
    right: 0;
    transform: translateX(100%);
    background-color: #1E1F23;
    transition: 0.2s;
}
.mobile-menu.active {
    transform: translateX(0%);
    transition: 0.2s;
}
.mobile_item {
    display: block;
    color: #fff;
    text-decoration: none;;
    border-bottom: 1px solid #C79D34;
    line-height: 50px;
    padding: 0 20px;

}
.mobile_menu_auth button {
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin: 20px 0;
    padding: 20px;
}
.mobile_menu_auth span {
    border-right: 1px solid #fff;
    margin: 0 0px;
}
main {
    max-width: 1200px;
    margin: 5px auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-gap: 20px;
    position: relative;
}
main aside {
    position: sticky;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: #1E1F23;
    height: calc(100vh - 70px);
}
section {
    
}
main aside nav ul {
    list-style: none;
}
main aside nav button {
    background-color: #9C9A9C;
    border-radius: 10px;
    margin: 20px 30px;
    width: 240px;
    line-height: 40px;
    padding: 0 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    text-align: center;
    border: none;
}
main aside nav p {
    font-size: 12px;
    display: flex;
    color: #39D39C;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    padding-bottom: 0;
}
main aside nav button i{
    line-height: 40px;
}
main aside nav button:hover {
    cursor: pointer;
}
.pc_item {
    text-decoration: none;
    color: #fff;
    display: block;
    line-height: 60px;
    padding: 0 30px;
    border-bottom: 1px solid #323236;

}
.pc_item:hover,
.pc_item.active {
    color: #FFC83A;
    border-bottom: 1px solid #FFC83A ;
}

main aside nav ul li a i {
    width: 25px;
    text-align: center;

}














.edit-input-user {
    padding: 0 8px;
    line-height: 35px;
    margin: 0;
    border: 1px solid #333;
    border-radius: 4px;
    background: #1E1E1E;
    color: #FFF;
    height: 35px;
    text-align: center;
    font-size: 14px;
    width: 100%;
    z-index: 100;
    appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.user_buttons {
    display: flex;
    align-items: center;
    padding: 20px 0px;
    gap: 20px;
}
.btn-add {
    padding: 8px 20px;
    background-color: #E2B235;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.btn-edit {
    padding: 8px 20px;
    background-color: #9C9A9C;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.btn-del {
    padding: 8px 20px;
    background-color: #444544;
    border-radius: 5px;
    border: none;
    color: #fff;
    cursor: pointer;
}
.user_header {
    background-color: #2A2B30;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
}
.profile_is_select {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user_header div p {
    display: inline;
}
.user_header div span {
    font-weight: bold;
}
.user_header div p.profile_number {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    padding: 3px 7px;
    margin-left: 5px;
}
.user_header div i {
    color: #E2B235;
    margin-right: 7px;
}
.user_header div span.pro {
    background-color: #222326;
    color: #9C9A9C;
    padding: 7px 5px;
    border-radius: 5px;
    margin-right: 10px;
}
.user_header div span.top {
    background-color: #1C1E22;
    color: #FFC83A;
    padding: 7px 5px;
    border-radius: 5px;
    margin-right: 10px;
}
.user_header div p.is_verified {
    color: #FFC83A;
    border: 1px solid #FFC83A;
    padding: 7px;
    border-radius: 5px;
    font-size: 16px;
    margin-left: 7px;
}
.user_header div p.is_noverified {
    color: #FF494A;
    border: 1px solid #FF494A;
    padding: 7px;
    border-radius: 5px;
    font-size: 16px;
    margin-left: 7px;
}
.user_header div p.created_at, .user_header div p.created_at span {
    font-size: 14px;
    font-weight: normal;
}
.user_header div p.is_active, .user_header div p.is_active i {
    margin-right: 5px;
    font-size: 14px;
    color: #39D39C;
}
.user_header div span.pro i {
    color: #9C9A9C;    
}
.user_title {
    display: block;
    width: 100%;
    background-color: #2A2B30;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 20px auto;
    border-radius: 10px;
    padding: 20px;
}

.user_main {
    display: grid;
    grid-template-columns: 2fr 4fr 3fr;
    gap: 20px;
    background-color: transparent;
    padding: 0px;
}
.user_photo {
    max-width: 196px;
    object-fit: cover;
    position: relative;
    max-height: 286px;
}
.user_photo img {
    height: 100%;
    object-fit: cover;
    max-width: 196px;
    max-height: 286px;
    border-radius: 8px;
}

.user_info, .user_data {
    font-size: 14px;
    color: #9C9A9C;
    background-color: #2A2B30;
    padding: 20px;
    border-radius: 10px;
    max-height: 286px;

}
.user_info span, .user_data span {
    color:#fff;
    font-size: 16px;
    display: block;
    line-height: 60px;
    border-bottom: 1px solid #36373C;
}
.user_data span {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.user_info span .info_city, .user_info span .info_adress {
    margin-right: 4px;
    display: inline;
    color: #FFC83A;
    border-bottom: none;
}
.user_data span .value {
    display: inline;
    text-align: right;
}
.user_info p.last {
    margin-top: 20px;
    display: block;
}
.user_price_contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-row-gap: 0;
}

.user_price, .user_contacts {
    font-size: 14px;
    color: #9C9A9C;
    background-color: #2A2B30;
    padding: 20px;
    border-radius: 10px;
}
.user_contacts i {
    display: none;
}
.user_price span, .user_contacts span {
    color:#fff;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    line-height: 60px;
    border-bottom: 1px solid #36373C;
}
.user_price span .value, .user_contacts span .value {
    display: inline;
    text-align: right;
}
.user_price span .label, .user_contacts span .label {
    display: inline;
    text-align: left;
}
.user_description {
    font-size: 16px;
    color: #fff;
    background-color: #2A2B30;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.user_photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.user_photos img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.user_photos img:hover {
    transform: scale(1.05);
}







.edit-input {
    width: 100%;
    padding: 0 8px;
    line-height: 35px;
    margin: 0;
    border: 1px solid #333;
    border-radius: 4px;
    background: #1E1E1E;
    color: #FFF;
    height: 35px;
    font-size: 14px;
    z-index: 100;
}

.edit-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #1E1E1E;
    color: #FFF;
    font-size: 14px;
    resize: vertical;
}

.photo-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.photo-upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s;
}
#mainPhotoPreview {
    width: 250px;
    height: 350px;
}

.photo-container:hover .photo-upload-overlay {
    opacity: 1;
}

.upload-btn {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.upload-btn:hover {
    background: #45a049;
    z-index: 1000;
}

.gallery-img {
    width: 250px;
    height: 100%;
    object-fit: cover;
}

   .photo-management {
  margin: 20px 0;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.photo-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  width: 196px;
  object-fit: cover;
  height: 286px;
}

.photo-wrapper {
  position: relative;
  width: 196px;
  object-fit: cover;
  height: 286px;
}

.photo-wrapper img {
   width: 196px;
  object-fit: cover;
  height: 286px;
}

.make-main-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  color: #000000 !important;
}

.photo-wrapper:hover .make-main-btn {
  opacity: 1;
}

.photo-checkbox {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.photo-checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.photo-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.action-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  cursor: pointer;
}

.action-btn:hover {
  background: #f5f5f5;
}

.user_notice {
    height: 30vh;
    width: 100%;
    display: block;
    margin: 50px auto  ;
    font-size: 32px;
}
.user_notice p {
    display: block;
    text-align: center;
    margin-bottom: 50px;
}
.user_notice button.btn-error {
    display: block;
    width: 150px;
    margin-left: 50%;
    padding: 8px 20px;
    background-color: #E2B235;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}






































































}
.logout-btn {
    background-color: #9C9A9C;
    border-radius: 10px;
    margin: 20px auto;
    width: 240px;
    line-height: 40px;
    padding: 0 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    text-align: center;
    border: none;
}







.footer {
    color: #fff;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    padding: 30px;
    display: grid;
    background-color: #1E1F23;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: end;
}

.footer-logo {
    display: block;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-contacts {
    margin-bottom: 30px;
}

.footer-messenger {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-phone {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.footer-nav h3 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFD700;
}

@media (max-width: 768px) {
    .mobile-menu {
        overflow: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-nav {
        margin-top: 20px;
    }
}

/* отзывы - новые стили */
.modal-review-new {
    padding: 0px;
}
.rating-select {
    margin-left: 0px !important;
}
.modal-review-new input {
    border-bottom: 1px solid #9C9A9C !important;
}
.modal-review-new textarea {
    width: calc(100% - 40px) !important;
    padding: 0px !important;
    margin-left: 20px !important;
    margin-bottom: 5px !important;
    border-bottom: 1px solid #9C9A9C !important;
}
.modal-review-new button[type=button] {
    width: auto !important;
    margin-top: 20px !important;
    margin-left: 20px !important;
}
.modal-review-new button[type=submit] {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    margin-left: 20px !important;
}
.form-group.textarea {
    border: none !important;
}
@media (max-width: 768px) {
    .modal-review-new {
        width: calc(100% - 40px) !important;
        padding: 0px !important;
    }
    .rating-select {
        margin-left: 0px !important;
    }
}




#reviewComment, #reviewName {
    border-top: 1px solid #2A2A2A !important;
    border-left: 1px solid #2A2A2A !important;
    border-right: 1px solid #2A2A2A !important;
    border-bottom: 1px solid #9C9A9C !important;
    border-radius: 3px;
}
#reviewComment:focus {
    border: 1px solid #339474 !important;
}
#reviewName:focus {
    border: 1px solid #339474 !important;
}

.make-main-btn {
    background: linear-gradient(90deg,rgba(226, 178, 53, 1) 0%, rgba(247, 232, 190, 1) 50%, rgba(226, 178, 53, 1) 100%) !important;
    width: 100% !important;
    padding: 8px 5px !important;
    color: #000000 !important;
}
#addPhotosBtn {
    background-color: #E2B235;
    border: 0px solid #339474 !important;
    color: #000000 !important;
}
#deleteSelectedBtn {
    background-color: #f44336;
    border: 0px solid #339474 !important;
    color: #000000 !important;
}

@media (max-width: 768px) {
    a.social-icon i {
        font-size: 24px !important;
    }
}


.verify-icon-2 {
    right: 20px !important;
}
.verify-icon-2-0 {
    right: 0px !important;
}
@media (max-width: 768px) {
    .verify-icon-2 {
        right: 20px !important;
    }
    .verify-icon-2-0 {
        right: 0px !important;
    }
}



div.favorites_ico {
    display: inline-block;
    height: 30px;
    box-sizing: border-box;
    padding-top: 7px;
    vertical-align: top;
    margin-left: 10px;
}
div.favorites_ico i {
    font-size: 30px;
    vertical-align: top;
}
.favorites_ico_no {
    color: #999999;
 }
.favorites_ico_yes {
    color: #FFC83A;
}
@media (max-width: 768px) {
    div.favorites_ico {
        height: 18px;
        padding-top: 3px;
    }
    div.favorites_ico i {
        font-size: 18px;
    }
}

h1.profile-name {
    position: relative !important;
}
.favorites_ico_circle {
    display: block;
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 20px;
    height: 30px;
    box-sizing: border-box;
    padding-top: 7px;
    vertical-align: top;
    /*margin-left: 10px;*/
    cursor: pointer;
}
.favorites_ico_circle i {
    font-size: 20px;
    vertical-align: top;
}
.favorites_ico_item_no_circle {
    display: inline-block;
    margin-right: 0px;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: #fff;
    vertical-align: top;
    text-align: center;
    box-sizing: border-box;
    padding-top: 5px;
}
.favorites_ico_item_no_circle:hover {
    background-color: #FFC83A;
    transition: background-color 0.5s;
}
/*.favorites_ico_item_no_circle:active {
    background-color: #fff;
    transition: background-color 0.5s;
}*/
.favorites_ico_no_circle {
    color: #000;
}
.favorites_ico_item_yes_circle {
    display: inline-block;
    margin-right: 0px;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background-color: #FFC83A;
    vertical-align: top;
    text-align: center;
    box-sizing: border-box;
    padding-top: 5px;
}
.favorites_ico_item_yes_circle:hover {
    background-color: #fff;
    transition: background-color 0.5s;
}
/*.favorites_ico_item_yes_circle:active {
    background-color: #FFC83A;
    transition: background-color 0.5s;
}*/
.favorites_ico_yes_circle {
    color: #000;
}

.favorites_empty_block {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 100px;
}
.favorites_empty_img {
    width: auto;
    height: auto;
}
.favorites_empty_img img {
    width: 571px;
    height: auto;
}
.favorites_empty_text {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 70px;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}
.favorites_empty_text_2 {
    display: none;
    width: 100%;
    height: auto;
    margin-top: 70px;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}
.favorites_empty_ico {
    font-size: 20px;
    color: #fff;
}

@media (max-width: 768px) {
    .guest_modal {
        width: 100% !important;
        height: 180px !important;
        margin-top: 0px !important;
        padding-top: 0px !important;
    }
    .guest_modal.close {
        top: 10px !important;
        right: 10px !important;
    }

    .favorites_empty_block {
        width: 90%;
        height: auto;
        margin-left: 5%;
    }
    .favorites_empty_img img {
        width: 80vw;
        height: auto;
    }
    .favorites_empty_text {
        display: block;
    }
    .favorites_empty_text_2 {
        display: none;
    }

    .favorites_ico_circle {
        top: 10px;
        right: 20px;
        height: 20px;
        padding-top: 0px;
    }
    .favorites_ico_circle i {
        font-size: 16px;
    }
    .favorites_ico_item_no_circle {
        width: 24px;
        height: 24px;
        padding-top: 4px;
    }
    .favorites_ico_item_no_circle:hover {
        background-color: #fff;
    }
    .favorites_ico_item_yes_circle {
        width: 24px;
        height: 24px;
        padding-top: 4px;
    }
    .favorites_ico_item_yes_circle:hover {
        background-color: #FFC83A;
    }
}

@media (max-width: 418px) {
    .favorites_empty_text {
        display: none;
    }
    .favorites_empty_text_2 {
        display: block;
    }
}

.add-answer-btn {
    width: 100%;
    padding: 1rem;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
}
.add-review-btn {
    width: 100%;
    padding: 1rem;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
}
.add-review-btn-quest {
    width: 100%;
    padding: 1rem;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.profile-main-photo {
    max-width: 100% !important;
    max-height: 100% !important;
}

@media (max-width: 768px) {
    h1 {
        margin-left: 20px;
    }
}

.profile-photo-status {
    width: 100%;
    height: 10px;
    display: block;
    text-align: center;
    color: #27cc27;
    font-size: 10px;
    font-weight: bold;
    grid-column: span 2;
    margin-top: -20px;
}
@media (max-width: 768px) {
    .profile-photo-status {
        display: block;
        margin-top: -25px;
    }
    .card-adress-mobile {
        margin-top: -10px !important;
    }
}


.profile_ico_address {
    display: block !important;
    position: absolute;
    z-index: 100;
    top: 22px;
    right: 10px;
    color: #FFC83A;
    cursor: pointer;
}
.profile_address_modal_back {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.profile_address_modal {
    display: none;
    position: fixed !important;
    z-index: 1001 !important;
    top: calc(50% - 75px) !important;
    left: calc(50% - 200px) !important;
    width: 400px !important;
    max-width: 90% !important;
    height: 130px !important;
    max-height: 150px !important;
    background-color: #2A2A2A !important;
    border-radius: 12px !important;
    padding: 20px 20px !important;
    box-sizing: border-box !important;
    font-size: 18px !important;
    text-align: center !important;
}
@media (max-width: 768px) {
    .profile_ico_address {
        top: 10px;
        right: 10px;
    }
}